当您所拥有的只是地理要素的一部分(uv,面,顶点,边线)时,如何获得其名称?
例如,我有:
MeshVertex(u'pCubeShape1.vtx[0]') #replace that with any of the following (uvs, faces, edges)
我最终想得到的是:
nt.Transform(u'pCube1')
我怎样才能做到这一点?
最佳答案
说vtx = MeshVertex(u'pCubeShape1.vtx[0]')
然后可以使用以下方式找到变换/地理位置:
import pymel.core as pc
transforms = pc.listTransforms(vtx.node())
transform = transforms[0] #in case there is only one.
关于python - 当您拥有某个地理区域的组件时,该如何选择?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19901876/