移動先: 概要 戻り値 キーワード 関連項目 フラグ MEL の例

概要

attributeQuery [-connectable] [-enum] [-exists] [-hidden] [-indexMatters] [-internal] [-internalGet] [-internalSet] [-keyable] [-listChildren] [-listDefault] [-listEnum] [-listParent] [-listSiblings] [-longName] [-maxExists] [-maximum] [-message] [-minExists] [-minimum] [-multi] [-niceName] [-node name] [-numberOfChildren] [-range] [-rangeExists] [-readable] [-shortName] [-softMax] [-softMaxExists] [-softMin] [-softMinExists] [-softRange] [-softRangeExists] [-storable] [-type string] [-typeExact string] [-usedAsColor] [-writable]

attributeQuery は「元に戻す」が不可能「照会」が不可能「編集」が不可能です。

attributeQuery は、アトリビュートの構成に関する情報を返します。両方のブーリアン フラグを処理し、他の戻り値と同様に true または false を返します。複数のブーリアン フラグを指定すると、指定したすべてのブーリアン フラグの論理和を返します。両方がブーリアン タイプの戻り値を返すのでなければ、2 つのフラグを指定することはできません。(たとえば、「-internal -hidden」は指定できますが、「-range -hidden」や「-range -softRange」は指定できません)。

戻り値

float[]範囲またはデフォルト値を照会する場合
booleanアトリビュート フラグを照会する場合

キーワード

dg, dependency, graph, attribute, query

関連項目

getClassification, isConnected, isDirty, nodeType, objExists, objectType

フラグ

connectable, enum, exists, hidden, indexMatters, internal, internalGet, internalSet, keyable, listChildren, listDefault, listEnum, listParent, listSiblings, longName, maxExists, maximum, message, minExists, minimum, multi, niceName, node, numberOfChildren, range, rangeExists, readable, shortName, softMax, softMaxExists, softMin, softMinExists, softRange, softRangeExists, storable, type, typeExact, usedAsColor, writable
ロング ネーム(ショート ネーム) 引数型 プロパティ
-type(-typ) string create
タイプが TYPE のノードのスタティック アトリビュートを使用します。親クラスのノードから継承されたアトリビュートを含みます。
-typeExact(-tex) string create
タイプが TYPE のノードのスタティック アトリビュートのみを使用します。継承されたアトリビュートは含みません。
-node(-n) name create
ノード名が NAME のすべてのアトリビュートを使用します。
-exists(-ex) create
アトリビュートが存在する場合は true を返します。
-internal(-i) create
アトリビュートが internalSet か internalGet のどちらかである場合に true を返します。
-internalSet(-is) create
アトリビュートを setCachedValue で設定する必要がある場合に true を返します。
-internalGet(-ig) create
アトリビュートが getCachedValue で取得された場合に true を返します。
-keyable(-k) create
アトリビュートのキー設定可能な状態を返します。
-connectable(-c) create
アトリビュートのコネクト可能な状態を返します。
-message(-msg) create
アトリビュートがメッセージ アトリビュートの場合、true を返します。
-enum(-e) create
アトリビュートが enum アトリビュートの場合、true を返します。
-hidden(-h) create
アトリビュートの非表示ステータスを返します。
-indexMatters(-im) create
アトリビュートの indexMatters ステータスを返します。
-readable(-rd) create
アトリビュートの読み取り可能ステータスを返します。
-storable(-st) create
アトリビュートが保存可能の場合、true を返します。
-writable(-w) create
アトリビュートの書き込み可能な状態を返します。
-multi(-m) create
アトリビュートがマルチ アトリビュートの場合、true を返します。
-minimum(-min) create
アトリビュート値のハード最小値を返します。
-maximum(-max) create
アトリビュート値のハード最大値を返します。
-range(-r) create
アトリビュート値のハード範囲を返します。
-usedAsColor(-uac) create
アトリビュートがカラー ピッカーを起動する場合、true を返します。
-softRange(-s) create
アトリビュート値のソフト範囲(スライダ範囲)を返します。
-softMin(-smn) create
アトリビュート値のソフト最小値(スライダ範囲)を返します。
-softMax(-smx) create
アトリビュート値のソフト最大値(スライダ範囲)を返します。
-numberOfChildren(-nc) create
アトリビュートが持つ子の数を返します。
-listSiblings(-ls) create
指定したアトリビュートの兄弟アトリビュートのリストを返します。
-listChildren(-lc) create
指定したアトリビュートの子アトリビュートのリストを返します。
-listParent(-lp) create
指定したアトリビュートの親を返します。
-listEnum(-le) create
指定したアトリビュートに対する enum 文字列のリストを返します。
-listDefault(-ld) create
数値および複合数値型アトリビュートのデフォルト値を返します。
-minExists(-mne) create
アトリビュートがハード最小値を持つ場合、true を返します。最大値は存在する必要はありません。
-maxExists(-mxe) create
アトリビュートがハード最大値を持つ場合、true を返します。最小値は存在する必要はありません。
-rangeExists(-re) create
アトリビュートがハード範囲を持つ場合、true を返します。最小値と最大値の両方とも存在する必要があります。
-softMinExists(-sme) create
アトリビュートがソフト最小値を持つ場合、true を返します。最大値は存在する必要はありません。
-softMaxExists(-sxe) create
アトリビュートがソフト最大値を持つ場合、true を返します。最小値は存在する必要はありません。
-softRangeExists(-se) create
アトリビュートがソフト範囲を持つ場合、true を返します。最小値と最大値の両方とも存在する必要があります。
-longName(-ln) create
アトリビュートのロング ネームを返します。
-shortName(-sn) create
アトリビュートのショート ネームを返します。
-niceName(-nn) create
アトリビュートのナイス ネーム(または「UI 名」)を返します。

: コマンドの作成モードで使用可能なフラグ : コマンドの編集モードで使用可能なフラグ
: コマンドの照会モードで使用可能なフラグ : 1 つのコマンドで複数回使用可能なフラグ

MEL の例

// Determine the hidden status of the "selector" attribute on choice nodes.
//
attributeQuery -typ choice -h selector;
// Result: 0
// Determine the hidden status of the "selector" attribute on this choice node.
// (Usually the same but you can do this for dynamic attributes too.)
//
createNode choice -n whoIsIt;
// Result: choice1
attributeQuery -n whoIsIt -h selector;
// Result: 0
// Determine the range of the selector value on choice nodes.
// In this case there is no range.
// Note, if there is only a minimum or only a maximum range will not set.
//
attributeQuery -typ choice -range selector;
// For the next several examples create a poly cube and add extra attributes.
polyCube -w 1 -h 1 -d 1 -sx 1 -sy 1 -sz 1 -ax 0 1 0 -cuv 4 -ch 1;
addAttr -ln egRange -at long -min 0 -max 5 -dv 2 |pCube1;
setAttr -e -keyable false |pCube1.egRange;
// Determine if an attribute is keyable
//
attributeQuery -node "pCube1" -k "egRange";
// Result: 0
// Determine the minimum and maximum values of the added attribute egRange
//
attributeQuery -node "pCube1" -range "egRange";
// Result: 0 5
// Determine if there is a minimum for the attribute.
// Note, having a minimum or maximum value does not imply the attribute has a range.
addAttr -ln egMin -at long -min 2 |pCube1;
attributeQuery -node "pCube1" -minExists "egMin";
// Result: 1
attributeQuery -node "pCube1" -maxExists "egMin";
// Result: 0
attributeQuery -node "pCube1" -min "egMin";
// Result: 2
// Determine if an attribute is an enum
// List the enum strings. This will use ':' as a separator like the attr is written in
// an .ma file.
addAttr -ln myEnum -at "enum" -en "chicken:turkey:duck:" |pCube1;
attributeQuery -node "pCube1" -listEnum "myEnum";
// Result: chicken:turkey:duck //