python access to output templates in texture export window
Is there access to the list of preset output templates available to the Export textures window via python API?
I have tried
substance_painter.resource.search('u:export')and
substance_painter.resource.search('u:EXPORT')to no avail. Further, this snippet:
resources=substance_painter.resource.search('')
for resource in resources:
substance_painter.logging.log(
substance_painter.logging.INFO,
'testing',
'resource is %s' % resource.identifier().name
)
never prints any of the export presets to the log. Should I expect to see i.e. 'CryEngine' in the log with the above code?
Ultimately, our goal is to hide from the user any export defaults we don't think are necessary for studio work. We would like to do that without removing the painter installation path from the list of available resources if at all possible.
Thanks,
Chris
