true
true
Related Links:
kBlackAdditional Notes
Other true values
Any non-zero value will evaluate as true if used by itself in an if statement. In the following example, any value for x other than zero will trigger the conditional action:
float x;
x = 5;
if (x)
...
end if

