Go to: Synopsis. Return value. Keywords. Flags. Python examples.

Synopsis

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.

Return value

None

In query mode, return type is based on queried flag.

Keywords

checkDefaultRenderGlobals, registration

Flags

changed
Long name (short name) Argument types Properties
changed(ch) boolean createqueryedit
Check or set the "changed" mode of the defaultRenderGlobals node.

Flag can appear in Create mode of command Flag can appear in Edit mode of command
Flag can appear in Query mode of command Flag can have multiple arguments, passed either as a tuple or a list.

Python examples

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 )