mirror of
https://github.com/Relintai/material-maker.git
synced 2024-11-13 06:27:18 +01:00
21 lines
428 B
GDScript
21 lines
428 B
GDScript
tool
|
|
extends WindowDialog
|
|
|
|
signal ok
|
|
|
|
func set_value(v):
|
|
$VBoxContainer/LineEdit.text = v
|
|
|
|
func set_texts(title, label):
|
|
window_title = title
|
|
$VBoxContainer/Label.text = label
|
|
$VBoxContainer/LineEdit.grab_focus()
|
|
$VBoxContainer/LineEdit.grab_click_focus()
|
|
|
|
func _on_OK_pressed():
|
|
_on_LineEdit_text_entered($VBoxContainer/LineEdit.text)
|
|
|
|
func _on_LineEdit_text_entered(new_text):
|
|
emit_signal("ok", new_text)
|
|
queue_free()
|