This commit is contained in:
pennyrigate 2025-07-23 20:56:22 -04:00
parent 4dfeed7b4a
commit 09fe3834ad
12 changed files with 433 additions and 5 deletions

View file

@ -1,7 +1,8 @@
[gd_scene load_steps=67 format=3 uid="uid://d3e7g42ja172n"]
[gd_scene load_steps=69 format=3 uid="uid://d3e7g42ja172n"]
[ext_resource type="Texture2D" uid="uid://dde5y52arb7gv" path="res://assets/coin/32x32/kern00.png" id="1_7k24t"]
[ext_resource type="Script" uid="uid://bkcmu4w4qres" path="res://assets/coin.gd" id="1_wfxl6"]
[ext_resource type="PackedScene" uid="uid://7tn5hqexpcpy" path="res://objects/particles/coinparticles.tscn" id="2_3rofp"]
[ext_resource type="Texture2D" uid="uid://dpuspvsihppck" path="res://assets/coin/32x32/kern01.png" id="2_a8cij"]
[ext_resource type="Texture2D" uid="uid://dgvsqv6gnww2r" path="res://assets/coin/32x32/kern02.png" id="3_xgl08"]
[ext_resource type="Texture2D" uid="uid://3fkjt7kdhhxh" path="res://assets/coin/32x32/kern03.png" id="4_wfxl6"]
@ -257,10 +258,14 @@ animations = [{
[sub_resource type="AudioStreamRandomizer" id="AudioStreamRandomizer_3rofp"]
random_pitch = 1.5
random_volume_offset_db = 5.0
streams_count = 2
stream_0/stream = ExtResource("60_xgl08")
stream_1/stream = ExtResource("61_wfxl6")
[sub_resource type="CircleShape2D" id="CircleShape2D_3rofp"]
radius = 35.0143
[node name="RigidBody2D" type="RigidBody2D"]
collision_layer = 2
collision_mask = 2
@ -269,6 +274,7 @@ can_sleep = false
contact_monitor = true
max_contacts_reported = 1
script = ExtResource("1_wfxl6")
Particles = ExtResource("2_3rofp")
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
position = Vector2(0, -1)
@ -283,4 +289,10 @@ frame_progress = 0.706514
unique_name_in_owner = true
stream = SubResource("AudioStreamRandomizer_3rofp")
[node name="Area2D" type="Area2D" parent="."]
[node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"]
shape = SubResource("CircleShape2D_3rofp")
[connection signal="body_entered" from="." to="." method="_on_body_entered"]
[connection signal="input_event" from="Area2D" to="." method="_on_area_2d_input_event"]