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
|
[gd_scene load_steps=5 format=3 uid="uid://ceex0cpjrb81p"]
[ext_resource type="Script" uid="uid://dsg537e6dc68" path="res://gui/overlays/controls_visualization/controller/controller_explanation.gd" id="1_n0s1n"]
[ext_resource type="FontVariation" uid="uid://cl6m4hqsnrpav" path="res://gui/resources/fonts/sansita-swashed-bold.tres" id="2_ewgm4"]
[ext_resource type="Texture2D" uid="uid://cf8hrxilqe2ih" path="res://gui/overlays/controls_visualization/arrow.svg" id="3_565r1"]
[ext_resource type="Texture2D" uid="uid://doo07i13vtb34" path="res://gui/overlays/controls_visualization/controller/controller.svg" id="5_nalwd"]
[node name="ControllerExplanation" type="Control"]
custom_minimum_size = Vector2(0, 450)
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
offset_bottom = -270.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_n0s1n")
[node name="Control" type="Control" parent="."]
layout_mode = 1
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
grow_horizontal = 2
grow_vertical = 2
[node name="Node2D" type="Node2D" parent="Control"]
position = Vector2(0, 50)
[node name="Controller" type="Sprite2D" parent="Control/Node2D"]
scale = Vector2(0.4, 0.4)
texture = ExtResource("5_nalwd")
[node name="Arrow" type="Sprite2D" parent="Control/Node2D"]
position = Vector2(-250, -150)
rotation = 1.5707964
scale = Vector2(0.5, 0.5)
texture = ExtResource("3_565r1")
[node name="Arrow4" type="Sprite2D" parent="Control/Node2D"]
position = Vector2(45, -150)
scale = Vector2(0.5, -0.5)
texture = ExtResource("3_565r1")
[node name="Arrow2" type="Sprite2D" parent="Control/Node2D"]
position = Vector2(260, -140)
rotation = 1.5707963
scale = Vector2(0.5, -0.5)
texture = ExtResource("3_565r1")
[node name="Arrow3" type="Sprite2D" parent="Control/Node2D"]
position = Vector2(215, 20)
rotation = -1.5707964
scale = Vector2(0.5, 0.5)
texture = ExtResource("3_565r1")
[node name="Move" type="Node2D" parent="Control/Node2D"]
position = Vector2(-330, -175)
[node name="Label" type="Label" parent="Control/Node2D/Move"]
anchors_preset = 6
anchor_left = 1.0
anchor_top = 0.5
anchor_right = 1.0
anchor_bottom = 0.5
offset_left = -549.0
offset_top = -24.5
offset_bottom = 24.5
grow_horizontal = 0
grow_vertical = 2
theme_override_fonts/font = ExtResource("2_ewgm4")
theme_override_font_sizes/font_size = 40
text = "c.controls_explanation.move"
horizontal_alignment = 2
[node name="Boost" type="Node2D" parent="Control/Node2D"]
position = Vector2(335, -165)
[node name="Label" type="Label" parent="Control/Node2D/Boost"]
anchors_preset = 4
anchor_top = 0.5
anchor_bottom = 0.5
offset_top = -24.5
offset_right = 549.0
offset_bottom = 24.5
grow_vertical = 2
theme_override_fonts/font = ExtResource("2_ewgm4")
theme_override_font_sizes/font_size = 40
text = "c.controls_explanation.boost"
[node name="InteractRight" type="Node2D" parent="Control/Node2D"]
position = Vector2(290, 25)
[node name="Label" type="Label" parent="Control/Node2D/InteractRight"]
anchors_preset = 4
anchor_top = 0.5
anchor_bottom = 0.5
offset_top = -24.5
offset_right = 549.0
offset_bottom = 24.5
grow_vertical = 2
theme_override_fonts/font = ExtResource("2_ewgm4")
theme_override_font_sizes/font_size = 40
text = "c.controls_explanation.interact_right"
[node name="InteractLeft" type="Node2D" parent="Control/Node2D"]
position = Vector2(20, -250)
[node name="Label" type="Label" parent="Control/Node2D/InteractLeft"]
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -274.5
offset_top = -24.5
offset_right = 274.5
offset_bottom = 24.5
grow_horizontal = 2
grow_vertical = 2
theme_override_fonts/font = ExtResource("2_ewgm4")
theme_override_font_sizes/font_size = 40
text = "c.controls_explanation.interact_left"
horizontal_alignment = 1
|