Added RelayNodeView;

Chnaged GraphView to multiple files for better organization;
This commit is contained in:
Misaki
2024-11-05 22:46:42 +09:00
parent c853994bf5
commit 02ae77f17a
25 changed files with 863 additions and 620 deletions

View File

@@ -0,0 +1,22 @@
using System;
using UnityEditor.Experimental.GraphView;
using UnityEngine;
namespace Misaki.GraphView
{
[Serializable]
public class StickyNoteData
{
[SerializeField]
private string _id = Guid.NewGuid().ToString();
public string title;
public string contents;
public Rect position;
public StickyNoteTheme theme;
public StickyNoteFontSize fontSize;
public string Id => _id;
}
}