waitUntil

From Bohemia Interactive Community
Revision as of 19:07, 28 June 2006 by Hoz (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search



waitUntil condition


Operand types:

condition: Code

Type of returned value:

Nothing

Compatibility:

Version 2.60 required.

Description:

Suspend execution of script until condition is satisfied.

Example:

_i = 0; waitUntil {_i = _i + 1; _i >= 100}