*SetTimeOn()

Sets a flag that indicates if the timestep is displayed, as specified in the Options panel.

Syntax

*SetTimeOn (time_on)

Application

MotionView, HyperView, and MediaView.

Inputs

time_on
0
Timestep is not shown.
1
Timestep is shown. This is the default.

Context

*BeginDefaults()

*BeginVideoDefaults()

Example

To display the timestep in a video window:
*BeginDefaults()
• • •
    *BeginVideoDefaults()
        *SetBorderColor(12)
        *SetFrameColor(12)
        *SetFileOn(1)
        *SetTimeOn(1)
	   • • •
        *SetCurveDefaults(1, 3, 1, 0, 0)
        *SetAnimBubbleColor(6)
    *EndVideoDefaults()
• • •
*EndDefaults()