OpenMaya API(python或C ++):给定具有DAG名称或路径的字符串,获取MDagPath

时间:2013-11-22 17:36:52

标签: c++ python maya

测试案例:
Maya 2014,新场景,创建多边形平面。 结果是一个名为“pPlane1”的飞机。

如果我知道对象的名称,这里是“pPlane1”,我想要一个OpenMaya(OM)MDagPath实例,以便我可以将它传递给其他OM方法。

这有效(python),但它需要修改选择,看起来很麻烦:

import maya.OpenMaya as om        # Version 1
from maya.OpenMaya import MGlobal as omg

# Returns [dagPath]. If none, returns [].
def GetDag(name):
    omg.clearSelectionList()
    omg.selectByName(name)
    selectionList = om.MSelectionList()
    omg.getActiveSelectionList(selectionList)
    #
    iterator = om.MItSelectionList( selectionList, om.MFn.kDagNode )
    dagPath = om.MDagPath()
    result = []
    if not iterator.isDone():
        iterator.getDagPath( dagPath )
        result = [dagPath]
    return result

# ---------- Testing ----------
name = "pPlane1"
result = GetDag(name)
if len(result) > 0:
    dagPath = result[0]
    ...

有更简单的方法吗?我是否忽略了OM中的某些类或方法?

注意:我没有使用pymel,因为“将pymel.core导入为pm”导致我的系统出错。这是Autodesk论坛的一个问题。目前,我的目标是学习使用OpenMaya API。

1 个答案:

答案 0 :(得分:7)

您不需要使用全局选择列表,您可以创建一个MSelectionList以仅获取dag:

def DagNode ( xform ):
    selectionList = OpenMaya.MSelectionList()
    try:
        selectionList.add( xform )
    except:
        return None
    dagPath = OpenMaya.MDagPath()
    selectionList.getDagPath( 0, dagPath )
    return dagPath