max(val1, val2, ... max_val);
Argument | Description |
---|---|
val0 ... max_val | The values to compare. |
Returns: Real
This function returns the maximum of the input values, of which
it can have as many as you require (note that more arguments will
mean that the function will be slower to parse). For example
max(12, 96, 32, 75) will return 96 as that is the highest
of all the input values.
x = max(x, 0);
This will stop the player from exiting the left of the room. This works by constantly setting its x to either itself or 0, whichever is larger. If the player exits the left, its x would be smaller than 0 (ie negative), so it'll get set straight back.