JanuaryGame/GodotProject/scenes/coin.tscn

115 lines
3.1 KiB
Plaintext
Raw Normal View History

2025-02-04 02:02:52 +00:00
[gd_scene load_steps=17 format=3 uid="uid://crtf2vkqussp6"]
[ext_resource type="Script" path="res://scripts/coin.gd" id="1_yevv6"]
[ext_resource type="Texture2D" uid="uid://coxj0fonj6qoe" path="res://assets/graphics/collectibles/coin.png" id="2_q535a"]
[sub_resource type="AtlasTexture" id="AtlasTexture_rkkcd"]
atlas = ExtResource("2_q535a")
region = Rect2(0, 0, 16, 16)
[sub_resource type="AtlasTexture" id="AtlasTexture_irxsk"]
atlas = ExtResource("2_q535a")
region = Rect2(16, 0, 16, 16)
[sub_resource type="AtlasTexture" id="AtlasTexture_cx5e3"]
atlas = ExtResource("2_q535a")
region = Rect2(32, 0, 16, 16)
[sub_resource type="AtlasTexture" id="AtlasTexture_a7l6h"]
atlas = ExtResource("2_q535a")
region = Rect2(48, 0, 16, 16)
[sub_resource type="AtlasTexture" id="AtlasTexture_uqye8"]
atlas = ExtResource("2_q535a")
region = Rect2(64, 0, 16, 16)
[sub_resource type="AtlasTexture" id="AtlasTexture_l7glg"]
atlas = ExtResource("2_q535a")
region = Rect2(80, 0, 16, 16)
[sub_resource type="AtlasTexture" id="AtlasTexture_f7gmn"]
atlas = ExtResource("2_q535a")
region = Rect2(96, 0, 16, 16)
[sub_resource type="AtlasTexture" id="AtlasTexture_fywnm"]
atlas = ExtResource("2_q535a")
region = Rect2(112, 0, 16, 16)
[sub_resource type="AtlasTexture" id="AtlasTexture_2t5x8"]
atlas = ExtResource("2_q535a")
region = Rect2(128, 0, 16, 16)
[sub_resource type="AtlasTexture" id="AtlasTexture_0hssl"]
atlas = ExtResource("2_q535a")
region = Rect2(144, 0, 16, 16)
[sub_resource type="AtlasTexture" id="AtlasTexture_saqy0"]
atlas = ExtResource("2_q535a")
region = Rect2(160, 0, 16, 16)
[sub_resource type="AtlasTexture" id="AtlasTexture_moivf"]
atlas = ExtResource("2_q535a")
region = Rect2(176, 0, 16, 16)
[sub_resource type="SpriteFrames" id="SpriteFrames_t1dng"]
animations = [{
"frames": [{
"duration": 1.0,
"texture": SubResource("AtlasTexture_rkkcd")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_irxsk")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_cx5e3")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_a7l6h")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_uqye8")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_l7glg")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_f7gmn")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_fywnm")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_2t5x8")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_0hssl")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_saqy0")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_moivf")
}],
"loop": true,
"name": &"idle",
"speed": 12.0
}]
[sub_resource type="CircleShape2D" id="CircleShape2D_7fkel"]
radius = 5.0
[node name="Area2D" type="Area2D" groups=["collectibles"]]
script = ExtResource("1_yevv6")
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="."]
texture_filter = 1
sprite_frames = SubResource("SpriteFrames_t1dng")
animation = &"idle"
autoplay = "idle"
frame_progress = 0.194521
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
shape = SubResource("CircleShape2D_7fkel")
[connection signal="body_entered" from="." to="." method="_on_body_entered"]