-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
logo.tscn
51 lines (43 loc) · 1.62 KB
/
logo.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
[gd_scene load_steps=10 format=2]
[ext_resource path="res://logo.gd" type="Script" id=1]
[ext_resource path="res://Background/background.png" type="Texture" id=2]
[ext_resource path="res://logo/logo (1).png" type="Texture" id=3]
[ext_resource path="res://logo/logo (2).png" type="Texture" id=4]
[ext_resource path="res://logo/logo (3).png" type="Texture" id=5]
[ext_resource path="res://logo/logo (4).png" type="Texture" id=6]
[ext_resource path="res://logo/logo (5).png" type="Texture" id=7]
[ext_resource path="res://Bells1.ogg" type="AudioStream" id=8]
[sub_resource type="SpriteFrames" id=1]
animations = [ {
"frames": [ ExtResource( 3 ), ExtResource( 4 ), ExtResource( 5 ), ExtResource( 6 ), ExtResource( 7 ) ],
"loop": true,
"name": "default",
"speed": 5.0
} ]
[node name="logo" type="Node2D"]
script = ExtResource( 1 )
[node name="background" type="Sprite" parent="."]
modulate = Color( 0.184314, 0.129412, 0.129412, 1 )
position = Vector2( 534.195, 306.72 )
texture = ExtResource( 2 )
__meta__ = {
"_edit_lock_": true
}
[node name="AnimatedSprite" type="AnimatedSprite" parent="."]
position = Vector2( 520.243, 297.083 )
scale = Vector2( 1.62367, 1.98222 )
frames = SubResource( 1 )
playing = true
__meta__ = {
"_edit_lock_": true
}
[node name="Timer" type="Timer" parent="."]
wait_time = 3.0
autostart = true
[node name="AudioStreamPlayer2D" type="AudioStreamPlayer2D" parent="."]
stream = ExtResource( 8 )
autoplay = true
[node name="Timer2" type="Timer" parent="."]
autostart = true
[connection signal="timeout" from="Timer" to="." method="_on_Timer_timeout"]
[connection signal="timeout" from="Timer2" to="." method="_on_Timer2_timeout"]