godot in connect function code example
Example: godot how tu use connect
Create signal in the object which will send the signal.
In the Object that should receive the signal, create a reference to the object which is emitting the signal.
Then write:
reference.connect("signal", self, "myFunction")
reference is the object that sends the signal.
signal is the signal which we created before.
myFunction is a function in the Object which should receive the signal.