mirror of
https://github.com/Relintai/mat_maker_gd.git
synced 2025-04-26 18:54:57 +02:00
7 lines
138 B
GDScript
7 lines
138 B
GDScript
extends Popup
|
|
|
|
func show_code(text : String) -> void:
|
|
$TextEdit.text = text
|
|
connect("popup_hide", self, "queue_free")
|
|
popup_centered()
|