-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdModLoader.tscn
More file actions
97 lines (75 loc) · 3.66 KB
/
dModLoader.tscn
File metadata and controls
97 lines (75 loc) · 3.66 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[gd_scene load_steps=12 format=3 uid="uid://oti78dguqr0u"]
[ext_resource type="Script" uid="uid://b8n2q2bgjpuwd" path="res://d_mod_loader.gd" id="1_lhvod"]
[ext_resource type="FontFile" uid="uid://h60fpjwv0jro" path="res://Monocraft-nerd-fonts-patched.ttc" id="1_v1kc6"]
[sub_resource type="Theme" id="Theme_lhvod"]
default_font = ExtResource("1_v1kc6")
[sub_resource type="Theme" id="Theme_2hgso"]
default_font = ExtResource("1_v1kc6")
[sub_resource type="Theme" id="Theme_2ifs5"]
default_font = ExtResource("1_v1kc6")
[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_2ifs5"]
[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_kd4cs"]
[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_s8jed"]
[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_lhvod"]
[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_2hgso"]
[sub_resource type="Theme" id="Theme_kd4cs"]
default_font = ExtResource("1_v1kc6")
[node name="Window" type="Window"]
title = "dModLoader"
position = Vector2i(0, 36)
size = Vector2i(1000, 500)
script = ExtResource("1_lhvod")
[node name="ui" type="VBoxContainer" parent="."]
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="SearchBar" type="LineEdit" parent="ui"]
layout_mode = 2
theme = SubResource("Theme_lhvod")
placeholder_text = "Search For Mods:"
[node name="Label" type="Label" parent="ui"]
layout_mode = 2
theme = SubResource("Theme_2hgso")
theme_override_colors/font_color = Color(0.433337, 1, 0.229506, 1)
text = "----------- Install Mods -----------"
horizontal_alignment = 1
[node name="ItemList" type="ItemList" parent="ui"]
layout_mode = 2
size_flags_vertical = 3
theme = SubResource("Theme_2ifs5")
theme_override_colors/font_color = Color(1, 1, 1, 1)
theme_override_styles/focus = SubResource("StyleBoxEmpty_2ifs5")
theme_override_styles/hovered_selected = SubResource("StyleBoxEmpty_kd4cs")
theme_override_styles/hovered_selected_focus = SubResource("StyleBoxEmpty_s8jed")
theme_override_styles/selected = SubResource("StyleBoxEmpty_lhvod")
theme_override_styles/selected_focus = SubResource("StyleBoxEmpty_2hgso")
item_count = 1
item_0/text = "Loading Please Wait...."
[node name="InstalledListLabel" type="Label" parent="ui"]
layout_mode = 2
theme = SubResource("Theme_kd4cs")
theme_override_colors/font_color = Color(0.433337, 1, 0.229506, 1)
text = "----------- Installed List -----------"
horizontal_alignment = 1
[node name="InstalledList" type="ItemList" parent="ui"]
layout_mode = 2
size_flags_vertical = 3
theme = SubResource("Theme_2ifs5")
theme_override_colors/font_color = Color(0.224572, 0.606268, 1.92523e-07, 1)
item_count = 1
item_0/text = "Loading Please Wait...."
[node name="SkriptRepo" type="HTTPRequest" parent="."]
[node name="SkriptDownloader" type="HTTPRequest" parent="."]
[node name="MapDownloader" type="HTTPRequest" parent="."]
[node name="SkriptMapDownloader" type="HTTPRequest" parent="."]
[connection signal="text_changed" from="ui/SearchBar" to="." method="_search_filter_submit"]
[connection signal="item_selected" from="ui/ItemList" to="." method="_on_item_list_item_selected"]
[connection signal="item_selected" from="ui/InstalledList" to="." method="_on_installed_list_selected"]
[connection signal="request_completed" from="SkriptRepo" to="." method="_on_request_completed"]
[connection signal="request_completed" from="SkriptDownloader" to="." method="_on_skript_downloader_request_completed"]
[connection signal="request_completed" from="MapDownloader" to="." method="_on_map_downloader_request_completed"]
[connection signal="request_completed" from="SkriptMapDownloader" to="." method="_on_skript_map_downloader_request_completed"]