mirror of
https://github.com/photonstorm/phaser
synced 2024-12-18 17:16:03 +00:00
42 lines
1.6 KiB
JavaScript
42 lines
1.6 KiB
JavaScript
/// <reference path="../../Phaser/Game.ts" />
|
|
(function () {
|
|
var game = new Phaser.Game(this, 'game', 800, 600, init, create, update, render);
|
|
function init() {
|
|
// Using Phasers asset loader we load up a PNG from the assets folder
|
|
game.loader.addImageFile('atari', 'assets/sprites/mushroom2.png');
|
|
game.loader.addImageFile('card', 'assets/sprites/mana_card.png');
|
|
game.loader.load();
|
|
}
|
|
var atari;
|
|
var card;
|
|
function create() {
|
|
atari = game.add.sprite(200, 300, 'atari');
|
|
card = game.add.sprite(400, 300, 'card');
|
|
//atari.texture.alpha = 0.5;
|
|
//atari.scale.setTo(1.5, 1.5);
|
|
atari.physics.setCircle(100);
|
|
//atari.physics.shape.setSize(150, 50);
|
|
//atari.physics.shape.offset.setTo(7, 5);
|
|
//atari.physics.gravity.setTo(0, 2);
|
|
atari.physics.bounce.setTo(0.7, 0.7);
|
|
//atari.physics.drag.setTo(10, 10);
|
|
card.physics.bounce.setTo(0.7, 0.7);
|
|
}
|
|
function update() {
|
|
atari.physics.acceleration.x = 0;
|
|
atari.physics.acceleration.y = 0;
|
|
if(game.input.keyboard.isDown(Phaser.Keyboard.LEFT)) {
|
|
atari.physics.acceleration.x = -150;
|
|
} else if(game.input.keyboard.isDown(Phaser.Keyboard.RIGHT)) {
|
|
atari.physics.acceleration.x = 150;
|
|
}
|
|
if(game.input.keyboard.isDown(Phaser.Keyboard.UP)) {
|
|
atari.physics.acceleration.y = -150;
|
|
} else if(game.input.keyboard.isDown(Phaser.Keyboard.DOWN)) {
|
|
atari.physics.acceleration.y = 150;
|
|
}
|
|
}
|
|
function render() {
|
|
atari.physics.renderDebugInfo(16, 16);
|
|
}
|
|
})();
|