Jump to content

Matter Physics Phaser 3


GideonSam
 Share

Recommended Posts

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

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...