Go to: Synopsis. Return value. Keywords. Related. Flags. Python examples.
addMetadata([channelType=string], [indexType=string], [streamName=string], [structure=string])
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
addMetadata is undoable, queryable, and NOT editable.
Defines the attachment of a metadata structure to one or more selected
objects. This creates a placeholder with an empty metadata Stream for
later population through the editMetadata command. It's similar
in concept to the addAttr command for nodes - an attribute is
added but no data is actually set.
When assigning a metadata structure you must specify these flags
- channelType is the metadata channel type (e.g. "vertex"),
streamName is the name of the metadata stream to be created,
and structure is the name of the structure type defining the
contents of the metadata. The indexType flag is optional.
If it is not present then the index will be presumed to be a standard
numerical value.
You can query metadata information at a variety of levels. See the
table below for a full list of the queryable arguments. In each case
the specification of any of the non-queried arguments filters the list
of metadata to be examined during the query. For all queries a single
object must be selected for querying.
For example querying the channelType flag with no other
arguments will return the list of all Channel types on the selected
object that contain any metadata. Querying the channelType flag
with the indexType flag specified will return only those
channel types containing metadata streams that use that particular
type of index.
- Query the channelType flag to return the list of any channel types
that have metadata.
- Specify the channelType and streamName flags and query the
structure flag to return the name of the structure assigned to the
given stream (if any).
- Specify a channelType and query the streamName to return
the list of all streams assigned to that particular channel type.
- If you query the streamName without a specific channelType
then it returns a list of pairs of (channelType, streamName) for all metadata
streams.
Flag Combinations:
ChannelType IndexType StreamName Structure Create Can Query
0 0 0 0 X ChannelType, StreamName, Structure
0 0 0 1 X ChannelType, StreamName, IndexType
0 0 1 0 X ChannelType, Structure, IndexType
0 0 1 1 X ChannelType, IndexType
0 1 0 0 X ChannelType, StreamName, Structure
0 1 0 1 X ChannelType, StreamName
0 1 1 0 X ChannelType, Structure
0 1 1 1 X ChannelType
1 0 0 0 X StreamName, Structure, IndexType
1 0 0 1 X StreamName, IndexType
1 0 1 0 X Structure, IndexType
1 0 1 1 (a) IndexType
1 1 0 0 X StreamName, Structure
1 1 0 1 X StreamName
1 1 1 0 X Structure
1 1 1 1 (b) X
(a) Assign an empty metadata stream with default index type
(b) Assign an empty metadata stream with the named index type
string[] | List of nodes to which a new Stream was successfully added (create mode) |
string[] | List of channel types containing metadata on an object when querying the channelType flag |
string[] | List of stream names on an object when querying the streamName flag |
string[] | List of structures used by an object's metadata Streams when querying the structure flag |
string[] | List of index types used by an object when querying the indexType flag |
In query mode, return type is based on queried flag.
metadata, component, stream, channel, association
applyMetadata, dataStructure, editMetadata, getMetadata
channelType, indexType, streamName, structure
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.
|
import maya.cmds as cmds
import maya.cmds as cmds
cmds.polyPlane( name='p', ch=False )
cmds.select( 'pShape', replace=True )
cmds.dataStructure( format='raw', asString='name=IdStruct:int32=ID' )
cmds.dataStructure( format='raw', asString='name=OffStruct:float=Offset' )
cmds.dataStructure( format='raw', asString='name=OrgStruct:float[3]=Origin Point' )
# Add three metadata streams
cmds.addMetadata( streamName='IdStream', channelType='vertex', structure='IdStruct' )
cmds.addMetadata( streamName='OffStream', channelType='vertex', structure='OffStruct' )
cmds.addMetadata( streamName='OrgStream', channelType='edge', structure='OrgStruct' )
cmds.addMetadata( streamName='VFStream', channelType='vertexFace', indexType='pair', structure='OrgStruct' )
# Query for the list of all channel types possessing metadata
cmds.addMetadata( query=True, channelType=True )
# Return: ['edge', 'vertex', 'vertexFace'] #
# Query for the structure assigned to a specific stream
cmds.addMetadata( channelType='vertex', streamName='OffStream', query=True, structure=True )
# Return: 'OffStruct' #
# Query for the list of all streams on a specific channel type
cmds.addMetadata( channelType='vertex', query=True, streamName=True )
# Return: ['IdStream', 'OffStream'] #
# Query for the list of all streams
cmds.addMetadata( query=True, streamName=True )
# Return: ['IdStream', 'OffStream', 'OrgStream', 'VFStream'] #
# You can combine queries to answer more general questions about the
# metadata on an object. For example suppose you wanted to know the
# index type used by all Streams on the 'vertex' Channel.
# First extract the list of Streams on the Channel
streams = cmds.addMetadata( channelType='vertex', query=True, streamName=True )
# Loop through each Stream, querying the IndexType only for that Stream
for stream in streams:
indexType = cmds.addMetadata( channelType='vertex', streamName=stream, query=True, indexType=True )[0]
print 'Index type on %s is %s' % (stream, indexType)