HonorLee 5 months ago
parent
commit
c011c30242
1 changed files with 1 additions and 1 deletions
  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());