platformer-game-test/src/HUD/PopupMessage.gd
Sagi Dayan 1c640fcd39 Added a main menu.
- Controls section still not implemented. Dont thing we need it at all
 - Need to add last best score + player name Maybe...
2020-09-27 16:42:40 -04:00

10 lines
175 B
GDScript

extends Node2D
export var text := "This is a sample text"
func _ready() -> void:
$CanvasLayer/Control/TextureRect/RichTextLabel.text = text
func dismiss():
queue_free()