-
Notifications
You must be signed in to change notification settings - Fork 0
/
bom734D.tmp
34 lines (24 loc) · 1.09 KB
/
bom734D.tmp
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
[gd_scene load_steps=5 format=3 uid="uid://tnqrgv8bpkdr"]
[ext_resource type="Texture2D" uid="uid://c5vpa10fa3bwp" path="res://icon.svg" id="1_deorc"]
[ext_resource type="Script" path="res://bomb.gd" id="1_m61os"]
[sub_resource type="CircleShape2D" id="CircleShape2D_e4clr"]
radius = 20.0
[sub_resource type="CircleShape2D" id="CircleShape2D_0280c"]
radius = 40.0125
[node name="Bomb" type="CharacterBody2D"]
script = ExtResource("1_m61os")
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
shape = SubResource("CircleShape2D_e4clr")
[node name="Sprite2D" type="Sprite2D" parent="."]
scale = Vector2(0.3125, 0.3125)
texture = ExtResource("1_deorc")
[node name="Area2D" type="Area2D" parent="."]
collision_mask = 3
[node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"]
shape = SubResource("CircleShape2D_0280c")
[node name="Timer" type="Timer" parent="."]
wait_time = 10.0
one_shot = true
autostart = true
[connection signal="body_entered" from="Area2D" to="." method="_on_area_2d_body_entered"]
[connection signal="timeout" from="Timer" to="." method="_on_timer_timeout"]