Quellcode durchsuchen

屏蔽部分Log,配置同步

大爷 vor 1 Jahr
Ursprung
Commit
14271282a6

BIN
Config/GenFromExcel/c/MonsterCategory.bytes


BIN
Config/GenFromExcel/s/MonsterCategory.bytes


BIN
Unity/Assets/Res/Config/GenFromExcel/MonsterCategory.bytes


+ 1 - 5
Unity/Assets/Scripts/Codes/Hotfix/Client/battle/UnitMgr.cs

@@ -38,11 +38,7 @@ namespace ET.Client
         }
         public void RemoveUnit(uint id)
         {
-            if (UnitList.ContainsKey(id))
-            {
-                var unit = UnitList[id];
-                UnitList.Remove(id);
-            }
+            UnitList.Remove(id);
         }
 
         public void RecycleUnits()

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

@@ -76,7 +76,7 @@ public class BattleUnit : BattleObject
             Log.Error("Enter Skill state error> ({0})>CurrentActionIndex>{1}", skillTemplate.TemplateID, curActionIndex);
             return;
         }
-        Log.Debug($"OnLaunchSkill({Id}), skill({skillTemplate.TemplateID}), actionIndex:{curActionIndex}");
+        //Log.Debug($"OnLaunchSkill({Id}), skill({skillTemplate.TemplateID}), actionIndex:{curActionIndex}");
         
         if (skillTemplate.IsSingleAction)
         {
@@ -171,7 +171,7 @@ public class BattleUnit : BattleObject
 
     protected virtual void OnActionChanged(ZoneUnit unit, UnitActionStatus status, object evt)
     {
-        Log.Debug($"ActionChange({Id}): {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}");

+ 1 - 1
Unity/Assets/Scripts/Codes/Mono/AnimationData.cs

@@ -74,7 +74,7 @@ namespace Mono
 
         public void PlayAnimation(AnimationType type, Action endcb = null)
         {
-            Log.Debug($"{this.gameObject.name} toplay ani:{type}");
+            //Log.Debug($"{this.gameObject.name} toplay ani:{type}");
             aniEndcb = endcb;
             var clip = GetClip(type);
             if (clip != null)