PC-20230316NUNE\Administrator 3afb2e3b86 临时提交
2024-08-17 14:12:46 +08:00

22 lines
539 B
C#

namespace BehaviorTreeSlayer
{
public class TestLog : ActionNode
{
[OutField(typeof(UnityEngine.Texture2D))]
public string Texture;
[OutField(typeof(UnityEngine.Texture2D))]
public string[] Pic;
[OutField]
public ExampleEunm MyEnum;
[OutField]
public int[] Num, K, M, N, H, O, P;
[OutField]
[ShowMe]
public string Log2 = "taopc", Log3, Log4 = "OK";
}
public enum ExampleEunm
{
a, b, c, d, e, f, g, h, i, j, k, l
}
}