Lots of new examples :)

Lots of new examples, the wip/examples folder can be destoryed I think
This commit is contained in:
Webeled
2013-09-30 17:30:45 +01:00
parent 4b177e0a9b
commit bdc8edea9d
15 changed files with 807 additions and 11 deletions
+1 -9
View File
@@ -7,13 +7,8 @@
(function () {
var game = new Phaser.Game(800, 600, Phaser.CANVAS, '', { preload: preload, create: create, update: update, render: render });
var game = new Phaser.Game(800, 600, Phaser.CANVAS, '', {create: create, render: render });
function preload() {
// game.load.image('disk', 'assets/sprites/ra_dont_crack_under_pressure.png');
}
function create() {
@@ -21,9 +16,6 @@
}
function update() {
}
function render() {
game.debug.renderPointer(game.input.mousePointer);