Hello everyone,
I'm trying to make some adjustments to our userSetup.mel so that we can automatically set the Arnold Render Settings to turn off Auto-Convert Textures to TX and then lock the menu.
I’ve tried adding the following already:
evalDeferred(“setAttr “defaultArnoldRenderOptions.autotx” 0”);
evalDeferred(“setAttr -l true { “defaultArnoldRenderOptions.autotx” }”);
But this didn’t work.
I’ve also tried adjust the following as well for our userSetup.py file:
def doSettings():
print(“Disabling Arnold Auto Convert…”)
cmds.setAttr(“defaultArnoldRenderOptions.autotx”, 0)
cmds.setAttr(“defaultArnoldRenderOptions.autotx”, 1=True)
And again, no luck.
Any advice on what to change to make this happen would be greatly appreciated.
Thanks again.