chenxin
2020-12-09 ab9a718b28a142a0a903d5cc3e091d4d2577856e
Assets/Scripts/TowerDefense/Agents/BubbleBombAgent.cs
@@ -1,5 +1,6 @@
using DG.Tweening;
using UnityEngine;
using KTGMGemClient;
/**
 * 泡泡炸弹
@@ -19,6 +20,11 @@
        /// 爆炸的特效
        /// </summary>
        public ParticleSystem ExplodeEffect;
        /// <summary>
        /// 血条引用
        /// </summary>
        public BubbleBombBlood Blood;
        /// <summary>
        /// Peforms the relevant path update
@@ -93,12 +99,12 @@
        protected override void Update()
        {
            // 这个方法不要删掉
        }
        protected override void LateUpdate()
        {
            // 这个方法不要删掉
        }
        public override void Initialize()
@@ -115,7 +121,7 @@
        public override void PlayDeath()
        {
            Debug.LogError("---- BubbleBombAgent PlayDeath 正常逻辑不应该打印出这句话 ----");
            // 这个方法不要删掉
        }
    }
}