Hello all,
I'm trying to move a number of objects off the screen. I can do this by:-
Every tick -> Set Y -> Self.Y+1
The above works exactly as I want. The object moves down and off the screen. Except it keeps moving forever, obviously. So, I thought I would try:-
Every tick -> Set Y -> Self.Y = 490 | self.Y < 490 ? Self.Y+0 : self.Y + 1
However, that does nothing. I have looked in the manual (which is where I got the idea for the expression). Could someone please advise where I'm going wrong. thanks.