-
Notifications
You must be signed in to change notification settings - Fork 0
/
coin.tscn
23 lines (16 loc) · 820 Bytes
/
coin.tscn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[gd_scene load_steps=4 format=3 uid="uid://be75vepg1s6y"]
[ext_resource type="Script" path="res://Coin.cs" id="1_n377f"]
[ext_resource type="SpriteFrames" uid="uid://mg3sabs8bpij" path="res://Assets/Images/SceneAssets/Coin/coin.tres" id="2_ev2w6"]
[sub_resource type="CircleShape2D" id="CircleShape2D_k81us"]
[node name="Coin" type="Node2D"]
script = ExtResource("1_n377f")
[node name="Area2D" type="Area2D" parent="."]
scale = Vector2(1.2, 1.2)
[node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"]
shape = SubResource("CircleShape2D_k81us")
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="."]
sprite_frames = ExtResource("2_ev2w6")
autoplay = "default"
frame = 10
frame_progress = 0.509477
[connection signal="body_entered" from="Area2D" to="." method="_on_area_2d_body_entered"]