-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRoot.tscn
82 lines (68 loc) · 3.07 KB
/
Root.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
[gd_scene load_steps=13 format=3 uid="uid://cnmfd6ykt8478"]
[ext_resource type="Script" path="res://Scripts/References.cs" id="1_6dgfe"]
[ext_resource type="PackedScene" uid="uid://b2nyaalwl062r" path="res://Scenes/Screen/Menu/MainMenu.tscn" id="2_b0ydb"]
[ext_resource type="Script" path="res://Scripts/Game.cs" id="3_xvfls"]
[ext_resource type="Script" path="res://Scripts/Containers/WorldContainer.cs" id="4_4bkf2"]
[ext_resource type="Script" path="res://Scripts/Services/EventBus.cs" id="4_fngmn"]
[ext_resource type="Script" path="res://Scripts/Services/ModLoader/ModLoader.cs" id="5_4g8yw"]
[ext_resource type="Script" path="res://Scripts/Containers/BackgroundContainer.cs" id="5_6in4s"]
[ext_resource type="Script" path="res://Scripts/Containers/HudContainer.cs" id="6_gfpjn"]
[ext_resource type="Script" path="res://Scripts/Services/Audio.cs" id="6_ytpm1"]
[ext_resource type="Script" path="res://Scripts/Containers/MenuContainer.cs" id="7_u10qh"]
[ext_resource type="Script" path="res://Scripts/Containers/ForegroundContainer.cs" id="8_lofju"]
[ext_resource type="Script" path="res://Scripts/ServiceProvider.cs" id="9_5kdtw"]
[node name="Root" type="Node"]
[node name="References" type="Node" parent="." node_paths=PackedStringArray("WorldContainer", "BackgroundContainer", "HudContainer", "MenuContainer", "ForegroundContainer")]
script = ExtResource("1_6dgfe")
WorldContainer = NodePath("../Game/WorldContainer")
BackgroundContainer = NodePath("../Game/Screen/BackgroundContainer")
HudContainer = NodePath("../Game/Screen/HudContainer")
MenuContainer = NodePath("../Game/Screen/MenuContainer")
ForegroundContainer = NodePath("../Game/Screen/ForegroundContainer")
FirstScene = ExtResource("2_b0ydb")
[node name="Services" type="Node" parent="."]
script = ExtResource("9_5kdtw")
[node name="EventBus" type="Node" parent="Services"]
script = ExtResource("4_fngmn")
[node name="ModLoader" type="Node" parent="Services"]
script = ExtResource("5_4g8yw")
[node name="Audio" type="Node" parent="Services"]
script = ExtResource("6_ytpm1")
[node name="Game" type="Node2D" parent="."]
script = ExtResource("3_xvfls")
[node name="WorldContainer" type="Node2D" parent="Game"]
script = ExtResource("4_4bkf2")
[node name="Screen" type="CanvasLayer" parent="Game"]
[node name="BackgroundContainer" type="Control" parent="Game/Screen"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("5_6in4s")
[node name="HudContainer" type="Control" parent="Game/Screen"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("6_gfpjn")
[node name="MenuContainer" type="Control" parent="Game/Screen"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("7_u10qh")
[node name="ForegroundContainer" type="Control" parent="Game/Screen"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
mouse_filter = 2
script = ExtResource("8_lofju")