Create the main scene.
@@ -9,6 +9,7 @@ var mob_types = ["walk", "swim", "fly"]
func _ready():
$AnimatedSprite.animation = mob_types[randi() % mob_types.size()]
+ $AnimatedSprite.play()
func _on_VisibilityNotifier2D_screen_exited():
queue_free()
@@ -0,0 +1,29 @@
+extends Node2D
+
+export (PackedScene) var Mob
+var score = 0
+func _ready():
+ randomize() # Plant seed for random number generation
+ $StartTimer.start()
+func _on_StartTimer_timeout():
+ $MobTimer.start()
+ $ScoreTimer.start()
+func _on_ScoreTimer_timeout():
+ score += 1
+func _on_MobTimer_timeout():
+ $MobPath/MobSpawnLocation.set_offset(randi())
+ var newMob = Mob.instance()
+ var newRotation = $MobPath/MobSpawnLocation.rotation + rand_range(PI / 4, 3 * PI / 4)
+ newMob.rotation = newRotation
+ newMob.position = $MobPath/MobSpawnLocation.position
+ newMob.linear_velocity = Vector2(rand_range(newMob.min_speed, newMob.max_speed), 0).rotated(newRotation)
+ add_child(newMob)
@@ -0,0 +1,42 @@
+[gd_scene load_steps=5 format=2]
+[ext_resource path="res://Main.gd" type="Script" id=1]
+[ext_resource path="res://Enemy.tscn" type="PackedScene" id=2]
+[ext_resource path="res://Player.tscn" type="PackedScene" id=3]
+[sub_resource type="Curve2D" id=1]
+_data = {
+"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 )
+}
+[node name="Main" type="Node2D"]
+script = ExtResource( 1 )
+__meta__ = {
+"_edit_group_": true
+Mob = ExtResource( 2 )
+[node name="MobTimer" type="Timer" parent="."]
+wait_time = 0.53
+[node name="ScoreTimer" type="Timer" parent="."]
+[node name="StartTimer" type="Timer" parent="."]
+wait_time = 2.41
+one_shot = true
+[node name="StartPositon" type="Position2D" parent="."]
+position = Vector2( 245.263, 375.79 )
+[node name="MobPath" type="Path2D" parent="."]
+curve = SubResource( 1 )
+[node name="MobSpawnLocation" type="PathFollow2D" parent="MobPath"]
+position = Vector2( -1.05261, 2.78944 )
+rotation = -6.07153e-08
+[node name="Player" parent="." instance=ExtResource( 3 )]
+position = Vector2( 245.983, 380.055 )
+[connection signal="timeout" from="MobTimer" to="." method="_on_MobTimer_timeout"]
+[connection signal="timeout" from="ScoreTimer" to="." method="_on_ScoreTimer_timeout"]
+[connection signal="timeout" from="StartTimer" to="." method="_on_StartTimer_timeout"]
@@ -21,6 +21,7 @@ _global_script_class_icons={
[application]
config/name="DodgeTheCreep"
+run/main_scene="res://Main.tscn"
config/icon="res://icon.png"
[display]