Explorar el Código

Fix monster spawning mechanism

DricomDragon hace 5 años
padre
commit
408bd7ca64
Se han modificado 1 ficheros con 8 adiciones y 7 borrados
  1. 8 7
      Main.gd

+ 8 - 7
Main.gd

@@ -6,6 +6,7 @@ var score = 0
 
 func _ready():
 	randomize() # Plant seed for random number generation
+	$StartTimer.start()
 
 func _on_StartTimer_timeout():
 	$MobTimer.start()
@@ -16,13 +17,13 @@ func _on_ScoreTimer_timeout():
 
 func _on_MobTimer_timeout():
 	$MobPath/MobSpawnLocation.set_offset(randi())
-	
+
 	var newMob = Mob.instance()
-	
-	var direction = $MobPath/MobSpawnLocation.rotation + rand_range(PI / 4, 3 * PI / 4)
-	
-	newMob.orientation = direction
+
+	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(direction)
-	
+	newMob.linear_velocity = Vector2(rand_range(newMob.min_speed, newMob.max_speed), 0).rotated(newRotation)
+
 	add_child(newMob)