while
Category:
Script
Since engine version:
5.1 OC
Description
If condition is
true
the following command or block of code will be executed.
Syntax
void
while(
bool
condition);
Parameter
condition:
Condition
Example
while
(
FindObject
())
RemoveObject
(
FindObject
());
Removes all objects.
jwk, 2002-04