summaryrefslogtreecommitdiff
path: root/plugins/hello_signals/demo/Main.gd
blob: db9499ba1b67d2974d372526f002c5eaa02aed0d (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
extends Node2D

var timerCount = 0
var timerRunning = false
var helloSignalsPlugin : HelloSignalsPlugin

func _ready():
	helloSignalsPlugin = preload("res://addons/hello_signals_plugin/hello_signals_plugin_interface.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"