2 Puzzled 2 Solve is a puzzle platforming game with a unique twist: the player controls both their character and the world they move through. The player needs to navigate through levels from point A to B by jumping around in platforming mode and shifting and rotating the level as a sliding puzzle in puzzle mode. All levels are connected with each other through an overworld where players can unlock new levels and progress through the game by collecting items and learning new things about the game mechanics. The game also has an accessible and easy to use level editor which has been designed so that players can immediately jump in and start to create their own levels.
2 Puzzled 2 Solve is developed by a small two-man team. I have the responsibility for the technical implementation while my partner (Jesse Ravensbergen) is mainly responsible for the design of the game. My main area of work for this project was in the gameplay area to implement features as specified in the design and trying and get the feel of the game as good as possible. Besides working on gameplay I implemented several other systems including a fully functional in-game level editor, customized UI framework and event based input handling. Most systems are built in such a way that anyone on the team can modify all the important data either through a Unity inspector window or via external JSON files.
A code sample taken from the bounce block implementation. There is little code required to setup new block behaviours allowing to rapidly prototype and implement new block behaviours.
This code sample shows a portion of the UI Button class used in this project. The UI elements are setup in such a way that widgets and screens can easily be created via the use of the default Unity UI tools introduced in version 4.6, while also providing clean and simple access in the codebase.