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

概要

objExists( string )

注: オブジェクトの名前と引数を表す文字列は、カンマで区切る必要があります。これはシノプシスに示されていません。

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

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

戻り値

booleanコマンドの結果

関連

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

Python 例

import maya.cmds as cmds

# Select an object if and only if it exists.
# Print a warning if it does not exist.
if cmds.objExists('surface1'):
  cmds.select('surface1')
else:
  print("Warning: no surface exists.")