ジャンプ先: 概要. 戻り値.
関連項目. フラグ. Python 例.
mirrorJoint( object , [mirrorBehavior=boolean], [mirrorXY=boolean], [mirrorXZ=boolean], [mirrorYZ=boolean], [searchReplace=[string,
string]])
注意:
オブジェクト名や引数を表す文字列はカンマで区切ります。これは概要には示されていません。
mirrorJoint は 「元に戻す」が可能、「照会」が不可能、「編集」が不可能 です。
ワールド空間のプレーンを中心に、選択したジョイントのスケルトンのブランチが対称的に複製されます。ミラーリング モードは 3
つあります(XY プレーン、YZ プレーン、XZ プレーン)。
string[] |
ミラーリングされたジョイントの名前 |
connectJoint, ikHandle, ikHandleDisplayScale, ikSolver, ikSystem,
ikSystemInfo, insertJoint, joint,
jointCluster, jointDisplayScale, jointLattice, removeJoint, removeJoint
mirrorBehavior, mirrorXY, mirrorXZ,
mirrorYZ, searchReplace
ロング ネーム(ショート ネーム) |
引数型 |
プロパティ |
mirrorXY(mxy) |
boolean |
|
|
ワールド空間の XY プレーンを中心に、選択したジョイントのスケルトンをミラーリングします。 |
|
mirrorYZ(myz) |
boolean |
|
|
ワールド空間の YZ プレーンを中心に、選択したジョイントのスケルトンをミラーリングします。 |
|
mirrorXZ(mxz) |
boolean |
|
|
ワールド空間の XZ プレーンを中心に、選択したジョイントのスケルトンをミラーリングします。 |
|
mirrorBehavior(mb) |
boolean |
|
|
ミラーリングの実行時に、オリジナル ジョイントとミラーリング ジョイントに等しい回転で、ミラーリング位置(ミラーリング
プレーンを中心に対称)にスケルトンが配置されるようにジョイントの向きがミラーリングされることを指定するために使用します。オリジナル
ジョイントのアニメーション カーブは、同様の動作(対称の動作)をするようにミラーリング
サイドにコピーされます。mirrorBehavior を指定しないと、ミラーリング サイドのジョイント方向は、ソース
サイドと同じになります。 |
|
searchReplace(sr) |
[string, string] |
|
|
ミラーリングを実行した後、最初に指定した文字列の名前を検索し、2
番目に指定した文字列と置き換えて、新しいジョイントの名前を変更します。 |
|
: コマンドの作成モードで使用可能なフラグ |
: コマンドの編集モードで使用可能なフラグ |
: コマンドの照会モードで使用可能なフラグ |
: タプルまたはリストとして渡された複数の引数を持てるフラグ |
import maya.cmds as cmds
# Create a mirrored branch of the skeleton starting from the joint "jointName"
# about the yz-plane.
# Joint orientations on the mirrored side will be identical to the source side.
#
cmds.mirrorJoint( 'jointName' )
# Create a mirrored branch of the skeleton starting from the joint "jointName"
# about the yz-plane.
# Joint orientations on the mirrored side will be mirrored from the source side.
#
cmds.mirrorJoint('jointName',mirrorBehavior=True,myz=True)
# Create a mirrored branch of the skeleton starting from the selected joint
# about the xy-plane.
# Joint orientations on the mirrored side will be mirrored from the source side.
# Joint names on the duplicated side will contain the string "right_" if
# the corresponding joint on the original side contained the string "left_".
#
cmds.mirrorJoint(mirrorXY=True,mirrorBehavior=True,searchReplace=('left_', 'right_') )