Oasis

End of study project
See 3D environments
;

Context

Oasis is an end of study project.

This is a runner game with shooting mechanics where the player must sprint through multiple levels to achieve the highest possible score.

 

Challenge

The speed of this FPS game is enhanced by using FOV but this one stretches the main character.
This types of games requires large and linear environments that can cause running issues for low end hardwares.

Solution

The use of a custom shader is an affordable solution to compensate for the player stretching.
For memory budget, the use of a custom trimsheet system is essential.

Oasis Trimsheet

Classic Trimsheet

I have elaborated a custom trimsheet workflow to answer the artist needs :
In an asset, a same trimsheet stripe can get different colors.

This means that two different UV of a same asset can be assigned to a same trim stripe but have different colors.

The use of vertex color can be one solution in order to separate by asset color information but this is quite trouble some when instancing meshes.

 

Pivot Painter

The workflow that I have set up is mainly inspired by the Pivot Painter technique, to manage the elements independently, Epic’s engineers use a second UV channel that encodes the position and the local orientation of the elements that make up the Mesh.

The Pivot Painter is mainly used for trees with a Shader using world position offset.

 

Main shader

After unwrapping manually the second UV of the static mesh, this one is used in Shader to create a custom color space.

In order to avoid the use of a texture like the pivot painter workflow, I have chosen the curve atlas for a better flexibility, but this one is just a curve that is mapped to zero to one range, as it is, it is unusable for the second UV.

 

Curve

Unreal engine provides a curve asset that is usable in shader and blueprint.
Here it is one that I have created for the curve mapping.

 

Curve mapping

Using math, I have created a grid that is normalized to zero from one range.
This grid provide a UV space usable for the curve settings.

 

Result

As I switch curve asset within the instance material, the overall colors of the meshes changes plus I can modify at any time one certain color of the curve.

This allows great flexibility and furthermore different look quickly.

 

Other projects

Tech Art

Optimization