Created
October 23, 2017 21:13
-
-
Save lonekorean/c8a9665c1a23921435e34071832c1831 to your computer and use it in GitHub Desktop.
Matter.js function syntax
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
// wrong | |
square.setAngularVelocity(0.1); | |
// correct | |
Matter.Body.setAngularVelocity(square, 0.1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment