11 lines
214 B
GDScript
Executable File
11 lines
214 B
GDScript
Executable File
extends RichTextLabel
|
|
|
|
func _process(delta):
|
|
match Globals.task:
|
|
0:
|
|
text = "Onions: %s/%s" % [Globals.onionsFound, Globals.onionsToFind]
|
|
1:
|
|
text = "Find the heart."
|
|
2:
|
|
text = "Give life to fiona."
|