Main.tscn 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. [gd_scene load_steps=7 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. [ext_resource path="res://dodge_assets/art/House In a Forest Loop.ogg" type="AudioStream" id=5]
  7. [sub_resource type="Curve2D" id=1]
  8. _data = {
  9. "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 )
  10. }
  11. [node name="Main" type="Node2D"]
  12. script = ExtResource( 1 )
  13. __meta__ = {
  14. "_edit_group_": true
  15. }
  16. Mob = ExtResource( 2 )
  17. [node name="MobTimer" type="Timer" parent="."]
  18. wait_time = 0.53
  19. [node name="ScoreTimer" type="Timer" parent="."]
  20. [node name="StartTimer" type="Timer" parent="."]
  21. wait_time = 2.41
  22. one_shot = true
  23. [node name="StartPositon" type="Position2D" parent="."]
  24. position = Vector2( 245.263, 375.79 )
  25. [node name="MobPath" type="Path2D" parent="."]
  26. curve = SubResource( 1 )
  27. [node name="MobSpawnLocation" type="PathFollow2D" parent="MobPath"]
  28. position = Vector2( -1.05261, 2.78944 )
  29. rotation = -6.07153e-08
  30. [node name="Player" parent="." instance=ExtResource( 3 )]
  31. position = Vector2( 245.983, 380.055 )
  32. [node name="HUD" parent="." instance=ExtResource( 4 )]
  33. [node name="Music" type="AudioStreamPlayer" parent="."]
  34. stream = ExtResource( 5 )
  35. [connection signal="timeout" from="MobTimer" to="." method="_on_MobTimer_timeout"]
  36. [connection signal="timeout" from="ScoreTimer" to="." method="_on_ScoreTimer_timeout"]
  37. [connection signal="timeout" from="StartTimer" to="." method="_on_StartTimer_timeout"]
  38. [connection signal="timeout" from="StartTimer" to="Player" method="spawn"]
  39. [connection signal="hit" from="Player" to="." method="game_over"]
  40. [connection signal="start_game" from="HUD" to="." method="new_game"]