AWS Thinkbox Discussion Forums

Houdini Plugin: Automatically enable ASS export

Hello,

In hrender_dl.py#549 you have the following code to enable ifd export if the IFD parameter is set:

        # Set the necessar IFD settings if exporting IFD files.
        if ifd is not None:
            print("Setting SOHO output mode to 1")
            ifdExportParm = rop.parm("soho_outputmode")
            if ifdExportParm is not None:
                ifdExportParm.set(1)

            print("Setting SOHO disk file to " + ifd)
            ifdFilenameParm = rop.parm("soho_diskfile")
            if ifdFilenameParm is not None:
                ifdFilenameParm.set(ifd)

Could we add a similar feature for the Arnold ROP?

        # Set the necessary ass settings if exporting ass files.
        if ifd is not None:
            print("Setting ar_ass_export_enable to 1")
            assExportEnableParm = rop.parm("ar_ass_export_enable")
            if assExportEnableParm is not None:
                assExportEnableParm.set(1)

            print("Setting ar_ass_file to " + ifd)
            assFileParm = rop.parm("ar_ass_file")
            if assFileParm is not None:
                assFileParm.set(ifd)

Thanks,
Beat

Privacy | Site terms | Cookie preferences