移動先: 概要 戻り値 関連項目. フラグ. Python 例.
createNode(
string
, [name=string], [parent=string], [shared=boolean], [skipSelect=boolean])
注意: オブジェクト名や引数を表す文字列はカンマで区切ります。これは概要には示されていません。
createNode は 「元に戻す」が可能、「照会」が不可能、「編集」が不可能 です。
このコマンドを使うと、指定タイプのディペンデンシー グラフに新規ノードを作成できます。
connectAttr, setAttr
name, parent, shared, skipSelect
: コマンドの作成モードで使用可能なフラグ
|
: コマンドの編集モードで使用可能なフラグ
|
: コマンドの照会モードで使用可能なフラグ
|
: タプルまたはリストとして渡された複数の引数を持てるフラグ
|
import maya.cmds as cmds
cmds.createNode( 'transform', n='transform1' )
cmds.createNode( 'nurbsSurface', n='surface1', p='transform1' )
cmds.createNode( 'camera', shared=True, n='top' )
# This transform will be selected when created
cmds.createNode( 'transform', n='selectedTransform' )
# This will create a new transform node, but 'selectedTransform'
# will still be selected.
cmds.createNode( 'transform', ss=True )