summaryrefslogtreecommitdiff
path: root/hello_signals/demo/Main.gd
diff options
context:
space:
mode:
Diffstat (limited to 'hello_signals/demo/Main.gd')
-rw-r--r--hello_signals/demo/Main.gd4
1 files changed, 2 insertions, 2 deletions
diff --git a/hello_signals/demo/Main.gd b/hello_signals/demo/Main.gd
index 22e5255..1b3e972 100644
--- a/hello_signals/demo/Main.gd
+++ b/hello_signals/demo/Main.gd
@@ -7,9 +7,9 @@ var helloSignals
func _ready():
if Engine.has_singleton("HelloSignals"):
helloSignals = Engine.get_singleton("HelloSignals")
- helloSignals.connect("TikTok", self, "_on_tiktok")
+ helloSignals.connect("TikTok", Callable(self, "_on_tiktok"))
- $Button.connect("pressed", self, "_on_Button_pressed")
+ $Button.connect("pressed", Callable(self, "_on_Button_pressed"))
else:
print("Couldn't find HelloSignals singleton")