Skip to content

Commit

Permalink
Remove some unused code from gameutils.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Oletus committed Jan 6, 2016
1 parent 4f97099 commit 953e05c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 498 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<script src="src/canvasresizer.js"></script>
<script src="src/loadingbar.js"></script>
<script src="src/particle.js"></script>
<script src="src/canvasui.js"></script>
<!--<script src="src/canvasui.js"></script>-->
<script src="src/lib/dat.gui.js"></script>
<script src="src/gameparameters.js"></script>
<!-- input -->
Expand All @@ -46,12 +46,12 @@
var Game = function(resizer) {
this.canvas = resizer.getCanvas();
this.realCtx = this.canvas.getContext('2d');
this.canvasUI = new CanvasUI({
/*this.canvasUI = new CanvasUI({
element: this.canvas,
getCanvasPositionFromEvent: function(event) {
return resizer.getCanvasPosition(event);
}
});
});*/
this.time = 0;
this.level = new Level();

Expand Down
Loading

0 comments on commit 953e05c

Please sign in to comment.