using NBC; using UnityEngine; namespace NBF { public abstract class PlayerStateBase : FsmBaseState { protected Player Player => _owner; /// /// 检查状态超时 /// public void CheckStateTimeout(float time) { if (Time.time - EnterTime >= time) { Root.Start(); } } } }