6 lines
102 B
GDScript
6 lines
102 B
GDScript
extends Label
|
|
|
|
|
|
func _ready():
|
|
if Global.time > Global.timelimit:
|
|
set_text("You are out of fuel");
|