0
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-05-18 19:31:17 +03:00
This commit is contained in:
bird_egop 2024-11-14 21:53:59 +03:00
parent 08aec8f1f7
commit f069c54541

View File

@ -299,7 +299,7 @@ public class TextureFile
var image = Image.LoadPixelData<Rgba32>(reinterpretedPixels, mipWidth, mipHeight); var image = Image.LoadPixelData<Rgba32>(reinterpretedPixels, mipWidth, mipHeight);
image.SaveAsPng(Path.Combine(outputDir, Path.GetFileName(FileName)) + $"_{mipWidth}x{mipHeight}.png"); image.SaveAsPng(Path.Combine(outputDir, Path.GetFileName(FileName)) + $"_{Header.Format}_{mipWidth}x{mipHeight}.png");
} }
} }