Last active
May 27, 2023 04:47
-
-
Save ivanvoid/80f38ceb1ca5a3e6fa979a5f0831b290 to your computer and use it in GitHub Desktop.
Godot_v4_signal_pattern.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# insted of this | |
$Button.connect("pressed", self, "_on_button_pressed") | |
# you do this | |
$Button.pressed.connect(self._on_button_pressed) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment