[SOLVED] Make Enemies For Your Game - With GDevelop

Hello,
I’m watching this fantastic video: Make Enemies For Your Game - With GDevelop - YouTube
( Thanks to share it with us)
On time 0.06 this code is displayed:

I have a doubt: the command “Repeat for all instance of Bee”.
If a Bee hasn’t “chase” animation is included in"all instances" or not ?

I hope that my question is clear :slight_smile:

Thanks,
J

The “Repeat for all Bee instances” will only be applied to all the Bees objects with the current animation of “chase”. This is because the first event filters out any Bee objects with a current animation that is not “chase”, and the repeat is a subset of that, and will work on that filtered list.

Any bees with other current animation will be ignored.

2 Likes