diff options
Diffstat (limited to 'asteroid.tscn')
-rw-r--r-- | asteroid.tscn | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/asteroid.tscn b/asteroid.tscn new file mode 100644 index 0000000..9ec6450 --- /dev/null +++ b/asteroid.tscn @@ -0,0 +1,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"] |