mirror of
https://github.com/Relintai/material-maker.git
synced 2024-11-13 06:27:18 +01:00
1c56fc60d8
Moved Material Spray to another repository. Renamed the addon directory to material_maker
12 lines
146 B
GDScript
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()
|