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

14 lines
254 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Example06 : MonoBehaviour
{
public BehaviorTreeSlayer.BehaviorTree BTree;
public void OnEvent()
{
BTree.Dispatch("EvtNext", BTree);
}
}