-
Notifications
You must be signed in to change notification settings - Fork 4
/
Boss01.tscn
50 lines (42 loc) · 1.93 KB
/
Boss01.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
[gd_scene load_steps=14 format=2]
[ext_resource path="res://assets/enemy/boss-01/03.png" type="Texture" id=1]
[ext_resource path="res://assets/enemy/boss-01/02.png" type="Texture" id=2]
[ext_resource path="res://assets/enemy/boss-01/06.png" type="Texture" id=3]
[ext_resource path="res://assets/enemy/boss-01/05.png" type="Texture" id=4]
[ext_resource path="res://assets/enemy/boss-01/07.png" type="Texture" id=5]
[ext_resource path="res://assets/enemy/boss-01/04.png" type="Texture" id=6]
[ext_resource path="res://assets/enemy/boss-01/01.png" type="Texture" id=7]
[ext_resource path="res://assets/enemy/boss-01/08.png" type="Texture" id=8]
[ext_resource path="res://blink-boss01.tres" type="Material" id=9]
[ext_resource path="res://assets/Sound/explosion.ogg" type="AudioStream" id=10]
[ext_resource path="res://Boss01.gd" type="Script" id=11]
[sub_resource type="SpriteFrames" id=1]
animations = [ {
"frames": [ ExtResource( 7 ), ExtResource( 2 ), ExtResource( 1 ), ExtResource( 6 ), ExtResource( 4 ), ExtResource( 3 ), ExtResource( 5 ), ExtResource( 8 ) ],
"loop": true,
"name": "default",
"speed": 2.0
} ]
[sub_resource type="CapsuleShape2D" id=6]
radius = 90.0
height = 334.0
[node name="Boss01" type="Area2D"]
z_index = -3
script = ExtResource( 11 )
[node name="Sprite" type="AnimatedSprite" parent="."]
material = ExtResource( 9 )
position = Vector2( 1206, 476 )
scale = Vector2( 1, 1.06027 )
frames = SubResource( 1 )
frame = 3
playing = true
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
position = Vector2( 1203, 649 )
shape = SubResource( 6 )
[node name="SndHitBy" type="AudioStreamPlayer2D" parent="."]
stream = ExtResource( 10 )
volume_db = 13.051
pitch_scale = 2.02
[connection signal="area_entered" from="." to="." method="_on_Boss01_area_entered"]
[connection signal="body_entered" from="." to="." method="_on_Boss01_body_entered"]
[connection signal="body_shape_entered" from="." to="." method="_on_Boss01_body_shape_entered"]