challenge-editor/autoload/toast/script/toast.gd

11 lines
160 B
GDScript3
Raw Normal View History

2024-11-18 11:13:00 +08:00
extends PanelContainer
func set_text(str:String):
$Label.text=str
func _on_timer_timeout() -> void:
self.queue_free()
pass # Replace with function body.