Fixed Multithreading, fixed a bug with alpha channels and changed the output format to tga.
6 lines
143 B
Python
6 lines
143 B
Python
import multiprocessing
|
|
import sys
|
|
|
|
if getattr(sys, 'frozen', False):
|
|
# Running as a frozen executable
|
|
multiprocessing.freeze_support() |