2018-04-06, 19:59:49
Sorry, just saw this.
It's that you got it to work. But just to say how you can fix the uninitialized error:
When it says that a variable is uninitialized, you need to give it a value before it is used in any calculations. For example, it says that "angle" is uninitialized:
local real angle
To fix it, just give it a value (usually it's not important which value it is), like this:
local real angle = 0.0
This fixes this error.
It's that you got it to work. But just to say how you can fix the uninitialized error:
When it says that a variable is uninitialized, you need to give it a value before it is used in any calculations. For example, it says that "angle" is uninitialized:
local real angle
To fix it, just give it a value (usually it's not important which value it is), like this:
local real angle = 0.0
This fixes this error.
This post has been brought to you by Sand - it's everywhere, get used to it.