diff options
Diffstat (limited to 'hello_signals/demo/Main.gd')
-rw-r--r-- | hello_signals/demo/Main.gd | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/hello_signals/demo/Main.gd b/hello_signals/demo/Main.gd new file mode 100644 index 0000000..22e5255 --- /dev/null +++ b/hello_signals/demo/Main.gd @@ -0,0 +1,29 @@ +extends Node2D + +var timerCount = 0 +var timerRunning = false +var helloSignals + +func _ready(): + if Engine.has_singleton("HelloSignals"): + helloSignals = Engine.get_singleton("HelloSignals") + helloSignals.connect("TikTok", self, "_on_tiktok") + + $Button.connect("pressed", self, "_on_Button_pressed") + else: + print("Couldn't find HelloSignals singleton") + + +func _on_tiktok(): + print("TikTok signal received") + timerCount = timerCount + 1 + $Label.text = str(timerCount) + +func _on_Button_pressed(): + print("on button pressed from GDScript") + helloSignals.onButtonPressed() + timerRunning = !timerRunning + if (timerRunning): + $Button.text = "Stop Timer" + else: + $Button.text = "Start Timer" |