Force argument on Nuke rendering

If I want Deadline to submit every Nuke render with a -i, should I just modify the RenderArguments.ffs from this :
renderArgument = “”;

// use -Vx if verbose is enabled, otherwise use -x
if( ToLower( Trim( GetPluginConfigEntry( “Nuke_Verbose” ) ) ) == “true” )
renderArgument = renderArgument … " -Vx";
else
renderArgument = renderArgument … " -x";

to this :
renderArgument = “”;

// use -Vx if verbose is enabled, otherwise use -x
if( ToLower( Trim( GetPluginConfigEntry( “Nuke_Verbose” ) ) ) == “true” )
renderArgument = renderArgument … " -Vxi";
else
renderArgument = renderArgument … " -xi";

… Would this do the trick?
Thanks

Vincent Toussaint
Modus FX, inc.

Hi Vincent,

Yup, that should work. Out of curiosity, what does the ‘i’ option do? Do you think this is something we should include in the Nuke plugin?

Cheers,

  • Ryan

Ryan,

here’s a part of the email sent from Nuke support team :

“…You can get the render version of Nuke to use an interactive license with the command line tag of -i.
Run Nuke in a terminal with the --help to get a list of useful variables you can use…”

Sadly for us, this didn’t work but we will get more rendering licenses anyways…

Vincent