Cyber Rescue: Virus Eruption

The fifth game project we made which for us was a spline based arcade racer.

Contributions:

Gameplay

  • Made the ship fly on the spline

  • Created the speed pickups in the game.

Rendering

  • Implemented Particle rendering and everything around it except the actual physics and movement of the particles

  • Implemented LODS

  • To make the game we had to create an engine. I implemented loading and rendering of PBR models.

UI

  • Created the functionality for buttons and menus.

Tools

  • Created a Model Exporter from unity to our engine

  • Implemented the splines in our engine with data from Unity

  • Created a model viewer

  • Created a particle Viewer

  • Created systems for our Level Designers to work with our Component System

Feature Highlight - Level Data loading and Level Editor data exporting ( Also how the prefab creating system works)

This was the feature that was constantly facing the most tension since it was such a roadblock for all other disciplines so eventually it got pretty good and we still use pretty much the same code in all our future projects so it has scaled well and is still very fast.

My Beautiful binary files

Step 1 is exporting all the data from unity. Which creates a folder with files that contain all the components we use. I like having the binary files divided as show in the picture since it results in there being no connections between the components. If the Actors can not be loaded because of a bug or something we will still be able to load everything else without it blocking other peoples work which I find most important.

Step 2 Is loading the data which is also very simple in nature. I have a Scenes.scene file which says how many there are of each object so if the scenes file says we have 30000 transforms in our scene we create an array with 30000 transforms and memdump all the data from the Transforms.transforms file right in our giant array.

Dummy simple loading

Step 3 Is finally creating the components with the beautiful arrays of data in the ComponentSpawner. This simplicity made it very simple to expand in the next project since I also use this system now to not just create levels but also create prefabs which are incredibly useful and not having to write additional code for exporting and loading prefabs is such a headache saver since all the loading and exporting of components is done via the same system.