0018: Invalid array size
You did not specify the size of the array in the declaration, or provided an invalid value (for example, a string instead of a number).
Possible solutions: use a valid integer value:
var $coords: array of Float // incorrect, size is missing
var $coords: array 10 of Float // correct
Last modified 1mo ago