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

Synopsis

assignViewportFactories [-materialFactory string] [-nodeType string] [-textureFactory string] [string]

assignViewportFactories is NOT undoable, queryable, and editable.

Sets viewport factories for displays as materials or textures.

Return value

None

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

Keywords

assignViewportFactories, registration

Flags

materialFactory, nodeType, textureFactory
Long name (short name) Argument types Properties
-materialFactory(-mf) string createqueryedit
Set or query the materialFactory for the node type.
-textureFactory(-tf) string createqueryedit
Set or query the textureFactory for the node type.
-nodeType(-nt) string createqueryedit
The node type.

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

// To set the viewport factories for all dgs_material nodes.
//
assignViewportFactories -materialFactory MentalRayMaterial
						-textureFactory MentalRayTexture
						-nodeType dgs_material;