浏览代码

Fix console spam on texture create

ghorsington 4 年之前
父节点
当前提交
aabc9d21af
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      InOutAnimation/InOutAnimation.cs

+ 1 - 1
InOutAnimation/InOutAnimation.cs

@@ -1922,7 +1922,7 @@ namespace COM3D2.InOutAnimation.Plugin
                         return false;
                     var data = File.ReadAllBytes(infos[i].FullName);
 
-                    array[i] = new Texture2D(1, 1, TextureFormat.DXT5, true);
+                    array[i] = new Texture2D(1, 1, TextureFormat.ARGB32, true);
                     if (array[i].LoadImage(data))
                         array[i].Apply();
                 }