mirror of
https://github.com/Relintai/material-maker.git
synced 2024-12-23 21:16:54 +01:00
37eb661496
Added simple functions to add nodes to the user library and save it. Added keyboard shortcuts for main menu.
11 lines
141 B
GDScript
11 lines
141 B
GDScript
extends WindowDialog
|
|
|
|
signal ok
|
|
|
|
func _ready():
|
|
pass
|
|
|
|
func _on_OK_pressed():
|
|
emit_signal("ok", $VBoxContainer/LineEdit.text)
|
|
queue_free()
|