Go to: Synopsis. Return value. Flags. MEL examples.

Synopsis

renderGlobalsNode [-renderQuality string] [-renderResolution string]

renderGlobalsNode is undoable, NOT queryable, and NOT editable.

The renderGlobalsNode creates a render globals node and registers it with the model. The createNode command will not register nodes of this type correctly.

Return value

stringThe name of the render globals node

Flags

renderQuality, renderResolution
Long name (short name) Argument types Properties
-renderResolution(-rr) string create
Set the resolution to be the resolution node with the given name.
-renderQuality(-rq) string create
Set the quality to be the renderQuality node with the given name.

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 be used more than once in a command.

MEL examples

renderGlobalsNode ;
// this one will use defaults for resolution and quality
renderGlobalsNode -name bob ;
renderGlobalsNode -rr abekas1 -rq myTestQuality1 -name abekasTestGlobals ;