移動先: 概要 戻り値 フラグ MEL の例

概要

currentTime [-update boolean] [time]

currentTime は「元に戻す」が可能、「照会」が可能、「編集」が可能です。

time 引数(-edit フラグを伴う場合も伴わない場合もある)を指定するとき、このコマンドを使うとカレントのグローバル時間が設定されます。コマンド ラインに「-update off」が表示されない限り、モデルは新しい時間で更新、表示されます。

戻り値

time

戻り値の型は照会モードでは照会フラグが基になります。

フラグ

update
ロング ネーム(ショート ネーム) 引数型 プロパティ
-update(-u) boolean create
カレント タイムは変更しますが、グローバル時間は変更しません。 デフォルトは true です。

: コマンドの作成モードで使用可能なフラグ : コマンドの編集モードで使用可能なフラグ
: コマンドの照会モードで使用可能なフラグ : 1 つのコマンドで複数回使用可能なフラグ

MEL の例

// Query the current time
//
currentTime -query;

// Change the current time to "30" in current time units
//
currentTime -edit 30;
currentTime 30;

// Change the current time to 2 seconds
//
currentTime -edit 2sec;

// Change the current time, but do not cause the model
// to update.
//
currentTime -edit -10 -update no;