material-maker/addons/material_maker/widgets/linked_widgets/linked_control_buttons.gd
RodZill4 95a737029a Started adding the "remote node"
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
2018-09-08 12:25:28 +02:00

16 lines
253 B
GDScript

tool
extends HBoxContainer
var control = null
func _ready():
# Called when the node is added to the scene for the first time.
# Initialization here
pass
func _on_Link_pressed():
control.pick_linked()
func _on_Remove_pressed():
control.delete()