mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 13:13:43 +00:00
36 lines
685 B
TypeScript
36 lines
685 B
TypeScript
/// <reference path="../../Phaser/Game.ts" />
|
|
|
|
(function () {
|
|
|
|
var game = new Phaser.Game(this, 'game', 800, 600, preload, create);
|
|
|
|
function preload() {
|
|
|
|
game.load.image('atari', 'assets/sprites/atari130xe.png');
|
|
|
|
|
|
|
|
}
|
|
|
|
var atari: Phaser.Sprite;
|
|
|
|
function create() {
|
|
|
|
atari = game.add.sprite(300, 0, 'atari');
|
|
|
|
startBounceTween();
|
|
}
|
|
|
|
function startBounceTween() {
|
|
|
|
atari.y = 0;
|
|
|
|
var bounce: Phaser.Tween = game.add.tween(atari);
|
|
|
|
bounce.to({ y: 500 }, 1000 + Math.random() * 3000, Phaser.Easing.Bounce.Out);
|
|
bounce.onComplete.add(startBounceTween, this);
|
|
bounce.start();
|
|
|
|
}
|
|
|
|
})();
|