flappy-bird/Player.tscn

61 lines
1.5 KiB
Plaintext
Raw Normal View History

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