-
Notifications
You must be signed in to change notification settings - Fork 1
3 Level Design
FrancPS edited this page Jun 16, 2021
·
19 revisions
Find the dialogues text and explanations here: World Bible Page
INTERACTION:
- The door that hides the secret can be destroyed shooting at it.
Waves:
- Wave 1 starts on trigger condition: Triggers after the initial cutscene is finished, when the player closes the Controls Tutorial.
- Wave 2 starts when all enemies of wave 1 are killed
- Wave 3 starts when all enemies of wave 2 are killed
Waves:
- Wave 1 starts on Trigger Collision
- Wave 2 starts when all enemies of wave 1 are killed
Waves:
- Wave 1 starts on Trigger Collision
- Wave 2 starts when all enemies of wave 1 are killed
Wave 2 as "Constant Wave":
- 4 Grunts spawn every 10 seconds (max 28) (time needs balancing)
- 2 Ranged spawn every 10 seconds (max 14) (time needs balancing)
- Each enemy spawns at a random location inside the combat area.
Waves:
- Wave 1 starts on Trigger Collision
- Wave 2 starts when 2 enemies are left from wave 1
- Wave 3 starts when 4 enemies OR 2 ranged enemies are left from wave 2
Lasers:
- Lasers activate on Trigger Collision, and shoot a laser beam on animation finished.
- Laser beam duration is 3 seconds, and pauses for 2 seconds, then shoots again. (needs balancing)
- Lasers are activated in this order D->C->B->A, with a 0.5 seconds offset between each. (time needs balancing)
- Beams and pauses have the same time offset, making the lasers act like a wave, kind of pulling the player backwards.
Waves:
- Wave 4 starts on Trigger Collision, only if the player has collected the Pickup
Waves:
- Wave 1 starts on Trigger Collision
- Wave 2 starts when 2 enemies are left from wave 1
- Wave 3 starts when 4 enemies OR 2 ranged enemies are left from wave 2
Lasers:
- Lasers activate on Trigger Collision, and enter Phase 1
- Laser beam duration is 3 seconds, and pauses for 2 seconds, then shoots again. (needs balancing)
- Phase 2 starts at the same time as Wave 2, same for Phase 3 with Wave 3.
Laser Phases:
- Phase 1: A random permutation of ABCD is computed and then they are activated in that order, one at a time every 4s. Once the cycle is completed, a new permutation is computed and performed, and so on.
- Phase 2: Same as before, each laser lasting 4s, but one laser activation every 2 seconds. That way from the second activation onwards, there's always 2 lasers activated.
- Phase 3: Five pairs - AB, AC, CD, BD, BC. One random pair is activated during 2 seconds, then 1 second pause, and then another random pair is activated for 2 seconds. The same pair can be repeated consecutively.