com.alicizax.unity.animatio.../Runtime/Attribute/NameAttribute.cs
陈思海 11e5744b46 init
2025-02-07 16:05:13 +08:00

13 lines
332 B
C#

using System;
using System.Diagnostics;
namespace AlicizaX.AnimationFlow.Runtime {
[AttributeUsage(AttributeTargets.Class), Conditional("UNITY_EDITOR")]
public class NameAttribute : Attribute {
public readonly string name;
public NameAttribute(string name) {
this.name = name;
}
}
}