Added phaser tutorial
This commit is contained in:
37
phaser-tutorial/part2.html
Normal file
37
phaser-tutorial/part2.html
Normal file
@@ -0,0 +1,37 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Phaser - Making your first game, part 2</title>
|
||||
<script type="text/javascript" src="js/phaser.min.js"></script>
|
||||
<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() {
|
||||
}
|
||||
|
||||
function update() {
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user