mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 19:34:47 +00:00
14 lines
254 B
C#
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);
|
||
|
}
|
||
|
|
||
|
}
|