Is it possible too set a Sprite Object a max X Position... so for example, Sprite1MaxX=10, so it can only go up 10x, so basically were setting a boundary.
Develop games in your browser. Powerful, performant & highly capable.
Just add an event like
Sprite X position > 10
-> Set Sprite X position to 10
Ok, so how can i do that in a circle LOL, cause if you go X+10 and Y+10 it will be a box xD?
I believe this could be of help. Basically, you need an angle, and set X position to cos(angle) * 10 and the Y position to sin(angle) * 10.