mirror of
https://github.com/Steffo99/cinnos.git
synced 2024-11-22 08:04:20 +00:00
12 lines
188 B
GDScript
12 lines
188 B
GDScript
extends Node
|
|
class_name GameTimer
|
|
|
|
|
|
var current_time := 0.0
|
|
|
|
@onready var parent: Label = get_parent()
|
|
|
|
|
|
func _process(delta):
|
|
current_time += delta
|
|
parent.text = "%0.2f" % current_time
|