Camera Moving
Have everything set up, just can't seem to get the camera to slowly move into position.
Instead it wants to jump right to the coordinates, rather than slide to them.
for (var i = 0; i < 24;){SetCameraY(GetCameraY()-1); while(TimeCatch + 100 > GetTime()){ ++i;}}
To me, this reads:
1.) For as long as i = 0, then keep performing the for-loop until i is no longer less than 24 pixels
2.) As long as i is less than 24, Set the Camera -1 in pixels every 100ms
3.) While 100ms in time is added, i is added a +1.
Meaning: the Camera should move -1 on the Y-axis every 100msecs, correct?
Instead it only moves -1 once, then stops.
For all the other scripts I implemented, the camera just instantly jumps 24 pixels