ジャンプ先: 概要. 戻り値. 関連. フラグ. Python 例.
hide(
[objects]
, [allObjects=boolean], [clearSelection=boolean], [invertComponents=boolean], [returnHidden=boolean], [testVisibility=boolean])
注: オブジェクトの名前と引数を表す文字列は、カンマで区切る必要があります。これはシノプシスに示されていません。
hide は、取り消し可能、照会不可能、および編集不可能です。
hide コマンドはオブジェクトを非表示にするために使用します。フラグを使用しないと指定したオブジェクトが、またはオブジェクトを指定しないとアクティブ オブジェクトが非表示になります。
なし
currentUnit, displayAffected, displayColor, displayCull, displayLevelOfDetail, displayPref, displayRGBColor, displaySmoothness, displayStats, displaySurface, refresh, showHidden, toggle
allObjects, clearSelection, invertComponents, returnHidden, testVisibility
フラグはコマンドの作成モードで表示できます
|
フラグはコマンドの編集モードで表示できます
|
フラグはコマンドの照会モードで表示できます
|
フラグに複数の引数を指定し、タプルまたはリストとして渡すことができます。
|
import maya.cmds as cmds
cmds.hide( all=True )
cmds.hide( cmds.ls( type='nurbsSurface' ) )