mirror of
https://github.com/Relintai/material-maker.git
synced 2025-05-08 00:41:35 +02:00
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()
|