|
@@ -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);
|
|
|
}
|
|
|
|