Cubes

var config = {
    type: Phaser.AUTO,
    parent: 'phaser-example',
    width: 800,
    height: 600,
    scene: {
        preload: preload,
        create: create
    }
};

var game = new Phaser.Game(config);

function preload ()
{
    this.load.atlas('cube', 'assets/animations/cube.png', 'assets/animations/cube.json');
}

function create ()
{
    this.anims.create({
        key: 'spin',
        frames: this.anims.generateFrameNames('cube', { prefix: 'frame', start: 0, end: 23 }),
        frameRate: 50,
        repeat: -1
    });

    var group = this.add.group({ key: 'cube', frame: 'frame1', repeat: 107, setScale: { x: 0.55, y: 0.55 } });

    Phaser.Actions.GridAlign(group.getChildren(), { width: 12, cellWidth: 70, cellHeight: 70, x: -20, y: 0 });

    var i = 1;
    var ci = 0;
    var colors = [ 0xef658c, 0xff9a52, 0xffdf00, 0x31ef8c, 0x21dfff, 0x31aade, 0x5275de, 0x9c55ad, 0xbd208c ];

    group.children.iterate(function (child) {

        child.tint = colors[ci];

        if (i % 12 === 0)
        {
            i = 1;
            ci++;
        }
        else
        {
            i++;
        }

    });

    this.anims.staggerPlay('spin', group.getChildren(), 0.03);

    this.cameras.main.zoom = 0.8;

    this.tweens.add({
        targets: this.cameras.main,
        props: {
            zoom: { value: 2.5, duration: 4000, ease: 'Sine.easeInOut' },
            rotation: { value: 2.3, duration: 8000, ease: 'Cubic.easeInOut' }
        },
        delay: 2000,
        yoyo: true,
        repeat: -1
    });
}