HonorLee 5 月之前
父节点
当前提交
c011c30242
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      CrossgateToolkit/GraphicData.cs

+ 1 - 1
CrossgateToolkit/GraphicData.cs

@@ -104,7 +104,7 @@ namespace CrossgateToolkit
 
             // RGBA4444 减少内存占用
             texture2D = new Texture2D((int) graphicInfoData.Width, (int) graphicInfoData.Height,
-                TextureFormat.RGBA4444, false, true);
+                TextureFormat.RGBA4444, false, false);
             // 固定点过滤
             texture2D.filterMode = FilterMode.Point;
             texture2D.SetPixels32(pixels.ToArray());