You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can also install using the package manager npm
npm install matter-js
Webpack
Some webpack configs including the default may impact your project's performance during development, for a solution see issue.
Usage example
The following is a minimal example using the built in renderer and runner to get you started:
// module aliasesvarEngine=Matter.Engine,Render=Matter.Render,Runner=Matter.Runner,Bodies=Matter.Bodies,Composite=Matter.Composite;// create an enginevarengine=Engine.create();// create a renderervarrender=Render.create({element: document.body,engine: engine});// create two boxes and a groundvarboxA=Bodies.rectangle(400,200,80,80);varboxB=Bodies.rectangle(450,50,80,80);varground=Bodies.rectangle(400,610,810,60,{isStatic: true});// add all of the bodies to the worldComposite.add(engine.world,[boxA,boxB,ground]);// run the rendererRender.run(render);// create runnervarrunner=Runner.create();// run the engineRunner.run(runner,engine);
Include the above script into a page that has Matter.js installed and then open the page in your browser. Make sure the script is at the bottom of the page (or called on the window load event, or after DOM is ready).
Hopefully you will see two rectangle bodies fall and then hit each other as they land on the ground.
If you don't, check the browser console to see if there are any errors.
Check out the demo page for more examples and then refer to Demo.js to see how they work. Some of the demos are also available on codepen, where you can easily experiment with them (but they may not always be completely up to date).
Running and Rendering
The above example uses the built in renderer and runner, but these are both optional and it's easy to render in your own way and use your own game loop.
See the Rendering and Running wiki pages for information.