2013-10-22 02:58:20 +00:00
|
|
|
|
2014-02-28 18:22:52 +00:00
|
|
|
var game = new Phaser.Game(800, 600, Phaser.AUTO, 'phaser-example', { preload: preload, create: create, update : update });
|
2013-10-22 02:58:20 +00:00
|
|
|
|
|
|
|
function preload() {
|
|
|
|
game.load.image('trsi', 'assets/pics/trsipic1_lazur.jpg');
|
|
|
|
}
|
|
|
|
|
2014-02-28 18:22:52 +00:00
|
|
|
var pic;
|
|
|
|
var cropRect;
|
|
|
|
|
2013-10-22 02:58:20 +00:00
|
|
|
function create() {
|
|
|
|
|
2014-02-28 18:22:52 +00:00
|
|
|
pic = game.add.sprite(game.world.centerX, 550, 'trsi');
|
2013-10-22 02:58:20 +00:00
|
|
|
|
2013-10-24 03:27:28 +00:00
|
|
|
pic.anchor.setTo(0.5, 1);
|
2013-10-22 02:58:20 +00:00
|
|
|
|
2014-02-28 18:22:52 +00:00
|
|
|
cropRect = {x : 0, y : 0 , width : 0, height : pic.height};
|
|
|
|
|
|
|
|
// Here we'll tween the crop rect, from a width of zero to full width, and back again
|
|
|
|
game.add.tween(cropRect).to( { width: pic.width }, 3000, Phaser.Easing.Bounce.Out, true, 0, 1000, true);
|
2013-10-22 02:58:20 +00:00
|
|
|
|
2014-02-28 18:22:52 +00:00
|
|
|
}
|
2013-10-22 02:58:20 +00:00
|
|
|
|
2014-02-28 18:22:52 +00:00
|
|
|
function update () {
|
|
|
|
// the crop method takes a rectangle object as a parameter
|
|
|
|
pic.crop(cropRect);
|
2013-10-22 02:58:20 +00:00
|
|
|
}
|