-
Notifications
You must be signed in to change notification settings - Fork 2k
Running
liabru edited this page Apr 14, 2021
·
4 revisions
Examples of how to run a Matter.js engine
A basic example for running a previously created Matter.Engine
(see Getting started):
(function run() {
window.requestAnimationFrame(run);
Engine.update(engine, 1000 / 60);
})();
See also the source of Matter.Runner that provides some more advanced features.
When using node you can use setInterval instead of window.requestAnimationFrame
:
setInterval(function() {
Engine.update(engine, 1000 / 60);
}, 1000 / 60);
There is an included runner called Matter.Runner.
This module is an optional utility which provides a game loop, that handles continuously updating a Matter.Engine
for you. It is intended for development and debugging purposes, but may also be suitable for simple games.
See the documentation for Matter.Runner.
The simplest way is to use the Runner.run
helper:
var engine = Engine.create();
Runner.run(engine);
Alternatively you can create the runner first:
var engine = Engine.create();
var runner = Runner.create();
Runner.run(runner, engine);
A number of options may be passed to Matter.Runner.create
:
var runner = Runner.create({
delta: 1000 / 60,
isFixed: false,
enabled: true
});