I'm stumped on how I could make the actor come out from the other side of the world when it touches the edge.
I need it to be very swiftly as well.
So far it looks like this.
1 2 3 4 | if (isAtEdge()) { setLocation( 600 -x, 400 -y); } |