mirror of
https://github.com/Steffo99/cinnos.git
synced 2024-11-21 23:54:20 +00:00
12 lines
202 B
GDScript
12 lines
202 B
GDScript
extends MarginContainer
|
|
class_name TextBox
|
|
|
|
|
|
func display(s: String, t: float):
|
|
show()
|
|
$Panel/HBoxContainer/MarginContainer/RichTextLabel.text = s
|
|
$Timer.start(t)
|
|
|
|
|
|
func _on_timer_timeout():
|
|
hide()
|