aboutsummaryrefslogtreecommitdiffstats
path: root/Player.tscn
blob: 38589ccd6815aad8b85773edce0fb8461eb9c073 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[gd_scene load_steps=4 format=2]

[ext_resource path="res://KinematicBody2D.gd" type="Script" id=1]
[ext_resource path="res://icon.png" type="Texture" id=2]

[sub_resource type="CircleShape2D" id=1]

[node name="Area2D" type="Area2D"]
script = ExtResource( 1 )

[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
shape = SubResource( 1 )

[node name="Sprite" type="Sprite" parent="CollisionShape2D"]
position = Vector2( -1, -4 )
scale = Vector2( 0.515625, 0.53125 )
texture = ExtResource( 2 )

[connection signal="body_entered" from="." to="." method="_on_Player_body_entered"]