ジャンプ先: 概要. 戻り値. キーワード. 関連項目. フラグ. MEL 例.
attributeInfo [-allAttributes] [-bool boolean] [-enumerated boolean] [-hidden boolean] [-inherited boolean] [-internal boolean] [-leaf boolean] [-logicalAnd] [-multi
boolean] [-short] [-type string] [-userInterface] [-writable boolean]
attributeInfo は 「元に戻す」が不可能、「照会」が不可能、「編集」が不可能 です。
このコマンドは、特定のフラグでマークされるアトリビュートをすべてリスト表示します。フラグの組み合わせを指定することにより、すべてを考慮できます。(組み合わせ方法は「logicalAnd/and」フラグの状態によって異なります)。「allAttributes/all」フラグを指定すると、全タイプのアトリビュートがリスト表示されます。string[] | 基準に一致するアトリビュートのリスト |
ロング ネーム(ショート ネーム) | 引数型 | プロパティ | ||
---|---|---|---|---|
-internal(-i) |
boolean |
|||
|
||||
boolean |
||||
|
||||
-multi(-m) |
boolean |
|||
|
||||
-leaf(-l) |
boolean |
|||
|
||||
-writable(-w) |
boolean |
|||
|
||||
-bool(-b) |
boolean |
|||
|
||||
-enumerated(-e) |
boolean |
|||
|
||||
-allAttributes(-all) |
||||
|
||||
-inherited(-in) |
boolean |
|||
|
||||
-logicalAnd(-and) |
||||
|
||||
-short(-s) |
||||
|
||||
-userInterface(-ui) |
||||
|
||||
-type(-t) |
string |
|||
|
: コマンドの作成モードで使用可能なフラグ | : コマンドの編集モードで使用可能なフラグ |
: コマンドの照会モードで使用可能なフラグ | : 1 つのコマンドで複数回使用可能なフラグ |
// Create a choice node createNode choice; // Result: choice1 // Get the list of hidden choice node attributes // attributeInfo -h on -t choice; // Result: message isHistoricallyInteresting binMembership // // Get the list of all boolean or enumerated transform node attributes // attributeInfo -b on -e on -t transform; // Result: caching nodeState visibility intermediateObject template ghosting useObjectColor overrideDisplayType overrideLevelOfDetail overrideShading overrideTexturing overridePlayback overrideEnabled overrideVisibility lodVisibility layerRenderable renderLayerRenderable ghostingControl rotateOrder minTransXLimitEnable minTransYLimitEnable minTransZLimitEnable maxTransXLimitEnable maxTransYLimitEnable maxTransZLimitEnable minRotXLimitEnable minRotYLimitEnable minRotZLimitEnable maxRotXLimitEnable maxRotYLimitEnable maxRotZLimitEnable minScaleXLimitEnable minScaleYLimitEnable minScaleZLimitEnable maxScaleXLimitEnable maxScaleYLimitEnable maxScaleZLimitEnable inheritsTransform displayHandle displayScalePivot displayRotatePivot displayLocalAxis dynamics showManipDefault rotationInterpolation miDeriveFromMaya miHide miVisible miTrace miShadow miCaustic miGlobillum miExportGeoShader// // Get the list of short names of hidden attributes on one // particular choice node // attributeInfo -s -h on choice1; // Result: msg ihi bnm // // Get the list of all attributes on choice nodes attributeInfo -all -type choice; // Result: message caching isHistoricallyInteresting nodeState binMembership selector input output // // Get the list of hidden internal attributes on one particular choice node // using the UI name for the attributes (that is the one that will show up // in the attribute editor). // select choice1; attributeInfo -ui -h on -i on -and; // Result: Bin Membership //