Main.tscn 2.0 KB

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