1
Fork 0
mirror of https://github.com/Steffo99/cinnos.git synced 2024-11-22 08:04:20 +00:00
cinnos/TextBox.gd

11 lines
237 B
GDScript

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()