Example #1
0
        public override bool Start()
        {
            if (!base.Start())
                return false;

            attrComp = Entity.AttrComp;
            naviComp = Entity.NaviComp;
            TargetEntities = new List<SceneEntity>();
            return true;
        }
Example #2
0
 public override void Destroy()
 {
     attrComp = null;
     naviComp = null;
     base.Destroy();
 }