Create a new render layer. The render layer number will be assigned based on the first unassigned number not less than the base index number found in the render layer global parameters. Normally all objects and their descendants will be added to the new render layer but if ‘-noRecurse’ is specified then only the objects themselves will be added. Only transforms and geometry will be added to the new render layer.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
empty (e) | bool | ||
|
|||
g (g) | bool | ||
If set then create a layer that contains all DAG objects in the scene. Any future objects created will also automatically become members of this layer. The global flag will take precidence over use of the empty flag or specified member list. |
|||
makeCurrent (mc) | bool | ||
|
|||
name (n) | unicode | ||
|
|||
noRecurse (nr) | bool | ||
|
|||
number (num) | int | ||
|
Derived from mel command maya.cmds.createRenderLayer
Example:
import pymel.core as pm
# Add nut and nutShape to a new render layer
#
pm.select( 'nut' )
pm.createRenderLayer()
renderLayer1
# Add only bolt to a new render layer
#
pm.createRenderLayer( 'bolt', noRecurse=True )
renderLayer2
# Add washer to the new render layer 'assembly'.
#
pm.createRenderLayer( 'washer', noRecurse=True, name='assembly' )
assembly
# Create a layer that will always contains everything
#
pm.createRenderLayer( g=True )
renderLayer3