mirror of
https://github.com/Siccity/xNode.git
synced 2025-12-20 17:26:02 +08:00
14 lines
357 B
C#
14 lines
357 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace XNode
|
|
{
|
|
[Serializable]
|
|
public class NodeGraphComment : ScriptableObject
|
|
{
|
|
[SerializeField] public NodeGraph graph;
|
|
[SerializeField] public Vector2 position;
|
|
[SerializeField] public Vector2 size = new Vector2(200, 300);
|
|
[SerializeField] public string comment;
|
|
}
|
|
} |