7 lines
124 B
GDScript3
7 lines
124 B
GDScript3
|
extends Label
|
||
|
|
||
|
|
||
|
func _process(delta: float) -> void:
|
||
|
if Global.time > Global.timelimit:
|
||
|
set_text("You are out of fuel");
|