In The Wonky Wizard you have to shoot different types of enemies before getting swarmed. The entire game takes place on a on oddly-non flat planet as our interpretation of this editions theme, “small world”. This game was build by Simon Chuptys and myself during Ludum Dare’s 38th game jam.

You can Play and Rate The Wonky Wizard here!

Art

We found some pictures of small low poly planets and immediately fell in love with the look. Putting normal objects on a dis-proportionally small world makes everything look all weird and Wonky!

We used so called “Gnomonic projection” to project from a planar to the spherical surface. This projection has the property normals to flat plane become normals to the sphere, so that it produces a nice cartoonish look.

Projection.png

We developed a custom mesh projection script to project normal 3d models onto a spherical surface. This way we could use normal modelling techniques to create the models for the islands, bridges and props. Bending is performed in the editor so that we can easily build spherical levels directly in the editor.

Gameplay

In the Wonky Wizard there are 3 types of enemies and 3 types of spells. Each enemy is countered by one of the spells so the player can discover and exploit the advantages of each spell.

EnemiesAndProjectiles.gif

On a spherical level projectiles do not “fly straight” like in regular levels. The ice projectile’s movement is corrected at each step by so that its velocity is tangential to the sphere. For the grenade the traditional directional gravitation was replaced by a gravitational force to the center of the sphere. In the image below you can see the “straight” projectile flying around the globe.

FastprojectileSmall.gif

The trickiest was the beam spell. For this, we created a “spherical raycast’, by doing multiple raycasts forming a circle.

Level

Building a spherical level proved to be challenging :). Unity’s editing tools are not really designed for building spherical levels, so we created some editing tools to easily place, rotate and scale objects on a sphere.

LevelBuilder4.gif

To build spawn scenes and level logic we created a minimal level scripting system. The behaviour is created by placing invisible objects like checkpoints, triggers, spawners and enemy detectors on the level. These are then all linked together using a small C# co-routine.

LevelScripting.png

Conclusion

We are very happy with the results. Our only regret is that we did not have enough time to implement a whole load of other ideas on our list for this game. But that might still happen in the future …

Play and Rate The Wonky Wizard here!

References

https://en.wikipedia.org/wiki/Orthographic_projection_in_cartography

Leave a Reply

Your email address will not be published. Required fields are marked *