瀏覽代碼

修改脚本错误

大爷 1 年之前
父節點
當前提交
f0563843ee
共有 2 個文件被更改,包括 7 次插入12 次删除
  1. 4 6
      Assets/Scripts/Codes/Mono/AnimationData.cs
  2. 3 6
      Assets/Scripts/Codes/Mono/IceFrozen.cs

+ 4 - 6
Assets/Scripts/Codes/Mono/AnimationData.cs

@@ -1,8 +1,6 @@
-using ET;
-using Animancer;
+using Animancer;
 using UnityEngine;
 using System;
-using NLog.Targets.Wrappers;
 
 namespace Mono
 {
@@ -79,10 +77,10 @@ namespace Mono
         {
             if (!Animancer.Playable.IsGraphPlaying)
             {
-                Log.Error( $"play ani({type}) @ froze status" );
+                //Log.Error( $"play ani({type}) @ froze status" );
                 return;
             }
-            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)
@@ -91,7 +89,7 @@ namespace Mono
             }
             else
             {
-                Log.Error($"Not exist clip({type}) @{gameObject.name}");
+                //Log.Error($"Not exist clip({type}) @{gameObject.name}");
             }
         }
 

+ 3 - 6
Assets/Scripts/Codes/Mono/IceFrozen.cs

@@ -1,6 +1,5 @@
-using ET;
+using System.Collections.Generic;
 using UnityEngine;
-using System;
 
 namespace Mono
 {
@@ -12,13 +11,12 @@ namespace Mono
         public bool IsFroze { get; protected set; }
 
         private SkinnedMeshRenderer Render;
-        private ListComponent<Material> NewMaterials = new();
-        private Material[] OriginMaterials = null;
+        private List<Material> NewMaterials = new();
         private void Awake()
         {
             if(IceMaterial == null)
             {
-                Log.Error($"Not set IceMaterial @{gameObject.name}");
+                //Log.Error($"Not set IceMaterial @{gameObject.name}");
                 return;
             }
 
@@ -29,7 +27,6 @@ namespace Mono
                 NewMaterials.Add( mat );
             }
             
-            OriginMaterials = Render.materials;
             IceMaterial.SetFloat("_Frezz", 0.0f);
         }