Example #1
0
 //每帧更新
 public override void UpdateFrame()
 {
     base.UpdateFrame();
     this.UpdateMoveState();
     if (null != BattleBuffCouner)
     {
         BattleBuffCouner.Update();
     }
 }
Example #2
0
 public override void Destroy()
 {
     Debug.Log("PlayerBattleInfo Destroy ");
     if (null != BattleBuffCouner)
     {
         BattleBuffCouner.Destroy();
         BattleBuffCouner = null;
     }
     base.Destroy();
 }