17 lines
304 B
C#
17 lines
304 B
C#
![]() |
|
|||
|
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace AlicizaX.AnimationFlow.Runtime
|
|||
|
{
|
|||
|
#if UNITY_EDITOR
|
|||
|
public abstract partial class ActionNode
|
|||
|
{
|
|||
|
[HideInInspector]
|
|||
|
public Vector2 nodePos; //GraphView使用
|
|||
|
[HideInInspector]
|
|||
|
public string uuid; //GraphView映射的Id
|
|||
|
}
|
|||
|
|
|||
|
#endif
|
|||
|
}
|