I'm trying to make a game similar to the gba Zelda and I would like to make a world the can slide in any direction given the location of the actor Player please help.


1 2 3 4 | Actor actor = new Actor(); addObject(actor, 25 , 25 ); actor.setLocation(- 300 , - 300 ); super .act(); // calls the scrolling world to scroll |