ジャンプ先: 概要. 戻り値. 関連. MEL 例.

概要

objExists string

objExists は、取り消し可能、照会不可能、および 編集不可能 です。

このコマンドは、指定した名前のオブジェクトが存在するかどうかによって、true または false を返します。

戻り値

boolean

関連

addAttr, aliasAttr, attributeInfo, attributeQuery, deleteAttr, getClassification, nodeType, objectType, renameAttr

MEL 例

// Select an object if and only if it exists.
// Print a warning if it does not exist.
if( `objExists surface1` ) {
    select surface1;
} else {
    warning("No surface exists");
}