diff options
author | marcinzelent <zelent.marcin@gmail.com> | 2019-04-28 05:01:50 +0200 |
---|---|---|
committer | marcinzelent <zelent.marcin@gmail.com> | 2019-04-28 05:01:50 +0200 |
commit | 4e3a0fc7dc6e32d90168705f7ce4355fcf40cee7 (patch) | |
tree | fa649a1efc57e5b9636b94b25218fcf8363fc5fd /nGJ2019/Assets/Scripts/ObstacleSpawner.cs | |
parent | c2d39e5bfa1dbf8f522aeb8918e9f3e611ccfe21 (diff) |
Populated level 1 traps
Diffstat (limited to 'nGJ2019/Assets/Scripts/ObstacleSpawner.cs')
-rw-r--r-- | nGJ2019/Assets/Scripts/ObstacleSpawner.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/nGJ2019/Assets/Scripts/ObstacleSpawner.cs b/nGJ2019/Assets/Scripts/ObstacleSpawner.cs index 3c09e6f..931a96b 100644 --- a/nGJ2019/Assets/Scripts/ObstacleSpawner.cs +++ b/nGJ2019/Assets/Scripts/ObstacleSpawner.cs @@ -56,6 +56,18 @@ public class ObstacleSpawner : MonoBehaviour timeline.Add(i * 12.5f + 15f, new Vector3(0, 0.5f, 3), ObstacleType.net); } } + else if (scene.name == "Level1") + { + for (int i = 0; i < 1000; i++) + { + timeline.Add(i * 2.5f, new Vector3(0, 0, 0), ObstacleType.caveWalls); + timeline.Add(i * 12.5f + 3, new Vector3(0, 2.75f, 0), ObstacleType.rockTop); + timeline.Add(i * 12.5f + 6, new Vector3(0, -2, 0), ObstacleType.rockBottom); + timeline.Add(i * 12.5f + 9, new Vector3(0, 0, 0), ObstacleType.narrowPassage); + timeline.Add(i * 12.5f + 12.5f, new Vector3(0, -2.5f, 2), ObstacleType.rockJaws); + timeline.Add(i * 12.5f + 15f, new Vector3(0, 0.5f, 3), ObstacleType.net); + } + } timeline.OnSpawnEvent += spawnOnEvent; } |