Main.tscn 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. [gd_scene load_steps=6 format=2]
  2. [ext_resource path="res://Main.gd" type="Script" id=1]
  3. [ext_resource path="res://Enemy.tscn" type="PackedScene" id=2]
  4. [ext_resource path="res://Player.tscn" type="PackedScene" id=3]
  5. [ext_resource path="res://HUD.tscn" type="PackedScene" id=4]
  6. [sub_resource type="Curve2D" id=1]
  7. _data = {
  8. "points": PoolVector2Array( 0, 0, 0, 0, -1.05261, 2.78944, 0, 0, 0, 0, 477.895, 2.78944, 0, 0, 0, 0, 460.055, 715.427, 0, 0, 0, 0, 5.76184, 708.778, 0, 0, 0, 0, -1.05261, 2.78944 )
  9. }
  10. [node name="Main" type="Node2D"]
  11. script = ExtResource( 1 )
  12. __meta__ = {
  13. "_edit_group_": true
  14. }
  15. Mob = ExtResource( 2 )
  16. [node name="MobTimer" type="Timer" parent="."]
  17. wait_time = 0.53
  18. [node name="ScoreTimer" type="Timer" parent="."]
  19. [node name="StartTimer" type="Timer" parent="."]
  20. wait_time = 2.41
  21. one_shot = true
  22. [node name="StartPositon" type="Position2D" parent="."]
  23. position = Vector2( 245.263, 375.79 )
  24. [node name="MobPath" type="Path2D" parent="."]
  25. curve = SubResource( 1 )
  26. [node name="MobSpawnLocation" type="PathFollow2D" parent="MobPath"]
  27. position = Vector2( -1.05261, 2.78944 )
  28. rotation = -6.07153e-08
  29. [node name="Player" parent="." instance=ExtResource( 3 )]
  30. position = Vector2( 245.983, 380.055 )
  31. [node name="HUD" parent="." instance=ExtResource( 4 )]
  32. [connection signal="timeout" from="MobTimer" to="." method="_on_MobTimer_timeout"]
  33. [connection signal="timeout" from="ScoreTimer" to="." method="_on_ScoreTimer_timeout"]
  34. [connection signal="timeout" from="StartTimer" to="Player" method="spawn"]
  35. [connection signal="timeout" from="StartTimer" to="." method="_on_StartTimer_timeout"]
  36. [connection signal="hit" from="Player" to="." method="game_over"]
  37. [connection signal="start_game" from="HUD" to="." method="new_game"]