2018-09-08 12:25:28 +02:00
|
|
|
[gd_scene load_steps=4 format=2]
|
|
|
|
|
|
|
|
[ext_resource path="res://addons/material_maker/widgets/linked_widgets/linked_control_buttons.gd" type="Script" id=1]
|
|
|
|
[ext_resource path="res://addons/material_maker/icons/link.png" type="Texture" id=2]
|
|
|
|
[ext_resource path="res://addons/material_maker/icons/remove.png" type="Texture" id=3]
|
|
|
|
|
2019-09-24 22:25:46 +02:00
|
|
|
[node name="Buttons" type="HBoxContainer"]
|
2018-09-08 12:25:28 +02:00
|
|
|
margin_right = 60.0
|
|
|
|
margin_bottom = 22.0
|
|
|
|
script = ExtResource( 1 )
|
|
|
|
|
2019-09-24 22:25:46 +02:00
|
|
|
[node name="Link" type="Button" parent="."]
|
2018-09-08 12:25:28 +02:00
|
|
|
margin_right = 28.0
|
|
|
|
margin_bottom = 22.0
|
2018-09-10 08:00:03 +02:00
|
|
|
hint_tooltip = "Link new parameter"
|
2018-09-08 12:25:28 +02:00
|
|
|
icon = ExtResource( 2 )
|
|
|
|
|
2019-09-24 22:25:46 +02:00
|
|
|
[node name="Remove" type="Button" parent="."]
|
2018-09-08 12:25:28 +02:00
|
|
|
margin_left = 32.0
|
|
|
|
margin_right = 60.0
|
|
|
|
margin_bottom = 22.0
|
2018-09-10 08:00:03 +02:00
|
|
|
hint_tooltip = "Delete this control"
|
2018-09-08 12:25:28 +02:00
|
|
|
icon = ExtResource( 3 )
|
|
|
|
[connection signal="pressed" from="Link" to="." method="_on_Link_pressed"]
|
|
|
|
[connection signal="pressed" from="Remove" to="." method="_on_Remove_pressed"]
|