summaryrefslogtreecommitdiff
path: root/plugins/hello_signals/demo/Main.gd
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/hello_signals/demo/Main.gd')
-rw-r--r--plugins/hello_signals/demo/Main.gd27
1 files changed, 27 insertions, 0 deletions
diff --git a/plugins/hello_signals/demo/Main.gd b/plugins/hello_signals/demo/Main.gd
new file mode 100644
index 0000000..2dca0db
--- /dev/null
+++ b/plugins/hello_signals/demo/Main.gd
@@ -0,0 +1,27 @@
+extends Node2D
+
+var timerCount = 0
+var timerRunning = false
+var helloSignalsPlugin : HelloSignalsPlugin
+
+func _ready():
+ helloSignalsPlugin = preload("res://addons/hello_signals_plugin/interface/hello_signals_plugin.gd").new()
+ helloSignalsPlugin.registerForTikTok(Callable(self, "_on_tiktok"))
+
+ $Button.connect("pressed", Callable(self, "_on_Button_pressed"))
+
+
+func _on_tiktok():
+ print("TikTok signal received")
+ timerCount = timerCount + 1
+ $Label.text = str(timerCount)
+
+
+func _on_Button_pressed():
+ print("on button pressed from GDScript")
+ helloSignalsPlugin.toggleTikTok()
+ timerRunning = !timerRunning
+ if (timerRunning):
+ $Button.text = "Stop Timer"
+ else:
+ $Button.text = "Start Timer"