06-18-2015, 09:20 AM
well here's an update
wrote a nice little hacky model script which exports all imported images as png images
I'll include this with the release
here's the script btw:
probably my smallest script yet
wrote a nice little hacky model script which exports all imported images as png images
I'll include this with the release
here's the script btw:
Code:
ugeScriptType(UGE_MODEL_SCRIPT)
ugeScriptFormats('PNG Textures', ['dummy'])
def ugeExportModel(T,C):
while ugeImagesExist(Global=True):
name = ugeGetImageName()
ugeGetImageData('%s.png'%name, isfile=True)