Go to: Synopsis. Return value. Keywords. Related. Flags. MEL examples.
editRenderLayerMembers [-fullNames] [-noRecurse] [-remove]
editRenderLayerMembers is undoable, queryable, and NOT editable.
This command is used to query and edit memberships to render layers. Only
transform and geometry nodes may be members. At render time, all
descendants of the members of a render layer will also be included in the
render layer.
int | Number of objects added to the layer |
string[] | Query: List of objects in layer |
In query mode, return type is based on queried flag.
renderLayer, render, layer, member, relationship
createRenderLayer, editRenderLayerGlobals
fullNames, noRecurse, remove
Long name (short name) |
Argument types |
Properties |
-fullNames(-fn)
|
|
|
|
(Query only.) If set then return the full DAG paths of the objects in the
layer. Otherwise return just the name of the object.
|
|
-noRecurse(-nr)
|
|
|
|
If set then only add selected objects to the render layer. Otherwise all
descendants of the selected objects will also be added. This flag may be
applied to adding or removing objects from the layer.
|
|
-remove(-r)
|
|
|
|
Remove the specified objects from the render layer.
|
|
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.
|
editRenderLayerMembers layer1 sphere1 cone1;
// Result : 4
editRenderLayerMembers -q layer1;
// Result : sphere1 sphere1Shape cone1 cone1Shape
editRenderLayerMembers layer1 expression1 sphere2;
// Result : 2
editRenderLayerMembers -remove layer1 sphere1;
// Result : 2