2 instances in one add_child() function?

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

I’m wondering if it’s possible to assign 2 instance variables in a single add_child() function

What’s your reasoning for wanting to do this?

timothybrentwood | 2021-04-30 20:45

:bust_in_silhouette: Reply From: Legorel

If you want to do something like this :

add_child(node1, node2, node3, [...])

It is not possible

Instead you just use multiple add_child one after the other