1
Fork 0
mirror of https://github.com/Cookie-CHR/OfficeMadness-LD51.git synced 2024-11-23 15:14:18 +00:00
office-madness/Scripts/TimePassed.gd

20 lines
241 B
GDScript3
Raw Permalink Normal View History

2022-10-02 23:31:44 +00:00
extends Timer
var seconds_passed
# Called when the node enters the scene tree for the first time.
func _ready():
2022-10-04 10:03:41 +00:00
_play()
2022-10-02 23:31:44 +00:00
func _on_Timer_timeout():
seconds_passed += 1
2022-10-04 10:03:41 +00:00
func _play():
seconds_passed = 0
start()
func _stop():
stop()