Question
Trying to scroll world in my platform game - breaks the hitTestPoint code
Hello As3 wizards
I'm making a game and my current code muddles up my collision.
container = new Sprite();
addChild(container);
container.addChild(ground);
container.addChild(character);
container.x = -character.x + stage.stageWidth / 2;

