Sparkles and Powerball

This commit is contained in:
2024-05-07 23:12:23 +01:00
parent 0017d49923
commit 0cc0b4a40b
8 changed files with 113 additions and 13 deletions

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=5 format=3 uid="uid://wld2y5cseki8"]
[gd_scene load_steps=6 format=3 uid="uid://wld2y5cseki8"]
[ext_resource type="Script" path="res://Brick/Brick.gd" id="1_eylhu"]
[ext_resource type="PhysicsMaterial" uid="uid://cql6t5hd40fgn" path="res://CorePhysics.tres" id="1_it5u2"]
@@ -7,6 +7,9 @@
[sub_resource type="RectangleShape2D" id="RectangleShape2D_xxkpg"]
size = Vector2(32, 16)
[sub_resource type="RectangleShape2D" id="RectangleShape2D_wi5j7"]
size = Vector2(32, 16)
[node name="Brick" type="StaticBody2D"]
input_pickable = true
physics_material_override = ExtResource("1_it5u2")
@@ -34,4 +37,12 @@ grow_vertical = 2
texture = ExtResource("2_v230s")
stretch_mode = 2
[node name="Area2D" type="Area2D" parent="."]
collision_layer = 4
collision_mask = 4
[node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"]
shape = SubResource("RectangleShape2D_wi5j7")
[connection signal="input_event" from="." to="." method="_on_input_event"]
[connection signal="body_entered" from="Area2D" to="." method="_on_area_2d_body_entered"]