ジャンプ先: 概要. 戻り値. キーワード. 関連. フラグ. 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
|
|||
|
||||
-hidden(-h)
|
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
|
|||
|
フラグはコマンドの作成モードで表示できます | フラグはコマンドの編集モードで表示できます |
フラグはコマンドの照会モードで表示できます | コマンド内でフラグを複数回使用できます。 |
// 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 //