Returns the classification string for a given node type.
previously returned a list with a single colon-separated string of classifications. now returns a list of classifications
rtype: | unicode list |
---|
Derived from mel command maya.cmds.getClassification
Example:
import pymel.core as pm
# Get the classification string for the "lambert" node type
#
classifications = pm.getClassification('lambert')
for c in classifications[:]:
print '\tClassified as ' + c + '\n'