Skip to content

Commit

Permalink
remove redundant runner.isFixed from examples
Browse files Browse the repository at this point in the history
  • Loading branch information
liabru committed Jun 22, 2024
1 parent 2b5819c commit aba0e9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions examples/stress3.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 1 addition & 3 deletions examples/stress4.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit aba0e9e

Please sign in to comment.