phaser/resources/tutorials/02 Making your first game/part3.html

40 lines
789 B
HTML
Raw Normal View History

2013-12-07 02:05:07 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
2013-12-10 16:31:54 +00:00
<title>Phaser - Making your first game, part 3</title>
<script src="//cdn.jsdelivr.net/phaser/2.2.2/phaser.min.js"></script>
2013-12-07 02:05:07 +00:00
<style type="text/css">
body {
margin: 0;
}
</style>
</head>
<body>
<script type="text/javascript">
var game = new Phaser.Game(800, 600, Phaser.AUTO, '', { preload: preload, create: create, update: update });
function preload() {
game.load.image('sky', 'assets/sky.png');
game.load.image('ground', 'assets/platform.png');
game.load.image('star', 'assets/star.png');
game.load.spritesheet('dude', 'assets/dude.png', 32, 48);
}
function create() {
game.add.sprite(0, 0, 'star');
}
function update() {
}
</script>
</body>
</html>