This is the documentation for Enlighten.

Material colour changes

In some scenarios, the colours of surfaces might change at runtime in ways that should affect the radiosity computation.

When you need to update material colour data at runtime, to get started quickly, provide uniform or per-sample colours in the same way as for static albedo and static emissive.

It's straightforward to compute static material colours quickly enough when running on an artist workstation, but more difficult to optimize for your target platform. To avoid the cost of optimization, we recommend to use a different solution for runtime updates tailored to the type of updates you require.

If a uniform colour for the entire surface provides a good enough approximation, mark surfaces that will change as dynamic. This is known as dynamic albedo or dynamic emissive.

When only a few surfaces will change at runtime, provide static material colours for the surfaces that do not change.

Prepare runtime data

First, modify the additional runtime data you used for static material colours to enable updates.

Do this at the same time you provide the static material colours. 

Call MakeSingleSurfaceSelection to create a SurfaceSelection which identifies the surface to modify.

Call InitialiseMaterialAlbedoAsDynamic with the SurfaceSelection to mark the surface as dynamic.

To commit the changes to the AlbedoBuffer:

These steps modify the DynamicMaterialWorkspace object. To ensure these changes take effect, save both the DynamicMaterialWorkspace and the AlbedoBuffer objects afterwards.

Follow the same steps with the Emissive family of functions to enable emissive updates.

Update colours

At runtime, use the persistent runtime data to set the colour of surfaces that are marked dynamic.

Call SetMaterialAlbedoColour as many times as you need to set the colour for each surface.

Call UpdateAlbedoBuffer to apply changes to the AlbedoBuffer.

Follow the same steps with the Emissive family of functions to set emissive colours.

In the high level runtime, enqueue a command to call BaseSystem::SetAlbedoData for the system with the updated AlbedoBuffer.

To reduce the amount of work to do at runtime, when you prepare the runtime data, store the composite material IDs for the surfaces that will change colour.