I have many nodes which I want to connect to the same signal, but as said, it's many and I dont want to do it manually.
I know some ways in gdscript like:
for child in parent:
child.connect.....
but in my scene the nodes I want to connect is not the only children
and
for nodes in get_group....
but that way I should sign in a group to each of them, which is almost connect signals manually.
Could anyone help me?