Go to: Synopsis. Return value. Keywords. Related. Flags. Python examples.

Synopsis

vnnCopy( string string , [sourceNode=string])

Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.

vnnCopy is NOT undoable, NOT queryable, and NOT editable.

Copy a set of VNN nodes to clipper board. The first parameter is the full name of the DG node that contains the VNN graph. The second parameter is the full path of the parent VNN compound. The source VNN nodes must be set by the flag "-sourceNode".

Return value

None

Keywords

Bifrost

Related

vnnPaste

Flags

sourceNode
Long name (short name) Argument types Properties
sourceNode(src) string createmultiuse
Set the source node to copy. This node should be a child of the specified parent compound. This command should be used with "vnnPaste" command.

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 have multiple arguments, passed either as a tuple or a list.

Python examples

import maya.cmds as cmds

vnnCopy( "|bifrostLiquid1|bifrostLiquidContainer1", "liquid", sourceNode="YourNodeName")