Many Lights

Exploring the capabilities of the "Many Lights" plugin for Unreal Engine and how it can significantly improve performance in scenes with numerous light sources.

Enhancing Performance with Unreal Engine's New "Many Lights" Plugin

As a game developer, managing performance while maintaining visual fidelity is a constant challenge, especially in scenes with numerous light sources. Unreal Engine's latest addition, the "Many Lights" plugin, promises to address this by offering stochastic ray-traced lighting, a method that can deliver massive performance enhancements at lower resolutions.

What is the "Many Lights" Plugin?

The "Many Lights" plugin is an experimental feature in Unreal Engine that leverages ray tracing to stochastically sample lights, rendering them in a single pass but not all pixels at once. This approach blends the lighting over many frames, ensuring smooth performance even with a high number of light sources.

Key Features and Settings

Enabling the Plugin

By default, the "Many Lights" plugin is disabled. You can enable it by setting the console variable r.ManyLights to either 1 or 2:

  • r.ManyLights = 1: All lights using ray tracing shadows will be stochastically sampled.
  • r.ManyLights = 2: All lights will be stochastically sampled.
static TAutoConsoleVariable<int32> CVarManyLights(
	TEXT("r.ManyLights"),
	0,
	TEXT("Whether to enable Many Lights. Experimental feature leveraging ray tracing to stochastically importance sample lights.\n")
	TEXT("1 - all lights using ray tracing shadows will be stochastically sampled\n")
	TEXT("2 - all lights will be stochastically sampled"),
	ECVF_Scalability | ECVF_RenderThreadSafe
);

Other Important Console Variables

  • Number of Samples per Pixel:
static TAutoConsoleVariable<int32> CVarManyLightsNumSamplesPerPixel(
  TEXT("r.ManyLights.NumSamplesPerPixel"),
  4,
  TEXT("Number of samples (shadow rays) per half-res pixel.\n")
  TEXT("1 - 0.25 trace per pixel\n")
  TEXT("2 - 0.5 trace per pixel\n")
  TEXT("4 - 1 trace per pixel"),
  ECVF_Scalability | ECVF_RenderThreadSafe
);
  • Maximum Shading Tiles per Grid Cell:
static TAutoConsoleVariable<int32> CVarManyLightsMaxShadingTilesPerGridCell(
  TEXT("r.ManyLights.MaxShadingTilesPerGridCell"),
  32,
  TEXT("Maximum number of shading tiles per grid cell."),
  ECVF_Scalability | ECVF_RenderThreadSafe
);
  • Temporal Accumulation Settings:
static TAutoConsoleVariable<int32> CVarManyLightsTemporal(
  TEXT("r.ManyLights.Temporal"),
  1,
  TEXT("Whether to use temporal accumulation for shadow mask."),
  ECVF_Scalability | ECVF_RenderThreadSafe
);
 
static TAutoConsoleVariable<int32> CVarManyLightsTemporalMaxFramesAccumulated(
  TEXT("r.ManyLights.Temporal.MaxFramesAccumulated"),
  12,
  TEXT("Max history length when accumulating frames. Lower values have less ghosting, but more noise."),
  ECVF_Scalability | ECVF_RenderThreadSafe
);

Debugging and Visualization

The plugin also offers several debugging options to visualize sampling and tracing:

  • Enable Debug Mode:
static TAutoConsoleVariable<int32> CVarManyLightsDebug(
  TEXT("r.ManyLights.Debug"),
  0,
  TEXT("Whether to enabled debug mode, which prints various extra debug information from shaders.")
  TEXT("0 - Disable\n")
  TEXT("1 - Visualize sampling\n")
  TEXT("2 - Visualize tracing\n"),
  ECVF_RenderThreadSafe
);

My Experience with "Many Lights"

I recently integrated the "Many Lights" plugin into my project to improve performance in complex scenes with multiple light sources.

Performance Improvements

Enabling stochastic sampling (r.ManyLights = 2) provided significant performance boosts, especially at lower resolutions. The blending of lighting over multiple frames smoothed out the visual experience, eliminating the performance drops I previously encountered with numerous dynamic lights.

Practical Application

One of the standout moments was in a scene with a densely populated cityscape at night, where hundreds of light sources were active. The performance gains allowed for a fluid frame rate without compromising on the visual quality of the lighting.

Debugging and Fine-Tuning

Using the debug settings, I was able to visualize the sampling and tracing processes, which helped in fine-tuning the parameters. For instance, adjusting the number of samples per pixel and the temporal accumulation settings reduced noise and ghosting effectively.

Conclusion

The "Many Lights" plugin is a game-changer for developers dealing with scenes that have a high number of light sources. By enabling stochastic ray-traced lighting, it offers a powerful tool to enhance performance while maintaining visual quality. If you're looking to optimize your lighting setup, I highly recommend experimenting with this plugin and its various settings.