diff --git a/2pqj50hpb4.js b/2pqj50hpb4.js new file mode 100644 index 0000000..90b5aee --- /dev/null +++ b/2pqj50hpb4.js @@ -0,0 +1,46 @@ +if (this.parentEntity === data.entity) { + console.log('Entity Impact Test Loaded'); +} else { + return; +} + +ig.module( + 'game.impact-test' +) +.requires( + 'impact.font', + 'impact.game', + 'impact.image', + 'game.levels.snake' +) +.defines(function(){ + + // code for this module + + // Create your own game class + ig.global.Snake = ig.Game.extend( + + { + font: new ig.Font( 'media/04b03.font.png' ), + + init: function() { + // initialize your game world, bind some + // keys, etc. + ig.input.bind( ig.KEY.SPACE, 'jump' ); + + console.log('init called'); + this.loadLevel( LevelSnake ); + } + } + ); + + var size = GameLib.Utils.GetWindowSize(); + + // Start your game + // 60fps, 320x240 pixels, scaled up by a factor of 2 + ig.main('#7ckj7lg8ti', Snake, 60, 64 * 20, 64 * 20, 1 ); + +}); + + +//@ sourceURL=entityLoaded.js \ No newline at end of file