Go to: Synopsis. Return value. Keywords. Related. Flags. MEL examples.
instanceable [-allow boolean] [-recursive] [-shape]
instanceable is undoable, queryable, and NOT editable.
Flags one or more DAG nodes so that they can (or cannot) be instanced. This command sets an internal state on the specified DAG nodes which is checked whenever Maya attempts an instancing operation. If no node names are provided on the command line then the current selection list is used.
Sets are automatically expanded to their constituent objects. Nodes which are already instanced (or have children which are already instanced) cannot be marked as non-instancable.
boolean[] | For query execution. |
In query mode, return type is based on queried flag.
Long name (short name) | Argument types | Properties | ||
---|---|---|---|---|
-allow(-a)
|
boolean
|
![]() ![]() |
||
|
||||
-recursive(-r)
|
|
![]() |
||
|
||||
-shape(-s)
|
|
![]() |
||
|
![]() |
![]() |
![]() |
![]() |
// create a sphere. // flag the transform and its shape as non-instanceable, then try to instance the sphere. // you get an error because the shape is non-instanceable. sphere; instanceable -allow 0 -shape; instance; // Error: '|nurbsSphere1' has non-instanceable children thus it cannot be instanced. // Flag the sphere and its shape as instanceable. Then it can be instanced. instanceable -allow 1 -shape; instance; // Result: nurbsSphere2 //