Hey Phaser people, I'm currently working on a 2d upperview point & click game, using Arcade physics. What I want to develop is a "smart movement" system, where if you click on a part of the map, your character shouldn't get stuck in obstacles, but pass around them.  For now, I'm using tweens to move my character to the mouse position, which cancels the collision. Thus, it's a no go.             this.game.input.onDown.add(this.movePlayer, this);             movePlayer