mirror of
https://github.com/Relintai/material-maker.git
synced 2024-11-13 06:27:18 +01:00
95a737029a
Started adding the "remote" node, that can control important parameters of the graph and save/restore configurations of groups of parameters. This should help creating easily configurable materials. Added new "mosaic" example
21 lines
396 B
GDScript
21 lines
396 B
GDScript
tool
|
|
extends WindowDialog
|
|
|
|
signal ok
|
|
|
|
func _ready():
|
|
pass
|
|
|
|
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()
|