flappy-bird/Player.tscn

65 lines
1.6 KiB
Text
Raw Normal View History

2024-04-18 15:53:19 +02:00
[gd_scene load_steps=7 format=3 uid="uid://bkppr8vsso41l"]
2020-01-14 22:20:17 +01:00
2024-04-18 15:53:19 +02:00
[ext_resource type="Script" path="res://Player.gd" id="1"]
[ext_resource type="Texture2D" uid="uid://1wdcw8ne7j5w" path="res://res/sprites.png" id="2"]
2020-01-14 22:20:17 +01:00
2024-04-18 15:53:19 +02:00
[sub_resource type="AtlasTexture" id="1"]
atlas = ExtResource("2")
region = Rect2(-4, 488, 84, 16)
2020-01-29 21:51:40 +01:00
2024-04-18 15:53:19 +02:00
[sub_resource type="Animation" id="2"]
2020-01-29 21:51:40 +01:00
length = 0.8
2024-04-18 15:53:19 +02:00
loop_mode = 1
2020-01-29 21:51:40 +01:00
step = 0.2
tracks/0/type = "value"
2024-04-18 15:53:19 +02:00
tracks/0/imported = false
tracks/0/enabled = true
2024-04-16 12:44:28 +02:00
tracks/0/path = NodePath("Node2D/Sprite2D:frame")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
2024-04-18 15:53:19 +02:00
"times": PackedFloat32Array(0, 0.2, 0.4, 0.6),
"transitions": PackedFloat32Array(1, 1, 1, 1),
"update": 1,
2024-04-18 15:53:19 +02:00
"values": [0, 1, 2, 1]
}
2024-04-18 15:53:19 +02:00
[sub_resource type="AnimationLibrary" id="AnimationLibrary_s168r"]
_data = {
"fly": SubResource("2")
}
[sub_resource type="CapsuleShape2D" id="3"]
radius = 2.03742
2020-02-08 11:36:48 +01:00
height = 4.07484
[node name="Area2D" type="Area2D"]
2024-04-18 15:53:19 +02:00
position = Vector2(9.25964, 6.09653)
scale = Vector2(1, 1.02134)
script = ExtResource("1")
2020-01-14 22:20:17 +01:00
[node name="Node2D" type="Node2D" parent="."]
2024-04-16 12:44:28 +02:00
[node name="Sprite2D" type="Sprite2D" parent="Node2D"]
2024-04-18 15:53:19 +02:00
position = Vector2(-3.46641, -2.14102)
scale = Vector2(2.14565, 2.14019)
texture = SubResource("1")
2020-01-29 21:51:40 +01:00
hframes = 3
[node name="AnimationPlayer" type="AnimationPlayer" parent="Node2D"]
root_node = NodePath("../..")
2024-04-18 15:53:19 +02:00
libraries = {
"": SubResource("AnimationLibrary_s168r")
}
autoplay = "fly"
2020-01-29 21:51:40 +01:00
2020-02-08 11:36:48 +01:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
rotation = 1.5708
2024-04-18 15:53:19 +02:00
shape = SubResource("3")
2020-02-08 11:36:48 +01:00
2020-01-29 21:51:40 +01:00
[node name="Camera2D" type="Camera2D" parent="."]
limit_top = 0
limit_bottom = 0
2024-04-18 15:53:19 +02:00
2020-01-15 14:43:08 +01:00
[connection signal="body_entered" from="." to="." method="_on_Player_body_entered"]