-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetting.tscn
More file actions
75 lines (60 loc) · 2.95 KB
/
Copy pathsetting.tscn
File metadata and controls
75 lines (60 loc) · 2.95 KB
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
[gd_scene load_steps=5 format=3 uid="uid://bni2lj3810qtb"]
[ext_resource type="StyleBox" uid="uid://b7xomye4t7xcc" path="res://panel_grey_style_box_flat.tres" id="1_a42w7"]
[ext_resource type="Script" uid="uid://bj85u5jxwylrm" path="res://setting.gd" id="1_q554q"]
[ext_resource type="PackedScene" uid="uid://b3eyhfc1nbaj" path="res://file_selector.tscn" id="2_110nh"]
[ext_resource type="Script" uid="uid://dxlfrh4iiwt4s" path="res://v_box_container.gd" id="3_twti6"]
[node name="Control" type="Control"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_q554q")
[node name="Panel" type="Panel" parent="."]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
theme_override_styles/panel = ExtResource("1_a42w7")
[node name="VBoxContainer" type="VBoxContainer" parent="Panel"]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
[node name="MainPanelContainer" type="PanelContainer" parent="Panel/VBoxContainer"]
layout_mode = 2
[node name="VBoxContainer" type="VBoxContainer" parent="Panel/VBoxContainer/MainPanelContainer"]
layout_mode = 2
[node name="Label" type="Label" parent="Panel/VBoxContainer/MainPanelContainer/VBoxContainer"]
layout_mode = 2
text = "Main JSON Path"
horizontal_alignment = 1
[node name="main_file_selector" parent="Panel/VBoxContainer/MainPanelContainer/VBoxContainer" instance=ExtResource("2_110nh")]
layout_mode = 2
[node name="Label2" type="Label" parent="Panel/VBoxContainer/MainPanelContainer/VBoxContainer"]
layout_mode = 2
text = "Main Image Path"
horizontal_alignment = 1
[node name="main_image_file_selector" parent="Panel/VBoxContainer/MainPanelContainer/VBoxContainer" instance=ExtResource("2_110nh")]
layout_mode = 2
[node name="ModPanelContainer" type="PanelContainer" parent="Panel/VBoxContainer"]
layout_mode = 2
[node name="VBoxContainer" type="VBoxContainer" parent="Panel/VBoxContainer/ModPanelContainer"]
layout_mode = 2
script = ExtResource("3_twti6")
[node name="Label" type="Label" parent="Panel/VBoxContainer/ModPanelContainer/VBoxContainer"]
layout_mode = 2
text = "Mod Path"
horizontal_alignment = 1
[node name="Button" type="Button" parent="Panel/VBoxContainer/ModPanelContainer/VBoxContainer"]
layout_mode = 2
text = "Add More"
[connection signal="on_dir_changed" from="Panel/VBoxContainer/MainPanelContainer/VBoxContainer/main_file_selector" to="." method="_on_dir_changed"]
[connection signal="on_dir_changed" from="Panel/VBoxContainer/MainPanelContainer/VBoxContainer/main_image_file_selector" to="." method="_on_dir_changed"]
[connection signal="on_dir_changed" from="Panel/VBoxContainer/ModPanelContainer/VBoxContainer" to="." method="_on_dir_changed"]
[connection signal="pressed" from="Panel/VBoxContainer/ModPanelContainer/VBoxContainer/Button" to="Panel/VBoxContainer/ModPanelContainer/VBoxContainer" method="_on_button_pressed"]