0
0
Fork 0
mirror of https://github.com/liabru/matter-js.git synced 2024-12-23 13:19:01 -05:00

remove redundant runner.isFixed from examples

This commit is contained in:
liabru 2024-06-22 19:13:58 +01:00
parent 2b5819c068
commit aba0e9ec41
2 changed files with 2 additions and 6 deletions

View file

@ -34,9 +34,7 @@ Example.stress3 = function() {
Render.run(render);
// create runner
var runner = Runner.create({
isFixed: true
});
var runner = Runner.create();
Runner.run(runner, engine);
// add bodies

View file

@ -35,9 +35,7 @@ Example.stress4 = function() {
Render.run(render);
// create runner
var runner = Runner.create({
isFixed: true
});
var runner = Runner.create();
Runner.run(runner, engine);