playif / play_phaser

A Dart port for Phaser 2D game engine.
MIT License
72 stars 13 forks source link

Setting the world scale breaks arcade physics #31

Open oxysoft opened 9 years ago

oxysoft commented 9 years ago

Create method

game.world.scale.set(1.05, 1.05);
game.physics.startSystem(Physics.ARCADE);

somewhere in constructor of class which extends Sprite

game.physics.enable(this, Physics.ARCADE, true);

Results in the following https://gfycat.com/AggressiveBasicDungbeetle

oxysoft commented 9 years ago

Any update on this?