flappy-bird/Main.tscn

24 lines
688 B
Text
Raw Normal View History

2020-01-15 15:44:46 +01:00
[gd_scene load_steps=4 format=2]
2020-01-14 22:20:17 +01:00
[ext_resource path="res://Camera2D.gd" type="Script" id=1]
[ext_resource path="res://icon.png" type="Texture" id=2]
2020-01-15 15:44:46 +01:00
[ext_resource path="res://Player.tscn" type="PackedScene" id=3]
2020-01-14 22:20:17 +01:00
[node name="View" type="Node"]
script = ExtResource( 1 )
[node name="Background" type="TextureRect" parent="."]
2020-01-15 14:43:08 +01:00
margin_left = -1.16638
margin_top = -321.166
margin_right = 1244.83
margin_bottom = 318.834
2020-01-14 22:20:17 +01:00
texture = ExtResource( 2 )
expand = true
2020-01-15 14:43:08 +01:00
stretch_mode = 2
2020-01-14 22:20:17 +01:00
2020-01-15 15:44:46 +01:00
[node name="Player" parent="." instance=ExtResource( 3 )]
2020-01-15 18:48:07 +01:00
position = Vector2( 155.182, -2.28882e-05 )
2020-01-15 14:43:08 +01:00
gravity = 0.0
collision_layer = 0
2020-01-14 22:20:17 +01:00
[connection signal="move" from="Player" to="." method="_on_Player_move"]