mirror of
https://github.com/photonstorm/phaser
synced 2024-11-27 23:20:59 +00:00
62 lines
No EOL
1.5 KiB
HTML
62 lines
No EOL
1.5 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Phaser - Making your first game, part 4</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);
|
|
|
|
}
|
|
|
|
var platforms;
|
|
|
|
function create() {
|
|
|
|
// A simple background for our game
|
|
game.add.sprite(0, 0, 'sky');
|
|
|
|
// The platforms group contains the ground and the 2 ledges we can jump on
|
|
platforms = game.add.group();
|
|
|
|
// Here we create the ground.
|
|
var ground = platforms.create(0, game.world.height - 64, 'ground');
|
|
|
|
// Scale it to fit the width of the game (the original sprite is 400x32 in size)
|
|
ground.scale.setTo(2, 2);
|
|
|
|
// This stops it from falling away when you jump on it
|
|
ground.body.immovable = true;
|
|
|
|
// Now let's create two ledges
|
|
var ledge = platforms.create(400, 400, 'ground');
|
|
ledge.body.immovable = true;
|
|
|
|
ledge = platforms.create(-150, 250, 'ground');
|
|
ledge.body.immovable = true;
|
|
|
|
}
|
|
|
|
function update() {
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
|
</html> |