Skip to content

Instantly share code, notes, and snippets.

@ivanvoid
Last active May 27, 2023 04:47
Show Gist options
  • Save ivanvoid/80f38ceb1ca5a3e6fa979a5f0831b290 to your computer and use it in GitHub Desktop.
Save ivanvoid/80f38ceb1ca5a3e6fa979a5f0831b290 to your computer and use it in GitHub Desktop.
Godot_v4_signal_pattern.txt
# 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