mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 22:15:39 +00:00
0308896940
On branch cooker Changes to be committed: modified: helper_text.gd modified: main.tscn modified: res/pixel_ui_theme/RetroDECKTheme.tres modified: retrodeck.json
15 lines
559 B
GDScript
15 lines
559 B
GDScript
extends RichTextLabel
|
|
|
|
@onready var helper_text_node = self
|
|
|
|
func _ready():
|
|
# Connect the signal that gets fired on every focus change
|
|
get_viewport().connect("gui_focus_changed", _on_focus_changed)
|
|
|
|
func _on_focus_changed(selected_element:Control) -> void:
|
|
if selected_element != null and selected_element.has_meta("description"):
|
|
helper_text_node.text = selected_element.get_meta("description")
|
|
else:
|
|
#helper_text_node.text = "Hey, there's no description"
|
|
helper_text_node.text = "That stupid Monkey almost deleted me.\n\n\nPlease save me!!!!!!!!"
|