blob: 1b3e972d259c915911af53db8c0de7042350fc7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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", Callable(self, "_on_tiktok"))
$Button.connect("pressed", Callable(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"
|