Skip to content

Instantly share code, notes, and snippets.

@lonekorean
Created October 23, 2017 21:13
Show Gist options
  • Save lonekorean/15d0018bde2f1a6f30c5c2987f6ae2cb to your computer and use it in GitHub Desktop.
Save lonekorean/15d0018bde2f1a6f30c5c2987f6ae2cb to your computer and use it in GitHub Desktop.
Matter.js body creation function
function rect(x, y, width, height, color) {
return Matter.Bodies.rectangle(x, y, width, height, {
isStatic: true,
restitution: 1,
render: { fillStyle: color }
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment