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
![[Image: png_exports.png]](https://lh3.ggpht.com/-sPhZnoV_JfA/VYH__7XSg-I/AAAAAAAAJTs/8NRBc2qbieU/s1600/png_exports.png)
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

![[Image: png_exports.png]](https://lh3.ggpht.com/-sPhZnoV_JfA/VYH__7XSg-I/AAAAAAAAJTs/8NRBc2qbieU/s1600/png_exports.png)
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)
