mirror of
https://github.com/Relintai/material-maker.git
synced 2024-11-13 06:27:18 +01:00
93c84650cd
This also simplifies some functions. This partially addresses #30.
18 lines
286 B
GDScript
18 lines
286 B
GDScript
tool
|
|
extends WindowDialog
|
|
|
|
signal ok
|
|
|
|
func _ready() -> void:
|
|
popup()
|
|
|
|
func set_title(title) -> void:
|
|
window_title = title
|
|
|
|
func set_text(text) -> void:
|
|
$VBoxContainer/TextEdit.text = text
|
|
|
|
func _on_OK_pressed() -> void:
|
|
emit_signal("ok", $VBoxContainer/TextEdit.text)
|
|
queue_free()
|