11 lines
274 B
GDScript
11 lines
274 B
GDScript
extends Control
|
|
|
|
func _ready() -> void:
|
|
|
|
##Reveal the mouse so buttons may be clicked!
|
|
Input.mouse_mode = Input.MOUSE_MODE_VISIBLE
|
|
|
|
self.find_child("Message").text = Global.message #"Thank you. Play again!"
|
|
|
|
self.find_child("Score").text = Global.final_score #"100%"
|