forked from GDQuest/learn-gdscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUICore.tscn
56 lines (46 loc) · 1.64 KB
/
UICore.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
[gd_scene load_steps=8 format=2]
[ext_resource path="res://ui/screens/welcome_screen/WelcomeScreen.tscn" type="PackedScene" id=1]
[ext_resource path="res://ui/theme/gdscript_app_theme.tres" type="Theme" id=2]
[ext_resource path="res://ui/LoadingScreen.tscn" type="PackedScene" id=3]
[ext_resource path="res://ui/UICore.gd" type="Script" id=4]
[ext_resource path="res://ui/components/popups/ReportFormPopup.tscn" type="PackedScene" id=5]
[ext_resource path="res://ui/components/popups/SettingsPopup.tscn" type="PackedScene" id=6]
[ext_resource path="res://ui/screens/end_screen/EndScreen.tscn" type="PackedScene" id=7]
[node name="UICore" type="Control"]
pause_mode = 2
anchor_right = 1.0
anchor_bottom = 1.0
mouse_filter = 2
theme = ExtResource( 2 )
script = ExtResource( 4 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Pages" type="Control" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
mouse_filter = 2
[node name="WelcomeScreen" parent="Pages" instance=ExtResource( 1 )]
visible = false
mouse_filter = 2
[node name="SettingsScreen" type="MarginContainer" parent="Pages"]
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
mouse_filter = 2
[node name="CourseScreen" type="Control" parent="Pages"]
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
mouse_filter = 2
[node name="EndScreen" parent="Pages" instance=ExtResource( 7 )]
visible = false
mouse_filter = 2
[node name="LoadingScreen" parent="Pages" instance=ExtResource( 3 )]
mouse_filter = 2
[node name="ReportFormPopup" parent="." instance=ExtResource( 5 )]
visible = false
mouse_filter = 2
[node name="SettingsPopup" parent="." instance=ExtResource( 6 )]
visible = false
mouse_filter = 2