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