Main.tscn 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [gd_scene load_steps=5 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. [sub_resource type="Curve2D" id=1]
  6. _data = {
  7. "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 )
  8. }
  9. [node name="Main" type="Node2D"]
  10. script = ExtResource( 1 )
  11. __meta__ = {
  12. "_edit_group_": true
  13. }
  14. Mob = ExtResource( 2 )
  15. [node name="MobTimer" type="Timer" parent="."]
  16. wait_time = 0.53
  17. [node name="ScoreTimer" type="Timer" parent="."]
  18. [node name="StartTimer" type="Timer" parent="."]
  19. wait_time = 2.41
  20. one_shot = true
  21. [node name="StartPositon" type="Position2D" parent="."]
  22. position = Vector2( 245.263, 375.79 )
  23. [node name="MobPath" type="Path2D" parent="."]
  24. curve = SubResource( 1 )
  25. [node name="MobSpawnLocation" type="PathFollow2D" parent="MobPath"]
  26. position = Vector2( -1.05261, 2.78944 )
  27. rotation = -6.07153e-08
  28. [node name="Player" parent="." instance=ExtResource( 3 )]
  29. position = Vector2( 245.983, 380.055 )
  30. [connection signal="timeout" from="MobTimer" to="." method="_on_MobTimer_timeout"]
  31. [connection signal="timeout" from="ScoreTimer" to="." method="_on_ScoreTimer_timeout"]
  32. [connection signal="timeout" from="StartTimer" to="Player" method="spawn"]
  33. [connection signal="timeout" from="StartTimer" to="." method="_on_StartTimer_timeout"]