1
Fork 0
mirror of https://github.com/Steffo99/cinnos.git synced 2024-11-22 16:14:19 +00:00
cinnos/TextBox.gd

12 lines
237 B
GDScript3
Raw Normal View History

2023-11-25 14:15:25 +00:00
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()