summaryrefslogtreecommitdiff
path: root/asteroid.tscn
blob: 9ec6450377e8529d1d7411224fcecd4e8a5e1597 (plain)
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
[gd_scene load_steps=8 format=3 uid="uid://hgwtxd5ttu4j"]

[ext_resource type="Script" path="res://Asteroid.gd" id="1_c0kfw"]
[ext_resource type="Texture2D" uid="uid://dnboio1l48kd2" path="res://asteroid.png" id="2_qqbct"]
[ext_resource type="PackedScene" uid="uid://bpbf3mo6xvabj" path="res://gpu_particles_2d.tscn" id="2_wkn6x"]
[ext_resource type="PackedScene" uid="uid://c4ffo50o24wuy" path="res://normal.tscn" id="3_4kl4f"]

[sub_resource type="PhysicsMaterial" id="PhysicsMaterial_1j0j4"]
friction = 0.0

[sub_resource type="CircleShape2D" id="CircleShape2D_ml81o"]
radius = 21.0238

[sub_resource type="CircleShape2D" id="CircleShape2D_v6ydb"]
radius = 18.1108

[node name="Asteroid" type="RigidBody2D"]
collision_mask = 3
physics_material_override = SubResource("PhysicsMaterial_1j0j4")
gravity_scale = 0.0
can_sleep = false
max_contacts_reported = 10
contact_monitor = true
script = ExtResource("1_c0kfw")
particle_chad = ExtResource("2_wkn6x")
particle_virgin = ExtResource("3_4kl4f")

[node name="Asteroid" type="Sprite2D" parent="."]
scale = Vector2(0.45, 0.45)
texture = ExtResource("2_qqbct")

[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
shape = SubResource("CircleShape2D_ml81o")

[node name="LifeTimer" type="Timer" parent="."]
wait_time = 5.0

[node name="Area2D" type="Area2D" parent="."]
visible = false
collision_layer = 4

[node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"]
shape = SubResource("CircleShape2D_v6ydb")
debug_color = Color(0.623529, 0.533333, 0.121569, 0.419608)

[connection signal="body_entered" from="." to="." method="_on_body_entered"]
[connection signal="timeout" from="LifeTimer" to="." method="_on_life_timer_timeout"]
[connection signal="area_entered" from="Area2D" to="." method="_on_area_2d_area_entered"]
[connection signal="body_entered" from="Area2D" to="." method="_on_area_2d_body_entered"]