The idea that sparked me to create Spellblade was giving players abilities halfway through the stage and then having the camera flip around with the player having to run backward through the level. While running back, they could access new areas and see how much easier it is with new powers at their disposal. While unique weapons and enemies were required to achieve this, the level design was the primary factor in pulling this off.
The level is split into three sections. First, the "lead-up" introduces the player to the obstacles of the level. Then "the double" is played twice. First, harder trip without powers and then a much easier trip with them. Finally, the "run back", is a new, harder area that can heavily relies on your new powers. There is a rising and falling tension in the first half that creates empowerment from acquiring the new powers. Tension then rises again, creating extra pressure when even the new powers don't seem like enough.

Tiled was used as a tile-map editor to create the level. While a great tool for placing static terrain and even animated tiles, it's true power though comes with its custom importers. I wrote custom importers so that when maps were imported, materials were applied to certain tile layers and pick-ups would automatically spawn. The strongest of these was the rectangle tool. With this I could create screen transition colliders, camera bounds and even the rising lava pillars in Tiled and have them all appear in Unity.
When making "the double", I had to ensure the level was challenging without the powers but then sufficiently easier with them. The new abilities would have to create new paths for the player to take as well. This was accomplished through enemy placement as well as with special obstacles, such as one only destroyable with the axe, to force the player down hard routes. Once the powers are obtained, these routes open up and allow the player to reach offscreen secret areas.
Just like with the combat system, once visual effects and polish had to be applied to sell the feeling. With the assistance of the environmental artist, we were able to create parallax backgrounds that became more intense after the mini-boss was defeated. Caves in particular had the biggest change as effects were implemented. Lighting improvements, fire motes, and cracks in the wall made the lava pop more and gave a better feeling of being in a volcanic cavern.

The most important effect I had to implement was when the player gets their power up. To lean into the storybook nature of the world, I wanted the game to turn into a page from the book and then turn to the next page. The turning of the page would flip the camera for the player, leading them to now have to run back through the level with the new powers. Also, the images on the pages had to match the player's screen so that every player felt like they had their own unique version of the book.
This was done by taking a screen capture of the game view and putting it on a render texture. The texture mapped on a 3D model of a page that uses a shader to fade the view into looking like its made of parchment. As the page turns, the game ticks forward one frame. During this tick, the camera flips and another capture happens. This second capture is mapped onto the other side of the page. After the turn finishes, the shader fades the view back to normal and gameplay resumes.