Created
October 23, 2017 21:13
-
-
Save lonekorean/15d0018bde2f1a6f30c5c2987f6ae2cb to your computer and use it in GitHub Desktop.
Matter.js body creation function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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