Various changes to optimizeTextures

Fixed Multithreading, fixed a bug with alpha channels and changed the output format to tga.
This commit is contained in:
Killergnom
2025-04-06 21:26:34 +02:00
parent 9420ce921c
commit d03908baab
11 changed files with 588 additions and 462 deletions

View File

@@ -0,0 +1,6 @@
import multiprocessing
import sys
if getattr(sys, 'frozen', False):
# Running as a frozen executable
multiprocessing.freeze_support()