Parcourir la source

Add the `add child` instruction

DricomDragon il y a 5 ans
Parent
commit
9e965f8e38
1 fichiers modifiés avec 2 ajouts et 0 suppressions
  1. 2 0
      Main.gd

+ 2 - 0
Main.gd

@@ -24,3 +24,5 @@ func _on_MobTimer_timeout():
 	newMob.orientation = direction
 	newMob.orientation = direction
 	newMob.position = $MobPath/MobSpawnLocation.position
 	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(direction)
+	
+	add_child(newMob)