Groupe de phaser semis
// Limited to 20 objects in the pool, not allowed to grow beyond it
// bullets = this.pool.createObjectPool(Bullet, 20);
bullets = this.add.group({
classType: Bullet,
maxSize: 20,
runChildUpdate: true
});
Himanshu Jangid