New documentation and samples to accelerate your implementation of Enlighten.
Simplify implementation of the precompute pipeline in your tools: Enlighten Pipeline library (early access).
Faster precompute for massive worlds.
Reduced time spent in AddPppiProbeSet on console platforms when adding many new probe sets
Streamlined high level runtime API
Simplified runtime material colour API:
Visual Studio builds:
General:
Core runtime:
The low level API functions IPrecompSystemDependencies::SaveAsXml and IPrecompSystemDependencies::SaveBodyAsXml are deprecated.
SetSamplePositions is deprecated. Please use the precomputed sample positions instead.
InputWorkspaceDebugPoint::m_LightValue is deprecated. Please use GetInputLightingBufferLightValue instead.
InputWorkspaceDebugPoint::m_Albedo is deprecated. Please use GetDebugAlbedoValue instead.
InputWorkspaceDebugPoint::m_AreaLightId is deprecated. Please use GetDebugEmissiveValue instead.
High level build system:
The OptimiseScene target of the high level build system is deprecated. We recommend to automatically group instances into radiosity systems during the precompute. Please refer to the upgrade notes below.
The Enlighten scene probeOctree element is deprecated. Please refer to the upgrade notes below.
High level runtime:
Build configurations:
The WindowsExtra package now contains only prebuilt binaries for EnlightenPrecomp2, EnlightenBake and GeoRayTrace. If you need to build Checked or Static configurations of the remaining Enlighten libraries, please follow these instructions to compile from source.
Core runtime:
To provide a uniform color for a given material GUID, call SetMaterialAlbedoColour with the SurfaceSelection for each surface associated with that GUID.
The SamplePipeline and SampleRuntime projects show how to create material color data for use at runtime |
High level runtime:
Start with the example below, and change the irradiance output format to match IUpdateManagerProperties::m_IrradianceOutputFormat.
Enlighten::IGpuTexture* outputTextures[Enlighten::ENLIGHTEN_NUM_OUTPUT_TEXTURE_TYPES] = { myAllocator.Create(width, height, TextureFormat_A16B16G16R16F), // irradiance: substitute appropriate texture format, see Enlighten::eOutputFormat myAllocator.Create(width, height, TextureFormat_A8R8G8B8), // directional }; |
The SampleRuntime project shows how to provide output textures for systems and cubemaps. |
High level build system: