-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathExplosion.tscn
45 lines (37 loc) · 2.13 KB
/
Explosion.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=21 format=2]
[ext_resource path="res://art/regularExplosion00.png" type="Texture" id=1]
[ext_resource path="res://art/regularExplosion01.png" type="Texture" id=2]
[ext_resource path="res://art/regularExplosion02.png" type="Texture" id=3]
[ext_resource path="res://art/regularExplosion03.png" type="Texture" id=4]
[ext_resource path="res://art/regularExplosion04.png" type="Texture" id=5]
[ext_resource path="res://art/regularExplosion05.png" type="Texture" id=6]
[ext_resource path="res://art/regularExplosion06.png" type="Texture" id=7]
[ext_resource path="res://art/regularExplosion07.png" type="Texture" id=8]
[ext_resource path="res://art/regularExplosion08.png" type="Texture" id=9]
[ext_resource path="res://art/sonicExplosion00.png" type="Texture" id=10]
[ext_resource path="res://art/sonicExplosion01.png" type="Texture" id=11]
[ext_resource path="res://art/sonicExplosion02.png" type="Texture" id=12]
[ext_resource path="res://art/sonicExplosion03.png" type="Texture" id=13]
[ext_resource path="res://art/sonicExplosion04.png" type="Texture" id=14]
[ext_resource path="res://art/sonicExplosion05.png" type="Texture" id=15]
[ext_resource path="res://art/sonicExplosion06.png" type="Texture" id=16]
[ext_resource path="res://art/sonicExplosion07.png" type="Texture" id=17]
[ext_resource path="res://art/sonicExplosion08.png" type="Texture" id=18]
[ext_resource path="res://Explosion.gd" type="Script" id=19]
[sub_resource type="SpriteFrames" id=1]
animations = [ {
"frames": [ ExtResource( 1 ), ExtResource( 2 ), ExtResource( 3 ), ExtResource( 4 ), ExtResource( 5 ), ExtResource( 6 ), ExtResource( 7 ), ExtResource( 8 ), ExtResource( 9 ) ],
"loop": false,
"name": "regular",
"speed": 15.0
}, {
"frames": [ ExtResource( 10 ), ExtResource( 11 ), ExtResource( 12 ), ExtResource( 13 ), ExtResource( 14 ), ExtResource( 15 ), ExtResource( 16 ), ExtResource( 17 ), ExtResource( 18 ) ],
"loop": false,
"name": "sonic",
"speed": 12.0
} ]
[node name="Explosion" type="AnimatedSprite"]
frames = SubResource( 1 )
animation = "regular"
script = ExtResource( 19 )
[connection signal="animation_finished" from="." to="." method="_on_Explosion_animation_finished"]