mirror of
https://github.com/Steffo99/cinnos.git
synced 2024-11-22 16:14:19 +00:00
12 lines
237 B
GDScript3
12 lines
237 B
GDScript3
|
extends MarginContainer
|
||
|
|
||
|
|
||
|
func display(s: String, t: float):
|
||
|
$Panel/HBoxContainer/RichTextLabel.show()
|
||
|
$Panel/HBoxContainer/RichTextLabel.text = s
|
||
|
$Timer.start(t)
|
||
|
|
||
|
|
||
|
func _on_timer_timeout():
|
||
|
$Panel/HBoxContainer/RichTextLabel.hide()
|