summaryrefslogtreecommitdiff
path: root/combinator_panel.tscn
blob: db54e82894572248ba1b1e51ba48ea6e69ae0ce7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[gd_scene load_steps=5 format=2]

[ext_resource path="res://scripts/combinator_panel.gd" type="Script" id=1]
[ext_resource path="res://assets/plus.png" type="Texture" id=2]
[ext_resource path="res://assets/minus.png" type="Texture" id=3]
[ext_resource path="res://assets/storage.png" type="Texture" id=4]

[node name="CombinatorPanel" type="Panel"]

margin_right = 400.0
margin_bottom = 400.0
rect_clip_content = false
mouse_filter = 0
script = ExtResource( 1 )

[node name="tree" type="Tree" parent="."]

margin_left = 10.0
margin_top = 10.0
margin_right = 340.0
margin_bottom = 390.0
mouse_filter = 0

[node name="add" type="Button" parent="."]

margin_left = 350.0
margin_top = 210.0
margin_right = 394.0
margin_bottom = 290.0
rect_clip_content = false
mouse_filter = 0
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
group = null
icon = ExtResource( 2 )
flat = false

[node name="remove" type="Button" parent="."]

margin_left = 350.0
margin_top = 310.0
margin_right = 394.0
margin_bottom = 390.0
rect_clip_content = false
mouse_filter = 0
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
group = null
icon = ExtResource( 3 )
flat = false

[node name="storage" type="Button" parent="."]

margin_left = 350.0
margin_top = 20.0
margin_right = 396.0
margin_bottom = 193.0
rect_clip_content = false
mouse_filter = 0
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
group = null
text = "Storage"
icon = ExtResource( 4 )
flat = false
clip_text = true

[connection signal="gui_input" from="tree" to="." method="_on_Tree_gui_input"]

[connection signal="pressed" from="add" to="." method="_on_add_pressed"]

[connection signal="pressed" from="remove" to="." method="_on_remove_pressed"]

[connection signal="pressed" from="storage" to="." method="_on_storage_pressed"]