forked from GDQuest/learn-gdscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLoadingScreen.tscn
74 lines (65 loc) · 2.02 KB
/
LoadingScreen.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
[gd_scene load_steps=7 format=2]
[ext_resource path="res://ui/theme/panel_darker_with_shadow.tres" type="StyleBox" id=1]
[ext_resource path="res://ui/icons/loading_splash.png" type="Texture" id=2]
[ext_resource path="res://ui/theme/gdscript_app_theme.tres" type="Theme" id=3]
[ext_resource path="res://ui/theme/progress_simple_background.tres" type="StyleBox" id=4]
[ext_resource path="res://ui/theme/progress_simple_foreground.tres" type="StyleBox" id=5]
[ext_resource path="res://ui/LoadingScreen.gd" type="Script" id=6]
[node name="LoadingScreen" type="PanelContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
theme = ExtResource( 3 )
script = ExtResource( 6 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="ClearColor" type="ColorRect" parent="."]
margin_right = 1920.0
margin_bottom = 1080.0
color = Color( 0.188235, 0.188235, 0.286275, 1 )
[node name="MarginContainer" type="MarginContainer" parent="."]
margin_right = 1920.0
margin_bottom = 1080.0
[node name="BackgroundPanel" type="Panel" parent="MarginContainer"]
margin_left = 20.0
margin_top = 20.0
margin_right = 1900.0
margin_bottom = 1060.0
custom_styles/panel = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="SplashTexture" type="TextureRect" parent="MarginContainer"]
margin_left = 20.0
margin_top = 20.0
margin_right = 1900.0
margin_bottom = 1060.0
size_flags_vertical = 3
texture = ExtResource( 2 )
expand = true
stretch_mode = 4
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Control" type="Control" parent="MarginContainer"]
margin_left = 20.0
margin_top = 20.0
margin_right = 1900.0
margin_bottom = 1060.0
[node name="ProgressBar" type="ProgressBar" parent="MarginContainer/Control"]
anchor_left = 0.25
anchor_top = 0.85
anchor_right = 0.75
anchor_bottom = 0.85
grow_horizontal = 2
grow_vertical = 2
rect_min_size = Vector2( 0, 24 )
custom_styles/fg = ExtResource( 5 )
custom_styles/bg = ExtResource( 4 )
max_value = 1.0
value = 0.5
percent_visible = false
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Tween" type="Tween" parent="."]