Quote from
RichardF on 4. November 2018, 20:52
By default Prism sets the filetype for all renderings to .exr. You can change that in this Script:
C:\Prism\Plugins\Apps\Maya\Scripts\Prism_Maya_Functions.py
In the "sm_render_preSubmit" function there is a line "cmds.setAttr("redshiftOptions.imageFormat", 1)" (line 972). The number one stands for ".exr". You can change it to another number to change the output extension. Eventually you also need to adjust the outputPrefix variable in the next line to fit your extensiontype. Currently I can't test it, so you have to try which number stands for which extension.
By default Prism sets the filetype for all renderings to .exr. You can change that in this Script:
C:\Prism\Plugins\Apps\Maya\Scripts\Prism_Maya_Functions.py
In the "sm_render_preSubmit" function there is a line "cmds.setAttr("redshiftOptions.imageFormat", 1)" (line 972). The number one stands for ".exr". You can change it to another number to change the output extension. Eventually you also need to adjust the outputPrefix variable in the next line to fit your extensiontype. Currently I can't test it, so you have to try which number stands for which extension.