-
Notifications
You must be signed in to change notification settings - Fork 6
/
Main.tscn
156 lines (137 loc) · 4.25 KB
/
Main.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
[gd_scene load_steps=12 format=2]
[ext_resource path="res://editor.theme" type="Theme" id=1]
[ext_resource path="res://FileMenu.gd" type="Script" id=2]
[ext_resource path="res://characters/CharactersContainer.tscn" type="PackedScene" id=3]
[ext_resource path="res://equipment/EquipmentTab.tscn" type="PackedScene" id=4]
[ext_resource path="res://Main.gd" type="Script" id=5]
[ext_resource path="res://mod_selection/ModSettings.tscn" type="PackedScene" id=6]
[ext_resource path="res://texture_splitter/TextureSplitter.tscn" type="PackedScene" id=7]
[ext_resource path="res://enemies/EnemiesTab.tscn" type="PackedScene" id=8]
[ext_resource path="res://items/ItemTab.tscn" type="PackedScene" id=9]
[ext_resource path="res://status_effects/StatusEffectsTab.tscn" type="PackedScene" id=10]
[ext_resource path="res://scripts/ScriptsTab.tscn" type="PackedScene" id=11]
[node name="Main" type="PanelContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
mouse_filter = 2
theme = ExtResource( 1 )
script = ExtResource( 5 )
__meta__ = {
"_edit_use_anchors_": false
}
disable_tabs = 6
[node name="VBoxContainer" type="VBoxContainer" parent="."]
margin_left = 6.0
margin_top = 4.0
margin_right = 1274.0
margin_bottom = 716.0
[node name="HBoxContainer" type="HBoxContainer" parent="VBoxContainer"]
margin_right = 1268.0
margin_bottom = 28.0
[node name="FileMenu" type="MenuButton" parent="VBoxContainer/HBoxContainer"]
margin_right = 35.0
margin_bottom = 28.0
text = "File"
align = 0
switch_on_hover = true
script = ExtResource( 2 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="HelpMenu" type="MenuButton" parent="VBoxContainer/HBoxContainer"]
visible = false
margin_left = 39.0
margin_right = 82.0
margin_bottom = 28.0
text = "Help"
align = 0
items = [ "I don't know yet", null, 0, false, false, 0, 0, null, "", false ]
switch_on_hover = true
__meta__ = {
"_edit_use_anchors_": false
}
[node name="TabContainer" type="TabContainer" parent="VBoxContainer"]
margin_top = 32.0
margin_right = 1268.0
margin_bottom = 712.0
mouse_filter = 1
size_flags_horizontal = 3
size_flags_vertical = 3
tab_align = 0
__meta__ = {
"_edit_use_anchors_": true
}
[node name="Mod Selection" parent="VBoxContainer/TabContainer" instance=ExtResource( 6 )]
margin_left = 5.0
margin_top = 35.0
margin_right = -5.0
margin_bottom = -5.0
[node name="Enemies" parent="VBoxContainer/TabContainer" instance=ExtResource( 8 )]
visible = false
margin_left = 5.0
margin_top = 35.0
margin_right = -5.0
margin_bottom = -5.0
[node name="Equipment" parent="VBoxContainer/TabContainer" instance=ExtResource( 4 )]
visible = false
margin_left = 5.0
margin_top = 35.0
margin_right = -5.0
margin_bottom = -5.0
[node name="Skills" parent="VBoxContainer/TabContainer" instance=ExtResource( 9 )]
visible = false
margin_left = 5.0
margin_top = 35.0
margin_right = -5.0
margin_bottom = -5.0
[node name="Status Effects" parent="VBoxContainer/TabContainer" instance=ExtResource( 10 )]
visible = false
margin_left = 5.0
margin_top = 35.0
margin_right = -5.0
margin_bottom = -5.0
[node name="Characters" parent="VBoxContainer/TabContainer" instance=ExtResource( 3 )]
visible = false
margin_left = 5.0
margin_top = 35.0
margin_right = -5.0
margin_bottom = -5.0
[node name="Custom Scripts" parent="VBoxContainer/TabContainer" instance=ExtResource( 11 )]
visible = false
margin_left = 5.0
margin_top = 35.0
margin_right = -5.0
margin_bottom = -5.0
[node name="TextureSplitter" parent="VBoxContainer/TabContainer" instance=ExtResource( 7 )]
visible = false
margin_left = 5.0
margin_top = 35.0
margin_right = -5.0
margin_bottom = -5.0
[node name="ModifiedDataContainer" type="Control" parent="."]
visible = false
margin_left = 6.0
margin_top = 4.0
margin_right = 1274.0
margin_bottom = 716.0
mouse_filter = 2
[node name="Label" type="Label" parent="ModifiedDataContainer"]
anchor_left = 1.0
anchor_right = 1.0
margin_left = -1268.0
margin_bottom = 28.0
text = "Modified data"
align = 2
__meta__ = {
"_edit_use_anchors_": false
}
[node name="PopupBackground" type="ColorRect" parent="."]
visible = false
margin_left = 6.0
margin_top = 4.0
margin_right = 1274.0
margin_bottom = 716.0
color = Color( 0.129412, 0.129412, 0.129412, 0.501961 )
[node name="SaveCheckTimer" type="Timer" parent="."]
autostart = true
[connection signal="timeout" from="SaveCheckTimer" to="." method="_on_SaveCheckTimer_timeout"]