earth-americasScene Settings

Provides scene-wide configuration settings.

The Scene Settings component is a scene-wide singleton for Flora behavior.

What This Affects

  • Scene render enable/disable

  • Terrain foliage integration and auto-registration

  • Scene-level occlusion, motion vectors, light probes, density gating

  • Terrain detail streaming budget/delay


Properties

OverrideCullingPipeline (Obsolete)

  • Kept for migration compatibility.

  • Has no effect in current Flora.

CullingPipelineOverride (Obsolete)

  • Kept for migration compatibility.

  • Has no effect in current Flora.


EnableRendering

  • Master scene toggle for Flora rendering.

EnableTerrainFoliage

  • Enables Flora rendering for terrain trees/details.

AutoRegisterTerrains

  • Automatically registers active terrains using FloraTerrainProvider.


AllowGPUOcclusionCulling

  • Scene-level gate for GPU occlusion.

AllowPerObjectMotionVectors

  • Scene-level gate for per-object motion vectors.

AllowPerTreeMotionVectors

  • Tree motion vectors; requires AllowPerObjectMotionVectors.

AllowPerDetailMotionVectors

  • Detail motion vectors; requires AllowPerObjectMotionVectors.

AllowPerTreeLightProbes

  • Enables per-tree probe sampling.

AllowPerDetailLightProbes

  • Enables per-detail probe sampling.

AllowDensityCulling

  • Enables density systems in this scene.

AllowLegacyLightProbes

  • Enables legacy baked light-probe usage for scene content.


DetailUnloadDelayFrames

  • Frames to keep out-of-range detail patches loaded before unload.

DetailLoadBudgetPerFrame

  • Max detail patches loaded per frame (0 = no budget cap).

Runtime User Settings Workflow

You can apply user-controlled render/density values at Start (or any runtime point) via the global Flora volume components:

Use Override(...) instead of assigning .value directly, so the volume parameter is actually active.

How To Verify

  • Disable EnableRendering and confirm Flora-rendered content disappears.

  • Disable EnableTerrainFoliage and confirm terrain foliage returns to non-Flora behavior.

  • Change detail budget/delay and verify streaming behavior near distance boundaries.

Last updated