Browse Source

修改单位支持Dead动作

大爷 1 year ago
parent
commit
a84cc226e1
1 changed files with 13 additions and 7 deletions
  1. 13 7
      Unity/Assets/Scripts/Codes/Hotfix/Client/battle/unit/BattleUnit.cs

+ 13 - 7
Unity/Assets/Scripts/Codes/Hotfix/Client/battle/unit/BattleUnit.cs

@@ -1,12 +1,10 @@
 using CommonAI.Zone;
 using CommonAI.Zone.Helper;
 using CommonAI.ZoneClient;
-using CommonLang.Geometry;
 using ET;
 using ET.EventType;
 using Sirenix.Utilities;
 using System;
-using System.Drawing.Drawing2D;
 
 public class BattleUnit : BattleObject
 {
@@ -101,12 +99,11 @@ public class BattleUnit : BattleObject
         }
         else
         {
-            UnitActionData item = null;
             float speed = 1.0f;
             bool isFrist = true;
             for (int i = curActionIndex; i < skillTemplate.ActionQueue.Count; i++)
             {
-                item = skillTemplate.ActionQueue[i];
+                UnitActionData item = skillTemplate.ActionQueue[i];
                 if (item.ActionName.IsNullOrWhitespace())
                 {
                     Log.Debug($"ActionName is null @skill({skillTemplate.TemplateID}), actionIndex:{curActionIndex}");
@@ -163,7 +160,7 @@ public class BattleUnit : BattleObject
 
     protected virtual void OnHPChanged(ZoneUnit unit, int oldHP, int newHP)
     {
-        Log.Debug($"hp change({unit.ObjectID}), {oldHP}-->{newHP}");
+        Log.Debug($"hp({unit.ObjectID}) change, {oldHP}-->{newHP}");
     }
 
     protected virtual void OnSkillActionChanged(ZoneUnit unit, ZoneUnit.SkillState skill, byte index)
@@ -174,7 +171,7 @@ public class BattleUnit : BattleObject
 
     protected virtual void OnActionChanged(ZoneUnit unit, UnitActionStatus status, object evt)
     {
-        Log.Debug($"ActionChange: {status}, zobject status:{ZUnit.CurrentState}");
+        Log.Debug($"ActionChange({Id}): {status}, zobject status:{ZUnit.CurrentState}");
         if(!actionChangeHandler.Notify(status, evt))
         {
             Log.Error($"unhandle action changed: {status}");
@@ -199,7 +196,16 @@ public class BattleUnit : BattleObject
 
         var stun = actionChangeHandler.AddListener(UnitActionStatus.Stun, (o) => { });
         actionChangeHandler.AddListener(UnitActionStatus.HitMove, stun);
-        actionChangeHandler.AddListener(UnitActionStatus.Dead, (o) => { });
+        actionChangeHandler.AddListener(UnitActionStatus.Dead, (o) => {
+            Log.Debug($"Unit({Id}) dead");
+            EventSystem.Instance.Publish<PlayAnimatorEvent>(PlayAnimatorEvent.Static.Clone(
+                Id, AnimatorEventType.Dead ));
+            var launcheffect = ZUnit.Info.DeadActionEffect;
+            if (launcheffect != null)
+            {
+                EventSystem.Instance.Publish<PlayEffectEvent>(PlayEffectEvent.Static.Clone(launcheffect, Id, CommonLang.Geometry.Vector3.Zero));
+            }
+        });
         actionChangeHandler.AddListener(UnitActionStatus.Damage, (o) => { });
         actionChangeHandler.AddListener(UnitActionStatus.Pick, (o) => { });
         actionChangeHandler.AddListener(UnitActionStatus.Spawn, (o) => { });