0
0

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-03

さらに、続きです。インスタンスを選択して実行すると兄弟インスタンスを選択し直すコードも作ってみました。
ここでいう兄弟インスタンスとは、インスタンスの仲間のうち、親インスタンスを除くものの事です。
スクリプトエディタにペーストする用です。シェルフに登録すると楽に使えると思います。
MAYA2018 + MacOS Sierraで動作確認しています。

使い方

1.ノードを選択状態にします。対象としてはインスタンスメッシュそのもの、またはその親トランスフォームとなります。
2.Scriptを実行します。
3.兄弟インスタンスノードがあれば選択状態になります。親ノードは選択対象にはいりません。選択すべきものがなければエラーメッセージが表示されます。

 2018-01-04 3.17.25.png 最初にインスタンスの親トランスフォームが選択されていれば、  2018-01-04 3.17.35.png 兄弟インスタンスの親トランスフォームが選択されます。(自身も選択されたまま。)  2018-01-04 3.17.43.png 最初にインスタンスそのものが選択されていれば、  2018-01-04 3.17.55.png 兄弟インスタンスもそのものがそれぞれ選択されます。(自身も選択されたまま。)  2018-01-04 3.18.12.png 親インスタンスが選択されていた場合、  2018-01-04 3.18.20.png 兄弟インスタンスが選択され直されます。(親の選択は解除される。)  2018-01-04 3.31.57.png 親インスタンス1つと子インスタンス1つしかない場合、親インスタンスを選択して処理を実行すると子インスタンスに選択が移ります。子インスタンスを選択して処理を実行した場合、選択が維持され何も起きません。  2018-01-04 3.19.12.png インスタンスが見つからない場合はエラーとなります。

対応していないパターン

親インスタンスは探索後の選択対象から外れます。
親も合わせて選択したい -> もう一つの scriptで親を見つけてから手動で追加選択して下さい。

自身は探索後の選択対象に含まれます。
自身は兄弟と合わせて選択したくない -> 手動で追加選択解除して下さい。

UIを作ればいろんなパターンに対応できますが、そこまでやりだすと大変なので…。(なのでクイック実行用コードという表現をしている。)

クイック実行用コード

import pymel.core as pm


def get_instance_siblings(node, exclude_first_instance=True):
    """
    インスタンスの兄弟を得る

    :param node: 兄弟を探すインスタンスノード参照
    :type node: pymel.nodetypes.DagNode
    :param exclude_first_instance: 親インスタンスを除くか
    :type exclude_first_instance: bool
    :return: 見つかった兄弟ノードとエラー情報ストリング
    :rtype: tuple of (list of DagNode) and str
    """
    org_node = node
    target_is_children = False
    is_instanced = node.isInstanced()
    if not is_instanced:
        # 選択がインスタンスでない場合は子供を探す
        target_is_children = True
        children = pm.listRelatives(node)
        node = None
        for child_node in children:
            if child_node.isInstanced():
                node = child_node
                break
        if node is None:
            return None, '対象インスタンスが見つかりません。'
    instances = node.getInstances()
    if exclude_first_instance:
        instances = [x for x in instances if x.instanceNumber() != 0]
    if target_is_children:
        instances_ = []
        for ins_node in instances:
            parents = pm.listRelatives(ins_node, parent=True)
            if len(parents) == 1:
                instances_.append(parents[0])
        instances = instances_
    if len(instances) == 0:
        return [], '兄弟インスタンスが存在しません。'
    return instances, None


def select_instance_siblings():
    selected = pm.selected()
    if len(selected) == 0:
        pm.confirmDialog(title='Info', message='ノードを選択して下さい。', button=['Ok'])
        return
    node = selected[0]
    siblings, error_info = get_instance_siblings(node)
    if error_info is not None:
        pm.confirmDialog(title='Info', message=error_info, button=['Ok'])
    if siblings is not None:
        for sibling in siblings:
            print (sibling)
        pm.select(siblings)


select_instance_siblings()
del select_instance_siblings
del get_instance_siblings

0
0
2

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?