summaryrefslogtreecommitdiff
path: root/ui/start_screen.tscn
blob: 5b19aa39810271051c17d67bec1d47e03f40411e (plain)
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
[gd_scene load_steps=3 format=3 uid="uid://brfnvqsla72pn"]

[ext_resource type="Script" path="res://ui/start_screen.gd" id="1_bpjye"]
[ext_resource type="Theme" uid="uid://b067xhqktnmhr" path="res://ui/theme.tres" id="2_qfrkp"]

[node name="StartScreen" 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_bpjye")

[node name="ColorRect" type="ColorRect" parent="."]
layout_mode = 0
offset_right = 160.0
offset_bottom = 144.0
color = Color(0.419608, 0.65098, 0.290196, 1)

[node name="CenterContainer" type="CenterContainer" parent="."]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2

[node name="HBoxContainer" type="HBoxContainer" parent="CenterContainer"]
layout_mode = 2
theme_override_constants/separation = 2

[node name="Label" type="Label" parent="CenterContainer/HBoxContainer"]
texture_filter = 1
layout_mode = 2
theme = ExtResource("2_qfrkp")
text = "Starting in"

[node name="CountdownLabel" type="Label" parent="CenterContainer/HBoxContainer"]
unique_name_in_owner = true
texture_filter = 1
layout_mode = 2
theme = ExtResource("2_qfrkp")
text = "0"

[node name="CountdownTimer" type="Timer" parent="."]
unique_name_in_owner = true
one_shot = true

[connection signal="timeout" from="CountdownTimer" to="." method="_on_countdown_timer_timeout"]