ジャンプ先: 概要. 戻り値. 関連. フラグ. MEL 例.
scaleKey [-animation string] [-attribute string] [-controlPoints boolean] [-float floatrange] [-floatPivot float] [-floatScale float] [-hierarchy string] [-includeUpperBound boolean] [-index uint] [-newEndFloat float] [-newEndTime time] [-newStartFloat float] [-newStartTime time] [-scaleSpecifiedKeys boolean] [-shape boolean] [-time timerange] [-timePivot time] [-timeScale float] [-valuePivot float] [-valueScale float]
objects
scaleKey は、取り消し可能、照会不可能、および 編集不可能 です。
このコマンドは、キーセット上に作用します。キーセットは、1 つまたは複数のアニメーション カーブ上の指定したタイム レンジ内のキー グループとして定義されます。 キーセットを構成するアニメーション カーブは、「-animation」フラグの値に依存します。int | スケールが実行されたカーブの数。 |
ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||
---|---|---|---|---|
-attribute(-at)
|
string
|
|||
|
||||
-hierarchy(-hi)
|
string
|
|||
|
||||
-shape(-s)
|
boolean
|
|||
|
||||
-controlPoints(-cp)
|
boolean
|
|||
|
||||
-index(-in)
|
uint
|
|||
|
||||
-time(-t)
|
timerange
|
|||
|
||||
-float(-f)
|
floatrange
|
|||
|
||||
-includeUpperBound(-iub)
|
boolean
|
|||
|
||||
-animation(-an)
|
string
|
|||
|
||||
-timeScale(-ts)
|
float
|
|||
|
||||
-floatScale(-fs)
|
float
|
|||
|
||||
-valueScale(-vs)
|
float
|
|||
|
||||
-timePivot(-tp)
|
time
|
|||
|
||||
-floatPivot(-fp)
|
float
|
|||
|
||||
-valuePivot(-vp)
|
float
|
|||
|
||||
-newStartTime(-nst)
|
time
|
|||
|
||||
-newEndTime(-net)
|
time
|
|||
|
||||
-newStartFloat(-nsf)
|
float
|
|||
|
||||
-newEndFloat(-nef)
|
float
|
|||
|
||||
-scaleSpecifiedKeys(-ssk)
|
boolean
|
|||
|
フラグはコマンドの作成モードで表示できます | フラグはコマンドの編集モードで表示できます |
フラグはコマンドの照会モードで表示できます | コマンド内でフラグを複数回使用できます。 |
// Scale keyframes from frame 10 to 20 of nurbsSphere1's translateX // to fill frames 10 to 30. // scaleKey -time "10:20" -newStartTime 10 -newEndTime 30 -attribute tx nurbsSphere1; // Scale all the animation of the active objects // (range 0-30) to fill range 0 to 60. // scaleKey -time "0:30" -timeScale 2 -timePivot 0;