mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 11:24:46 +00:00
22 lines
539 B
C#
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
|
|
}
|
|
}
|