-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathResearchPanel.tscn
92 lines (78 loc) · 2.48 KB
/
ResearchPanel.tscn
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
80
81
82
83
84
85
86
87
88
89
90
91
92
[gd_scene load_steps=3 format=2]
[ext_resource path="res://theme.tres" type="Theme" id=1]
[ext_resource path="res://scripts/ResearchPanel.gd" type="Script" id=2]
[node name="ResearchPanel" type="PanelContainer"]
visible = false
margin_right = 14.0
margin_bottom = 14.0
mouse_filter = 1
theme = ExtResource( 1 )
script = ExtResource( 2 )
[node name="VBoxContainer" type="VBoxContainer" parent="."]
margin_left = 7.0
margin_top = 7.0
margin_right = 278.0
margin_bottom = 113.0
size_flags_vertical = 3
[node name="Label" type="Label" parent="VBoxContainer"]
margin_right = 271.0
margin_bottom = 19.0
mouse_filter = 1
text = "Research"
align = 1
[node name="NumActionsContainer" type="HSplitContainer" parent="VBoxContainer"]
margin_top = 23.0
margin_right = 271.0
margin_bottom = 48.0
mouse_filter = 1
dragger_visibility = 1
[node name="NumActionsLabel" type="Label" parent="VBoxContainer/NumActionsContainer"]
margin_top = 3.0
margin_right = 182.0
margin_bottom = 22.0
mouse_filter = 1
text = "Number of Actions (£10)"
[node name="NumActionsButton" type="Button" parent="VBoxContainer/NumActionsContainer"]
margin_left = 194.0
margin_right = 271.0
margin_bottom = 25.0
mouse_filter = 1
text = "Increase"
[node name="TurretDamageContainer" type="HSplitContainer" parent="VBoxContainer"]
margin_top = 52.0
margin_right = 271.0
margin_bottom = 77.0
mouse_filter = 1
dragger_visibility = 1
[node name="TurretDamageLabel" type="Label" parent="VBoxContainer/TurretDamageContainer"]
margin_top = 3.0
margin_right = 183.0
margin_bottom = 22.0
mouse_filter = 1
text = "Damage of Turrets (£20)"
[node name="TurretDamageButton" type="Button" parent="VBoxContainer/TurretDamageContainer"]
margin_left = 195.0
margin_right = 271.0
margin_bottom = 25.0
mouse_filter = 1
text = "Increase"
[node name="TurretRangeContainer" type="HSplitContainer" parent="VBoxContainer"]
margin_top = 81.0
margin_right = 271.0
margin_bottom = 106.0
mouse_filter = 1
dragger_visibility = 1
[node name="TurretRangeLabel" type="Label" parent="VBoxContainer/TurretRangeContainer"]
margin_top = 3.0
margin_right = 169.0
margin_bottom = 22.0
mouse_filter = 1
text = "Range of Turrets (£20)"
[node name="TurretRangeButton" type="Button" parent="VBoxContainer/TurretRangeContainer"]
margin_left = 181.0
margin_right = 271.0
margin_bottom = 25.0
mouse_filter = 1
text = "Increase"
[connection signal="mouse_entered" from="." to="." method="_on_ResearchPanel_mouse_entered"]
[connection signal="mouse_exited" from="." to="." method="_on_ResearchPanel_mouse_exited"]