116 lines
3.2 KiB
Plaintext
116 lines
3.2 KiB
Plaintext
[gd_scene load_steps=17 format=3 uid="uid://djcmk4sjeejcg"]
|
|
|
|
[ext_resource type="Script" path="res://scripts/coin.gd" id="1_l1h5o"]
|
|
[ext_resource type="Texture2D" uid="uid://v8pdxg1bj3nd" path="res://assets/graphics/collectibles/coin.png" id="2_ewh6e"]
|
|
|
|
[sub_resource type="AtlasTexture" id="AtlasTexture_7chkb"]
|
|
atlas = ExtResource("2_ewh6e")
|
|
region = Rect2(0, 0, 16, 16)
|
|
|
|
[sub_resource type="AtlasTexture" id="AtlasTexture_ecx1d"]
|
|
atlas = ExtResource("2_ewh6e")
|
|
region = Rect2(16, 0, 16, 16)
|
|
|
|
[sub_resource type="AtlasTexture" id="AtlasTexture_8fpbv"]
|
|
atlas = ExtResource("2_ewh6e")
|
|
region = Rect2(32, 0, 16, 16)
|
|
|
|
[sub_resource type="AtlasTexture" id="AtlasTexture_dnsxy"]
|
|
atlas = ExtResource("2_ewh6e")
|
|
region = Rect2(48, 0, 16, 16)
|
|
|
|
[sub_resource type="AtlasTexture" id="AtlasTexture_mtv3y"]
|
|
atlas = ExtResource("2_ewh6e")
|
|
region = Rect2(64, 0, 16, 16)
|
|
|
|
[sub_resource type="AtlasTexture" id="AtlasTexture_wam0b"]
|
|
atlas = ExtResource("2_ewh6e")
|
|
region = Rect2(80, 0, 16, 16)
|
|
|
|
[sub_resource type="AtlasTexture" id="AtlasTexture_hfonb"]
|
|
atlas = ExtResource("2_ewh6e")
|
|
region = Rect2(96, 0, 16, 16)
|
|
|
|
[sub_resource type="AtlasTexture" id="AtlasTexture_bbmno"]
|
|
atlas = ExtResource("2_ewh6e")
|
|
region = Rect2(112, 0, 16, 16)
|
|
|
|
[sub_resource type="AtlasTexture" id="AtlasTexture_joupt"]
|
|
atlas = ExtResource("2_ewh6e")
|
|
region = Rect2(128, 0, 16, 16)
|
|
|
|
[sub_resource type="AtlasTexture" id="AtlasTexture_fnp6f"]
|
|
atlas = ExtResource("2_ewh6e")
|
|
region = Rect2(144, 0, 16, 16)
|
|
|
|
[sub_resource type="AtlasTexture" id="AtlasTexture_y8ea0"]
|
|
atlas = ExtResource("2_ewh6e")
|
|
region = Rect2(160, 0, 16, 16)
|
|
|
|
[sub_resource type="AtlasTexture" id="AtlasTexture_8gn7x"]
|
|
atlas = ExtResource("2_ewh6e")
|
|
region = Rect2(176, 0, 16, 16)
|
|
|
|
[sub_resource type="SpriteFrames" id="SpriteFrames_t2yui"]
|
|
animations = [{
|
|
"frames": [{
|
|
"duration": 1.0,
|
|
"texture": SubResource("AtlasTexture_7chkb")
|
|
}, {
|
|
"duration": 1.0,
|
|
"texture": SubResource("AtlasTexture_ecx1d")
|
|
}, {
|
|
"duration": 1.0,
|
|
"texture": SubResource("AtlasTexture_8fpbv")
|
|
}, {
|
|
"duration": 1.0,
|
|
"texture": SubResource("AtlasTexture_dnsxy")
|
|
}, {
|
|
"duration": 1.0,
|
|
"texture": SubResource("AtlasTexture_mtv3y")
|
|
}, {
|
|
"duration": 1.0,
|
|
"texture": SubResource("AtlasTexture_wam0b")
|
|
}, {
|
|
"duration": 1.0,
|
|
"texture": SubResource("AtlasTexture_hfonb")
|
|
}, {
|
|
"duration": 1.0,
|
|
"texture": SubResource("AtlasTexture_bbmno")
|
|
}, {
|
|
"duration": 1.0,
|
|
"texture": SubResource("AtlasTexture_joupt")
|
|
}, {
|
|
"duration": 1.0,
|
|
"texture": SubResource("AtlasTexture_fnp6f")
|
|
}, {
|
|
"duration": 1.0,
|
|
"texture": SubResource("AtlasTexture_y8ea0")
|
|
}, {
|
|
"duration": 1.0,
|
|
"texture": SubResource("AtlasTexture_8gn7x")
|
|
}],
|
|
"loop": true,
|
|
"name": &"idle",
|
|
"speed": 12.0
|
|
}]
|
|
|
|
[sub_resource type="CircleShape2D" id="CircleShape2D_43iwi"]
|
|
radius = 5.0
|
|
|
|
[node name="Area2D" type="Area2D" groups=["collectibles"]]
|
|
script = ExtResource("1_l1h5o")
|
|
metadata/_edit_group_ = true
|
|
|
|
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="."]
|
|
texture_filter = 1
|
|
sprite_frames = SubResource("SpriteFrames_t2yui")
|
|
animation = &"idle"
|
|
autoplay = "idle"
|
|
frame_progress = 0.503098
|
|
|
|
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
|
shape = SubResource("CircleShape2D_43iwi")
|
|
|
|
[connection signal="body_entered" from="." to="." method="_on_body_entered"]
|