enemy left counter

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By thoma

Hi, I want to make a counter that count enemies left.I made a scene whit all enemy for this wave ( this scene have 10 enemy in it and this 10 enemy are in a groups.)
thank for helping me!

:bust_in_silhouette: Reply From: Marevixo

You can add all the enemies to group “enemies_left”.
Then your counter is: var counter = get_tree().get_nodes_in_group("enemies_left").size()
When enemy is being killed, use remove_from_group("enemies_left")

Thank you!!! that appreciate

thoma | 2019-09-06 00:01