-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ending.tscn
133 lines (113 loc) · 3.64 KB
/
Ending.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
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
127
128
129
130
131
132
133
[gd_scene load_steps=15 format=2]
[ext_resource path="res://Ending.gd" type="Script" id=1]
[ext_resource path="res://Image.tscn" type="PackedScene" id=2]
[ext_resource path="res://assets/fonts/PermanentMarker-Regular.ttf" type="DynamicFontData" id=3]
[ext_resource path="res://assets/intro/outro_2.jpeg" type="Texture" id=4]
[ext_resource path="res://assets/intro/outro_3.jpg" type="Texture" id=5]
[ext_resource path="res://assets/fonts/8-BIT WONDER.TTF" type="DynamicFontData" id=6]
[ext_resource path="res://assets/audio/intro.ogg" type="AudioStream" id=7]
[ext_resource path="res://assets/audio/easter.ogg" type="AudioStream" id=8]
[sub_resource type="ImageTexture" id=3]
[sub_resource type="DynamicFont" id=4]
size = 90
font_data = ExtResource( 3 )
[sub_resource type="DynamicFont" id=5]
size = 200
font_data = ExtResource( 3 )
[sub_resource type="DynamicFont" id=6]
size = 150
outline_size = 20
outline_color = Color( 0, 0, 0, 1 )
font_data = ExtResource( 6 )
[sub_resource type="Animation" id=1]
length = 2.0
tracks/0/type = "value"
tracks/0/path = NodePath(".:volume_db")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/keys = {
"times": PoolRealArray( 0, 2 ),
"transitions": PoolRealArray( 1, 0.267943 ),
"update": 0,
"values": [ -80.0, -6.0 ]
}
[sub_resource type="Animation" id=2]
length = 4.0
tracks/0/type = "value"
tracks/0/path = NodePath(".:volume_db")
tracks/0/interp = 2
tracks/0/loop_wrap = true
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/keys = {
"times": PoolRealArray( 0, 3.9 ),
"transitions": PoolRealArray( 1, 0.267943 ),
"update": 0,
"values": [ -80.0, -6.0 ]
}
[node name="Ending" type="Node2D"]
script = ExtResource( 1 )
[node name="ColorRect" type="ColorRect" parent="."]
margin_left = -2930.0
margin_top = -1580.0
margin_right = 3051.0
margin_bottom = 1780.0
color = Color( 0, 0, 0, 1 )
[node name="Image1" parent="." instance=ExtResource( 2 )]
position = Vector2( 960, 540 )
texture = SubResource( 3 )
is_visible = true
[node name="Label" type="Label" parent="Image1"]
margin_left = -945.0
margin_right = 955.0
margin_bottom = 129.0
custom_fonts/font = SubResource( 4 )
text = "where am i...?"
align = 1
[node name="Image2" parent="." instance=ExtResource( 2 )]
position = Vector2( 960, 540 )
texture = ExtResource( 4 )
[node name="Image3" parent="." instance=ExtResource( 2 )]
position = Vector2( 960, 540 )
texture = ExtResource( 5 )
[node name="Label2" type="Label" parent="Image3"]
margin_left = -830.748
margin_top = -510.918
margin_right = 1069.25
margin_bottom = -224.918
custom_fonts/font = SubResource( 5 )
custom_colors/font_color = Color( 0, 0, 0, 1 )
custom_constants/shadow_offset_x = -20
custom_constants/shadow_offset_y = -5
text = "!"
[node name="Label3" type="Label" parent="Image3"]
margin_left = -504.22
margin_top = 347.714
margin_right = 1395.78
margin_bottom = 633.714
custom_fonts/font = SubResource( 6 )
custom_colors/font_color = Color( 1, 1, 1, 1 )
custom_constants/shadow_offset_x = -20
custom_constants/shadow_offset_y = -5
text = "THE END"
align = 1
[node name="Camera2D" type="Camera2D" parent="."]
anchor_mode = 0
current = true
[node name="Audio" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 7 )
volume_db = -80.0
autoplay = true
[node name="Anim" type="AnimationPlayer" parent="Audio"]
anims/fade_in = SubResource( 1 )
anims/fade_out = SubResource( 2 )
[node name="Audio2" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 8 )
volume_db = -6.0
[node name="EasterEggTimeout" type="Timer" parent="."]
wait_time = 21.0
one_shot = true
autostart = true
[connection signal="timeout" from="EasterEggTimeout" to="." method="_on_EasterEggTimeout_timeout"]