How to create a group and add multiple sprite under
a group using phaser3
Welcome, Ananth,
In Phaser 3, groups no longer contain children. Instead, containers are what you’ll want to use.
1 Like
Hi jake,
Thanks for your reply,can you show any example
In phaser2 we can create and add group like
sprite=game.add.group() //creation of group
sprite.add() //Add child sprite to a group
this is what i want,is there any feature like this in phaser3
Thanks jake,it works fine