14 lines
254 B
C#
Raw Normal View History

2024-08-17 14:12:46 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Example06 : MonoBehaviour
{
public BehaviorTreeSlayer.BehaviorTree BTree;
public void OnEvent()
{
BTree.Dispatch("EvtNext", BTree);
}
}