Devlog #7: Designing Rounds


Today I started designing rounds of enemies. I made it so every 5 rounds is a special round and every 10 is a big boss round.

Also changed the way I will be creating enemies from tens of different prefabs I just made one prefab and change its values with tens of scriptable objects.

Now my problem is that it takes ALOT of time to create the rounds in unity even tho I made it as easy as I could. Basically i have a list of rounds and inside the rounds I have list of enemies spawned that round and amount of the enemies per level. Like this:

  • Round 1
    • Enemy 1
      • scriptableobj = enemy_lvl_1
      • enemy_spawn_count = 5
    • Enemy 2
      • scriptableobj = enemy_lvl_2
      • enemy_spawn_count = 3
  • Round 1
    • Enemy 1
      • scriptableobj = enemy_lvl_1
      • enemy_spawn_count = 6
    • Enemy 2
      • scriptableobj = enemy_lvl_2
      • enemy_spawn_count = 4

And I have to manually create this list of all 70 rounds.

Leave a comment

Log in with itch.io to leave a comment.