material-maker/addons/material_maker/widgets/line_dialog.gd
RodZill4 1c56fc60d8 Cleanup and renaming
Moved Material Spray to another repository.
Renamed the addon directory to material_maker
2018-09-03 21:35:44 +02:00

12 lines
146 B
GDScript

tool
extends WindowDialog
signal ok
func _ready():
pass
func _on_OK_pressed():
emit_signal("ok", $VBoxContainer/LineEdit.text)
queue_free()