Added phaser build and hellophaser sample

This commit is contained in:
2014-06-09 21:32:48 -07:00
parent 49f23abbe8
commit 48b5c5714a
856 changed files with 954584 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
define([
'phaser'
], function (Phaser) {
'use strict';
function Game() {
console.log('Making the Game');
}
Game.prototype = {
constructor: Game,
start: function() {
this.game = new Phaser.Game(800, 600, Phaser.AUTO, '', {
preload: this.preload,
create: this.create
});
},
preload: function() {
this.game.load.image('logo', 'assets/phaser.png');
},
create: function() {
var logo = this.game.add.sprite(this.game.world.centerX, this.game.world.centerY, 'logo');
logo.anchor.setTo(0.5, 0.5);
}
};
return Game;
});

View File

@@ -0,0 +1,22 @@
(function () {
'use strict';
requirejs.config({
baseUrl: "src/",
paths: {
phaser: 'libs/phaser/phaser.min',
},
shim: {
'phaser': {
exports: 'Phaser'
}
}
});
require(['phaser', 'game'], function (Phaser, Game) {
var game = new Game();
game.start();
});
}());