I have created a group like this:
malos = this.physics.add.group();
malo1 = malos.create(30,30,'gnu');
malo2 = malos.create(0,100,'gnu');
malo3 = malos.create(30,200,'gnu');
malo4 = malos.create(0,300,'gnu');
malo5 = malos.create(30,400,'gnu');
Which is the less code method to assign an animation to all the elements of the group. I am looking for something like this:
malos.anims.play('right', true);
Thanks!