mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 13:43:26 +00:00
61 lines
1.1 KiB
JavaScript
61 lines
1.1 KiB
JavaScript
|
|
||
|
var game = new Phaser.Game(800, 600, Phaser.CANVAS, 'phaser-example', { preload: preload, create: create, update: update, render: render });
|
||
|
|
||
|
function preload() {
|
||
|
|
||
|
game.load.image('backdrop', 'assets/pics/remember-me.jpg');
|
||
|
game.load.image('ship', 'assets/sprites/thrust_ship2.png');
|
||
|
|
||
|
}
|
||
|
|
||
|
var ship;
|
||
|
var cursors;
|
||
|
|
||
|
function create() {
|
||
|
|
||
|
game.world.setBounds(0, 0, 1920, 1200);
|
||
|
|
||
|
var bg = game.add.sprite(0, 0, 'backdrop');
|
||
|
bg.alpha = 0.8;
|
||
|
|
||
|
ship = game.add.sprite(200, 200, 'ship');
|
||
|
ship.physicsEnabled = true;
|
||
|
|
||
|
game.camera.follow(ship);
|
||
|
|
||
|
cursors = game.input.keyboard.createCursorKeys();
|
||
|
|
||
|
game.physics.defaultRestitution = 0.8;
|
||
|
|
||
|
}
|
||
|
|
||
|
function update() {
|
||
|
|
||
|
if (cursors.left.isDown)
|
||
|
{
|
||
|
ship.body.rotateLeft(100);
|
||
|
}
|
||
|
else if (cursors.right.isDown)
|
||
|
{
|
||
|
ship.body.rotateRight(100);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
ship.body.setZeroRotation();
|
||
|
}
|
||
|
|
||
|
if (cursors.up.isDown)
|
||
|
{
|
||
|
ship.body.thrust(400);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
function render() {
|
||
|
|
||
|
// game.debug.renderText('x: ' + box2.body.velocity.x, 32, 32);
|
||
|
// game.debug.renderText('y: ' + box2.body.velocity.y, 32, 64);
|
||
|
|
||
|
}
|
||
|
|