mirror of
https://github.com/Relintai/material-maker.git
synced 2024-11-13 06:27:18 +01:00
ba016797e3
Added a noise node (paints randomly pixels in black or white). Modified blur so direction can be selected (horizontal, verticla, or both). Updated code to use string formats instead of conversion + concatenation.
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()
|