Free running game where i got the chance to rework and redesign my light system from the prior project. Also got som extra time for culling of objects.

Time: 15 weeks (20h/week)
Team Size: 12 (6 programmers)
Engine: The Game Engine , Unity.
Language: C++ , C#

Lighting

In the redesigning of the light system i had two goals.
Shadows with soft edges and less noteworthy texels.
Pointlights that uses a bounding sphere to save performance.

Luckily there wasn’t much to change. I decided to sample the shadowmaps edges about 16 time to blur it.
I also increased the shadowmaps texture resolution from 1920x1080 to about 8000x8000. We lost a lost of performance in debug mode but in release there was no notable drop of FPS.

Pointlights uses a bounding sphere to save performance.

I then created a ImGui panel for my team to be able to change the directional light to help me find problems with the lighting. Or even find a nice light setting.

And lastly i culled objects by creating a frustum by using the cameras near and far plane that we calculate each frame.

Culling