mirror of
https://github.com/photonstorm/phaser
synced 2024-11-27 07:01:20 +00:00
29 lines
816 B
TypeScript
29 lines
816 B
TypeScript
/// <reference path="../../Phaser/Game.ts" />
|
|
|
|
(function () {
|
|
|
|
var game = new Phaser.Game(this, 'game', 800, 600, preload, create);
|
|
|
|
function preload() {
|
|
game.load.spritesheet('shadow', 'assets/tests/tween/shadow.png', 80, 15);
|
|
game.load.spritesheet('PHASER', 'assets/tests/tween/PHASER.png', 70, 90);
|
|
|
|
}
|
|
|
|
function create() {
|
|
|
|
var item: Phaser.Sprite;
|
|
|
|
for (var i = 0; i < 6; i++) {
|
|
item = game.add.sprite(190 + 69 * i, -100, 'PHASER', i);
|
|
// Add a simple bounce tween to each character's position.
|
|
game.add.tween(item)
|
|
.to({y: 240}, 2400, Phaser.Easing.Bounce.Out, true, 1000 + 400 * i, false);
|
|
}
|
|
|
|
// Set background color to white.
|
|
game.stage.backgroundColor = '#fff';
|
|
|
|
}
|
|
|
|
})();
|