Gabicci Posted April 4, 2017 Share Posted April 4, 2017 hi, i'm coding a pinball game in js with phaser and p2physics. I search how i can do rotation with a anchor point. I want create the rotation for the flipper but method rotateLeft or rotateRight do the rotation by the center's sprites. I want create a rotation around topleft and top right point of the sprite to do a flipper movement. orry for my bad english, thx. Link to comment Share on other sites More sharing options...
jjwallace Posted April 4, 2017 Share Posted April 4, 2017 You need to set the anchor point this.fishBody = game.add.sprite(x, y, 'spFish'); this.fishBody.anchor.set(0.5,0.5); Also '.angle' is degrees and '.rotation' is radians Link to comment Share on other sites More sharing options...
Recommended Posts