-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCoin.tscn
28 lines (21 loc) · 806 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
24
25
26
27
28
[gd_scene load_steps=4 format=2]
[ext_resource path="res://img/coin.png" type="Texture" id=1]
[ext_resource path="res://BaseNote.gd" type="Script" id=4]
[sub_resource type="CircleShape2D" id=13]
radius = 47.0425
[node name="Coin" type="Node2D" groups=["note"]]
script = ExtResource( 4 )
size = "big"
damage = 1.0
particle_color = Color( 1, 1, 0.611765, 1 )
[node name="SpriteC" type="Node2D" parent="."]
[node name="Skull2" type="Sprite" parent="SpriteC"]
modulate = Color( 0.992157, 0.815686, 0, 1 )
position = Vector2( 1, 0 )
scale = Vector2( 0.16, 0.16 )
texture = ExtResource( 1 )
region_rect = Rect2( 900, 100, 1000, 1000 )
[node name="Area2D" type="Area2D" parent="."]
[node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"]
position = Vector2( 1, 1 )
shape = SubResource( 13 )