mirror of
https://github.com/Relintai/material-maker.git
synced 2024-12-23 21:16:54 +01:00
11 lines
141 B
GDScript3
11 lines
141 B
GDScript3
|
extends WindowDialog
|
||
|
|
||
|
signal ok
|
||
|
|
||
|
func _ready():
|
||
|
pass
|
||
|
|
||
|
func _on_OK_pressed():
|
||
|
emit_signal("ok", $VBoxContainer/LineEdit.text)
|
||
|
queue_free()
|