1
Fork 0
mirror of https://github.com/Steffo99/looping-for-loops.git synced 2024-11-22 08:04:23 +00:00
looping-for-loops/Objects/SpecialObjects/Player.tscn

48 lines
1.4 KiB
Text

[gd_scene load_steps=7 format=2]
[ext_resource path="res://Sprites/Gatto/Donut.tres" type="SpriteFrames" id=1]
[ext_resource path="res://Objects/SpecialObjects/Player.gd" type="Script" id=2]
[ext_resource path="res://Sprites/Gatto/Body.tres" type="SpriteFrames" id=3]
[ext_resource path="res://Sprites/Gatto/Legs.tres" type="SpriteFrames" id=4]
[sub_resource type="RectangleShape2D" id=1]
extents = Vector2( 19, 19 )
[sub_resource type="RectangleShape2D" id=2]
extents = Vector2( 17, 17 )
[node name="Player" type="KinematicBody2D"]
z_index = 1
collision_layer = 2
collision_mask = 2147483677
script = ExtResource( 2 )
jump_speed = 496.0
[node name="Body" type="AnimatedSprite" parent="."]
frames = ExtResource( 3 )
animation = "neutral"
playing = true
[node name="Donut" type="AnimatedSprite" parent="."]
z_index = 1
frames = ExtResource( 1 )
animation = "neutral"
playing = true
[node name="Legs" type="AnimatedSprite" parent="."]
z_index = 2
frames = ExtResource( 4 )
animation = "neutral"
playing = true
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
shape = SubResource( 1 )
[node name="Area2D" type="Area2D" parent="."]
input_pickable = false
collision_layer = 2
collision_mask = 29
[node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"]
shape = SubResource( 2 )
[connection signal="body_entered" from="Area2D" to="." method="_on_Area2D_body_entered"]