Skip to content

Commit

Permalink
disabled angle indicators on some demos
Browse files Browse the repository at this point in the history
  • Loading branch information
liabru committed Apr 22, 2015
1 parent 40905e8 commit 74bc8ae
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions demo/js/Demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,9 @@
});

World.add(_world, stack);

var renderOptions = _engine.render.options;
renderOptions.showAngleIndicator = false;
};

Demo.svg = function() {
Expand Down Expand Up @@ -253,6 +256,9 @@
}
}, true));
});

var renderOptions = _engine.render.options;
renderOptions.showAngleIndicator = false;
};

Demo.terrain = function() {
Expand Down

0 comments on commit 74bc8ae

Please sign in to comment.