ジャンプ先: 概要. 戻り値. キーワード. 関連. フラグ. Python 例.
geomBind([bindMethod=uint], [falloff=float], [geodesicVoxelParams=[uint, boolean]], [maxInfluences=int])
注: オブジェクトの名前と引数を表す文字列は、カンマで区切る必要があります。これはシノプシスに示されていません。
geomBind は、取り消し可能、照会可能、および編集可能です。
このコマンドは、GeomBind ライブラリを使用したウェイトの計算に使用されます。なし
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
| ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||
|---|---|---|---|---|
bindMethod(bm)
|
uint
|
|
||
|
||||
falloff(fo)
|
float
|
|
||
|
||||
geodesicVoxelParams(gvp)
|
[uint, boolean]
|
|
||
|
||||
maxInfluences(mi)
|
int
|
|
||
|
||||
import maya.cmds as cmds # Compute geodesic voxel weights for skinCluster1 and skinCluster2. This # command will create a geomBind node connected to the two skinClusters # and their common bind pose. The geomBind node will maintain the # geodesic voxel binding parameters used (ie: falloff, resolution, etc.) # cmds.select( 'skinCluster1', r=True ) cmds.select( 'skinCluster2', add=True ) cmds.geomBind( bm=0, fo=0, mi=5 );