Hi all
If I set the vrimg file via maxscript (no matter if such a file currently exist or not), it creates 2 vrimg files with almost the same name
for example myfile will save as
myfile.vrimg (only 1KB big)
and also myfile0000.vrimg (the actual image file)
If I set the vrimg file via maxscript (no matter if such a file currently exist or not), it creates 2 vrimg files with almost the same name
for example myfile will save as
myfile.vrimg (only 1KB big)
and also myfile0000.vrimg (the actual image file)
Code:
RAWFile = getSaveFileName caption: "Save V-Ray image file" \ filename: "C:/_VRay RAW Renders/" \ types:"V-Ray image files (*.vrimg)|*.vrimg" if RAWFile!=undefined then ( rc=renderers.current rc.output_saveRawFile=true rc.output_rawFileName = RAWFile )
Comment