-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLoading.tscn
38 lines (30 loc) · 1.11 KB
/
Loading.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
[gd_scene load_steps=7 format=2]
[ext_resource path="res://Title.tscn" type="PackedScene" id=1]
[ext_resource path="res://Background.tscn" type="PackedScene" id=2]
[ext_resource path="res://fonts/Roboto-Black.ttf" type="DynamicFontData" id=3]
[ext_resource path="res://Loading.gd" type="Script" id=4]
[ext_resource path="res://Settings.gd" type="Script" id=5]
[sub_resource type="DynamicFont" id=1]
size = 64
font_data = ExtResource( 3 )
[node name="Loading" type="Node2D"]
script = ExtResource( 4 )
Settings = ExtResource( 5 )
[node name="Background" parent="." instance=ExtResource( 2 )]
[node name="Title" parent="." instance=ExtResource( 1 )]
[node name="Label" type="Label" parent="."]
margin_left = 536.217
margin_top = 479.958
margin_right = 818.217
margin_bottom = 555.958
custom_fonts/font = SubResource( 1 )
custom_colors/font_color = Color( 0, 0, 0, 1 )
custom_colors/font_color_shadow = Color( 1, 1, 1, 1 )
text = "Loading…"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Timer" type="Timer" parent="."]
one_shot = true
autostart = true
[connection signal="timeout" from="Timer" to="." method="_on_timeout"]