ジャンプ先: 概要. 戻り値. フラグ. Python 例.

概要

currentTime( [time] , [update=boolean])

注: オブジェクトの名前と引数を表す文字列は、カンマで区切る必要があります。これはシノプシスに示されていません。

currentTime は、取り消し可能、照会可能、および 編集可能 です。

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

戻り値

time

照会モードでは、戻り値のタイプは照会されたフラグに基づきます。

フラグ

update
ロング ネーム(ショート ネーム) 引数タイプ プロパティ
update(u) boolean create
現在のタイムは変更しますが、グローバル時間は変更しません。既定は true です。

フラグはコマンドの作成モードで表示できます フラグはコマンドの編集モードで表示できます
フラグはコマンドの照会モードで表示できます フラグに複数の引数を指定し、タプルまたはリストとして渡すことができます。

Python 例

import maya.cmds as cmds

# Query the current time
#
cmds.currentTime( query=True )
# Change the current time to "30" in current time units
#
cmds.currentTime( 30, edit=True )
cmds.currentTime( 30 )
# Change the current time to 2 seconds
#
cmds.currentTime( '2sec', edit=True )
# Change the current time, but do not cause the model
# to update.
#
cmds.currentTime( -10, update=False, edit=True )