UpdateContext.CurrentFrame operator

Description

Returns the time in frames (as a Double) at which the operator is being evaluated.

C# Syntax

// get accessor
Double rtn = UpdateContext.CurrentFrame;

Examples

VBScript Example

Sub Update( In_UpdateContext, OutputPort, InputPort )
Application.LogMessage "operator is being evaluated at frame : " & In_UpdateContext.CurrentFrame
End Sub