GideonSam Posted April 26, 2018 Share Posted April 26, 2018 Hi All, I'M learning Phaser 3 Matter physics. I have a static rectangle body with its angle rotated to make a slope. when i drop a ball from the top its slides in the slope , the ball is not rotating while moving down the slope. (it slides without rotating) kindly help var rectangle = _this.matter.add.rectangle(px, py, w, h, { restitution: 0.9 }); rectangle.isStatic = true Phaser.Physics.Matter.Matter.Body.setAngle(rectangle,a) var ball = _this.matter.add.sprite(320, 10, "ball"); ball.setCircle(); ball.setBounce(1); Link to comment Share on other sites More sharing options...
Recommended Posts