public override bool Start() { if (!base.Start()) return false; attrComp = Entity.AttrComp; naviComp = Entity.NaviComp; TargetEntities = new List<SceneEntity>(); return true; }
public override void Destroy() { attrComp = null; naviComp = null; base.Destroy(); }