9 years ago by jmcnamara211
Sample of main.js
ig.module( 'game.main' ) .requires( 'impact.game', 'impact.font', 'game.levels.dorm1' ) .defines(function(){ MyGame = ig.Game.extend({ // Load a font font: new ig.Font( 'media/04b03.font.png' ), init: function() { this.loadLevel(LevelDorm1); // Initialize your game here; bind keys etc. }, update: function() { // Update all entities and backgroundMaps this.parent(); // Add your own, additional update code here }, draw: function() { // Draw all entities and backgroundMaps this.parent(); // Add your own drawing code here } }); // Start the Game with 60fps, a resolution of 320x240, scaled // up by a factor of 2 ig.main( '#canvas', MyGame, 60, 320, 240, 2 ); });