Pau Posted March 17, 2018 Share Posted March 17, 2018 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! Link to comment Share on other sites More sharing options...
rich Posted March 17, 2018 Share Posted March 17, 2018 Phaser.Actions.Play(group.getChildren(), key) Link to comment Share on other sites More sharing options...
Pau Posted March 22, 2018 Author Share Posted March 22, 2018 Thanks! It is PlayAnimation Phaser.Actions.PlayAnimation(malos.getChildren(), 'right') https://phaser.io/phaser3/api/actions Link to comment Share on other sites More sharing options...
Recommended Posts