Projects Resume Contact

West-Ward


Written from scratch in C++, West-Ward is a puzzle game about a superhero with the power to control the wind. Venture out into a mysterious world full of puzzles, chat with strangers, travel to many locations, and uncover secrets and surprises. Each location is uniquely themed and offers fresh ideas. This game is available on Steam.

Getting to experiment with the different rules and combinations of elements was some of the most surprising and delightful moments I’ve had in game development. Most of the levels from the prototype made it into the final game in some form.

Providing feedback for a player's actions is vital for many reasons. The player needed to have some auditory and visual feedback when controlling the wind, which is why the grass moves and why wind marks are visible in the sky. It’s the reason there are flags near every puzzle, and why the protagonist wears a cape (originally a scarf). In addition to this, I wanted the environment to be reactive, which meant trees rustling, bushes bustling, and tire swings swinging. So I built a tool for it!

With it, you construct and parent bones together to create a structure. You can assign weights and angle constraints to each bone to get the movement that you want. Each bone has its own independent bounciness to give the impression that it’s physically resisting the wind.

Sections of a texture can then be mapped to each bone and the objects can be simulated to preview what they will look like in-game. The grass works similarly. Each blade is a 2-bone structure with part of a grass texture mapped to them. They are random in size and vary slightly in angle to give a more natural appearance.

Game design is not an exact science. It’s important to be able to iterate on ideas quickly, try things out, and hone in on the elements that work well. Being able to toggle between the editor and the game was essential during development.