Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 627 Bytes

File metadata and controls

37 lines (28 loc) · 627 Bytes

Wait

Description

Procedure Wait delays execution in VectorScript for a specified number of seconds.

When paused, a VectorScript routine stops at the point where Wait is encountered.

PROCEDURE Wait(seconds : INTEGER);
def vs.Wait(seconds):
    return None

Parameters

Name Type Description
seconds INTEGER Number of seconds to pause script execution.

Examples

VectorScript

Wait(3);
{pauses execution for 3 seconds}

Python

Version

Availability: from All Versions

Category