using System.Collections; using AibisDream.Framework; namespace AibisDream.FixSystem { /// /// Fix 场景专用状态接口,扩展 增加读档快速进入入口。 /// public interface IFixState : IState { /// 读档专用:跳过 camera/timeline/fade 等动画,直接到达终态。 IEnumerator EnterImmediate() { // P1 占位默认实现:后续各 State 可覆盖为具体逻辑 yield break; } } }