Can the nuke_py_submission.ini be copied from the repository when it doesn’t exist rather than creating from scratch please?
I want to make sure the limit groups are always set to ‘nuke’, but still with the options to add limit groups as well for other plugin licensing restrictions.
The way the SMTD dialog gets its initial settings from the repository means I can set defaults for our way of working and every new users gets those default by default
You can create a custom sanity check script to control UI values. More details here:
docs.thinkboxsoftware.com/produc … nity-check
Can you test my Sanity checks… it seems like the last 4 don’t work???
[code]import nuke
import DeadlineGlobals
def RunSanityCheck():
DeadlineGlobals.initDepartment = “Compositing”
DeadlineGlobals.initPriority = 95
DeadlineGlobals.initConcurrentTasks = 2
DeadlineGlobals.initLimitGroups = “nuke”
DeadlineGlobals.initFrameListMode = “Input”
DeadlineGlobals.initSelectedOnly = True
DeadlineGlobals.initUseNodeRange = True
DeadlineGlobals.initSeparateJobs = True
#nuke.message( "This is a custom sanity check!" )
return True[/code]
It’s working fine, with the exception of the:
DeadlineGlobals.initFrameListMode = "Input"
which isn’t required as you are already setting:
DeadlineGlobals.initUseNodeRange = True
Bear in mind, that Nuke caches Python scripts, so restart Nuke to test any changes to your script OR use the Nuke Script Editor to evaluate a line of test code.