1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【MAYA】マテリアルのフェイスアサインがあるか無いかを判断する

Last updated at Posted at 2018-01-08

マテリアルのフェイスアサインがあるか無いかを判断するプログラムを
https://qiita.com/harayoki/items/8ec88d8de7bb91357fc8
この辺りの考察を元に作ってみました。(こちらの記事から抜き出して移動しました。)
MAYA2018 + MacOS Sierraで動作確認しています。

SGへのコネクションがインスタンスオブジェクトグループとオブジェクトグループのどちらから伸びているかで確認しても良さそうですが、objectGrpCompListへフェイス番号が設定されているか確認するのでも良さそうなので、簡潔に書けそうなその判断でやってみます。

import pymel.core as pm

def has_face_assign(shape):
    """
    シェイプにマテリアルのフェイスアサインがあるかどうか確認する

    :param shape: チェックするシェイプ
    :type shape: pymel.nodetypes.Shape
    :rtype: bool
    """
    instanceNumber = shape.instanceNumber()
    objectGrpCompList = \
        shape.instObjGroups[instanceNumber].objectGroups[0].objectGrpCompList
    num_face_block = (len(objectGrpCompList.get()))
    return num_face_block > 0
 2018-01-09 2.23.15.png こちらで動作検証します。
shape = pm.PyNode('pCube1|pCubeShape1') # フェイスアサインのないシェイプ
has_fa = has_face_assign(shape)
print(has_fa)
# 出力:False

shape = pm.PyNode('pCube2|pCubeShape1') # フェイスアサインのあるインスタンスシェイプ
has_fa = has_face_assign(shape)
print(has_fa)
# 出力:True

shape = pm.PyNode('pCube3|pCubeShape2') # インスタンスが存在しないフェイスアサインのないシェイプ
has_fa = has_face_assign(shape)
print(has_fa)
# 出力:False

shape = pm.PyNode('pCube4|pCubeShape3') #インスタンスが存在しないフェイスアサインのあるシェイプ
has_fa = has_face_assign(shape)
print(has_fa)
# 出力:True

shape = pm.PyNode('pCube5|pCubeShape4') #マテリアルが外れてしまったシェイプ
has_fa = has_face_assign(shape)
print(has_fa)
# 出力:False

問題なさそうです。

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?