forked from phaserjs/phaser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgroup destroy.js
More file actions
54 lines (35 loc) · 1.41 KB
/
Copy pathgroup destroy.js
File metadata and controls
54 lines (35 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
var game = new Phaser.Game(800, 600, Phaser.CANVAS, 'phaser-example', { preload: preload, create: create, render: render });
function preload() {
game.load.image('atari1', 'assets/sprites/atari130xe.png');
game.load.image('atari2', 'assets/sprites/atari800xl.png');
game.load.image('atari4', 'assets/sprites/atari800.png');
game.load.image('sonic', 'assets/sprites/sonic_havok_sanity.png');
game.load.image('duck', 'assets/sprites/darkwing_crazy.png');
game.load.image('firstaid', 'assets/sprites/firstaid.png');
game.load.image('diamond', 'assets/sprites/diamond.png');
game.load.image('mushroom', 'assets/sprites/mushroom2.png');
}
var group;
var sprite;
function create() {
var images = game.cache.getImageKeys();
group = game.add.group();
for (var i = 0; i < 20; i++)
{
sprite = group.create(game.world.randomX, game.world.randomY, game.rnd.pick(images));
}
sprite.x = 100;
sprite.y = 100;
game.add.tween(sprite).to( { y: 200 }, 2000, Phaser.Easing.Linear.None, true, 0, 1000, true);
game.input.onDown.addOnce(nuke, this);
}
function nuke() {
// The optional parameter here will destroy the Sprites as well as the Group.
// The default is 'false' which means destroy the Group, but none of the children.
group.destroy(true);
console.log(group);
console.log(sprite);
}
function render() {
game.debug.renderText('Click to nuke', 32, 32);
}