AnimationManager done and in, need to fix texture update bug, otherwise finished.

This commit is contained in:
Richard Davey
2013-08-30 04:20:14 +01:00
parent a81a8effb4
commit 936118bd91
9 changed files with 778 additions and 3 deletions
+43
View File
@@ -0,0 +1,43 @@
<!DOCTYPE HTML>
<html>
<head>
<title>phaser.js - a new beginning</title>
<?php
require('js.php');
?>
</head>
<body>
<script type="text/javascript">
(function () {
var game = new Phaser.Game(800, 600, Phaser.AUTO, '', { preload: preload, create: create, update: update });
var bunny;
function preload() {
game.load.image('mushroom', 'assets/sprites/mushroom2.png');
}
function create() {
var test = new Phaser.Sprite(game, 0, 0, 'mushroom');
test.x = 200;
game.world.add(test);
console.log(test.alpha);
}
function update() {
}
})();
</script>
</body>
</html>