Is it possible to add 2 identic controls?

So, I’m trying to do an EnemysControl class that will have several EnemyControl’s. Is is possible to add several EnemyControl’s to the same Node (inside EnemysControl)? And if yes, how do I access a specific control?

Thanks,
Ev1lbl0w

Yes you can. Simply keep a reference to the Control to access it.

Thanks! When you say reference, is something like giving an id to a control, then I can access it using the id?

A reference is simply a variable that you keep, e.g. in a list or simply as a variable.

Oh, I’m really a newbie! Thank you very much!