*TimeDelay()

Specifies the amount of time to wait before animating a window.

Syntax

*TimeDelay (Number)

Application

HyperView

Inputs

Number
An amount of time in seconds.

Context

*BeginWindow()

Example

*BeginWindow(Animation)
    *IsActive()
    *TimeScale(1)
    *TimeDelay(0.2)
    *BeginGraphic()
        *LightInfo(0, 0, 1, 0.5, 0.5, 0.5, 64)
        *RotationAngle(15)
        *View(1, 0, 0, 0, 
              0, 1, 0, 0, 
              0, 0, 1, 0, 
              0, 0, 0, 1)
        *Tracking (Off)
    *EndGraphic()
*EndWindow()

Comments

A window containing the *TimeDelay() statement waits Number seconds before animating.