Hey there - my first post. I have a sprite which bounces up onTap as below: tap = function() { var tween; bug.body.velocity.y = -100; tween = game.add.tween(bug.body.velocity).to({ y: -100 }, 25, Phaser.Easing.Bounce.In, true); tween.onComplete.add(function() { return bug.body.gravity.y = GRAVITY; }); bugSnd.play();};game.physics.gravity.y = 100; What I need is a global physics like a wind which would push the sprite in a direction and onTap would move the sprite up and against the wind. Hoping I've described this right. Code snippet much appreciated. Thanks in advance for your help. (I'm new to Phaser but I've been immersed in everything I can learn during this past week and lovin' it.)