-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsplash.tscn
43 lines (36 loc) · 1.57 KB
/
splash.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
[gd_scene load_steps=10 format=2]
[ext_resource path="res://splash.gd" type="Script" id=1]
[ext_resource path="res://image/splash.jpg" type="Texture" id=2]
[ext_resource path="res://chinuonsplashscreen/logo (1).png" type="Texture" id=3]
[ext_resource path="res://chinuonsplashscreen/logo (2).png" type="Texture" id=4]
[ext_resource path="res://chinuonsplashscreen/logo (3).png" type="Texture" id=5]
[ext_resource path="res://chinuonsplashscreen/logo (4).png" type="Texture" id=6]
[ext_resource path="res://chinuonsplashscreen/logo (5).png" type="Texture" id=7]
[ext_resource path="res://sounds/splashscreen.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="splash" type="Node2D"]
script = ExtResource( 1 )
[node name="splash" type="Sprite" parent="."]
modulate = Color( 0.145098, 0.168627, 0.341176, 1 )
position = Vector2( 525.286, 292.521 )
scale = Vector2( 5.12169, 2.98959 )
texture = ExtResource( 2 )
[node name="AnimatedSprite" type="AnimatedSprite" parent="."]
modulate = Color( 0.643137, 0.690196, 0.701961, 1 )
position = Vector2( 537.749, 286.063 )
scale = Vector2( 1.91831, 1 )
frames = SubResource( 1 )
playing = true
[node name="Timer" type="Timer" parent="."]
wait_time = 3.0
autostart = true
[node name="AudioStreamPlayer2D" type="AudioStreamPlayer2D" parent="Timer"]
stream = ExtResource( 8 )
autoplay = true
[connection signal="timeout" from="Timer" to="." method="_on_Timer_timeout"]