summaryrefslogtreecommitdiff
path: root/hello_signals/demo/Main.gd
diff options
context:
space:
mode:
authorFredia Huya-Kouadio <fhuya@meta.com>2023-07-14 13:46:24 -0700
committerFredia Huya-Kouadio <fhuya@meta.com>2023-07-14 13:46:24 -0700
commitb4844e98619766232645d70f80a29c2a53bc2709 (patch)
tree500a6deee2dfbd36f4356d69a2d5cb762314b03f /hello_signals/demo/Main.gd
parent1d19d5912d1ac5bfa3cf6cc30f086aee8f0464f2 (diff)
downloadgodot-android-samples-b4844e98619766232645d70f80a29c2a53bc2709.tar.gz
godot-android-samples-b4844e98619766232645d70f80a29c2a53bc2709.tar.bz2
godot-android-samples-b4844e98619766232645d70f80a29c2a53bc2709.zip
Update the directory structure to make room for additional Godot Android samples besides plugins
Diffstat (limited to 'hello_signals/demo/Main.gd')
-rw-r--r--hello_signals/demo/Main.gd27
1 files changed, 0 insertions, 27 deletions
diff --git a/hello_signals/demo/Main.gd b/hello_signals/demo/Main.gd
deleted file mode 100644
index 2dca0db..0000000
--- a/hello_signals/demo/Main.gd
+++ /dev/null
@@ -1,27 +0,0 @@
-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"