Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
あるジオメトリのコンポーネント (UV、フェース、頂点、エッジ) しかない場合、そのジオメトリの名前をどのように取得しますか?
たとえば、私は持っています:
MeshVertex(u'pCubeShape1.vtx[0]') #replace that with any of the following (uvs, faces, edges)
そして、私が最終的にやりたいことは次のとおりです。
nt.Transform(u'pCube1')
これどうやってするの?
あなたの例として、言ってみましょうv = MeshVertex(u'pCubeShape1.vtx[0]')
v = MeshVertex(u'pCubeShape1.vtx[0]')
import pymel.core as pm transform = v.node().getParent() select(transform)
この質問はすでに回答されていることは知っていますが、他の人がさまざまな方法を見ることができるように、これを行う方法を投稿すると思いました:)
お役に立てれば