Go to: Synopsis. Return value. Keywords. Flags. Python examples.
checkDefaultRenderGlobals([changed=boolean])
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
checkDefaultRenderGlobals is NOT undoable, queryable, and editable.
Command to check or set the "changed" mode for the defaultRenderGlobals node.None
In query mode, return type is based on queried flag.
Long name (short name) | Argument types | Properties | ||
---|---|---|---|---|
changed(ch)
|
boolean
|
![]() ![]() ![]() |
||
|
![]() |
![]() |
![]() |
![]() |
import maya.cmds as cmds # To check if the defaultRenderGlobals node is marked dirty or not. # cmds.checkDefaultRenderGlobals( query=True, changed=True ) # To mark the defaultRenderGlobals node dirty. # cmds.checkDefaultRenderGlobals( changed=True ) # To mark the defaultRenderGlobals node not dirty. # cmds.checkDefaultRenderGlobals( changed=False )