mirror of
https://github.com/Cookie-CHR/OfficeMadness-LD51.git
synced 2024-11-23 15:14:18 +00:00
13 lines
185 B
GDScript3
13 lines
185 B
GDScript3
|
extends Timer
|
||
|
|
||
|
|
||
|
var seconds_passed
|
||
|
|
||
|
|
||
|
# Called when the node enters the scene tree for the first time.
|
||
|
func _ready():
|
||
|
seconds_passed = 0
|
||
|
|
||
|
func _on_Timer_timeout():
|
||
|
seconds_passed += 1
|