UpdateContext.CurrentFrame operator

説明

オペレータが評価されている時間をフレーム単位で(Doubleとして)戻します。

C#構文

// get accessor

Double rtn = UpdateContext.CurrentFrame;

VBScript の例

Sub Update( In_UpdateContext, OutputPort, InputPort )

Application.LogMessage "operator is being evaluated at frame : " & In_UpdateContext.CurrentFrame

End Sub