summaryrefslogtreecommitdiff
path: root/hello_signals/demo/Main.gd
blob: 22e5255b1d8841b527394d9fd9eefee57b5a37c3 (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", 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"