Adds a second stage for ascending.

This commit is contained in:
Markil3
2023-02-25 04:47:02 -07:00
parent 3c41ef7535
commit 33ed9c062a
3 changed files with 133 additions and 110 deletions

View File

@@ -5,3 +5,13 @@ ROOM_MAIN = 1
ROOM_END = 2
ROOM_NEXT = -1
# The first part of the level, where we are reaching the water
DESCEND_STAGE = 0
# The transition to the second part of the level, where the camera travels
# back to the surface
WATER_STAGE = 1
# The second part of the level, where we are growing into the sky
ASCEND_STAGE = 2
# The "level complete" animation
BLOOM_STAGE = 3