using Newtonsoft.Json; using SimpleLite.Props; using SimpleLite.RCS; using StandardScene.Chained; namespace StandardScene { /// /// 磁导航 FASS 2.0 环线任务进程。 /// 任务分配/触发/流量逻辑完全继承 Core ,不修改 Core。 /// 导航执行由 拦截 Loop 编译脚本(含 MagFass2Go + goalSite), /// 改为单次全程 0xB1 状态机任务。 /// 场景内可继续使用原 ;本类型仅作磁导航 FASS2 场景标识。 /// [MissionType(Name = "磁导航FASS2环线", editor = typeof(MagFass2LoopMission))] public class MagFass2LoopMission : LoopMission { [JsonIgnore] public override MissionStatus status { get; set; } = new LoopMissionStatus(); } }