Skip to main content

Meta_LightProbe

Module: Metanodes / Definitions

A LightProbe represents a local skybox providing dynamic reflections of the surrounding environment. More...

#include <meta_division.hpp>

Public Types

TypeName
enumIDX { Idx_Enabled, Idx_Resolution, Idx_IncludeNode, Idx_ExcludeNode, Idx_ProxyType, Idx_ProxySize, Idx_Shadows, Idx_UpdateMode, Idx_UpdateAndStoreNow, Idx_Texture, Idx_Mode, Idx_BakedTexture, Idx_ViewBoundsNode }
Property index.
enumProbeMode { Probe_Bake, Probe_Custom }
Values for Idx_Mode.
enumProxyType { Proxy_None, Proxy_Ellipsoid, Proxy_Box }
Values for Idx_ProxyType.
enumUpdateMode { Update_Auto, Update_Always, Update_Manual }
Values for Idx_UpdateMode.

Detailed Description

struct Meta_LightProbe;

A LightProbe represents a local skybox providing dynamic reflections of the surrounding environment.

These are positioned in the scene by adding them as a child of an Assembly node and transforming that.

Public Types Documentation

enum IDX

EnumeratorValueDescription
Idx_Enabledbool - If enabled, the light probe cubemap will be dynamically updated and used as an environment map on intersecting scene geometry.
Idx_Resolutionint - Resolution of each cubemap face.
Idx_IncludeNodelink - A node in the scene that should render into the light probe (defaults to the root scene, in other words 'everything').
Idx_ExcludeNodelink - A node in the scene that should not render into the light probe (defaults to null, in other words 'nothing').
Idx_ProxyTypeProxyType (int) - The type of proxy geometry to use.
Idx_ProxySizevec3f - The world-space size of the light probes proxy geometry, everything inside this geometry will use the light probes cubemap as an environment map.
Idx_Shadowsbool - Whether or not to render shadows into the probe.
Idx_UpdateModeUpdateMode (int) - Describes how the probe should update itself.
Idx_UpdateAndStoreNowbool - Transient property used as an event to trigger the manual rendering of the baked texture. Resets back to false after updating.
Idx_Texturelink - The custom texture used when Mode==Probe_Custom
Idx_ModeProbeMode (int) - Whether the probes image is rendered in-engine or comes from an external image file.
Idx_BakedTexturelink - The baked texture used when Mode==Probe_Bake
Idx_ViewBoundsNodelink - Defines the bounds within which the light probe should be used

Property index.

enum ProbeMode

EnumeratorValueDescription
Probe_BakeRender the probe image using the scene geometry. (Symbols - C: "Probe_Bake", Lua: __LightProbe_Probe_Bake)
Probe_CustomUse the Idx_Texture image instead of rendering. (Symbols - C: "Probe_Custom", Lua: __LightProbe_Probe_Custom)

Values for Idx_Mode.

enum ProxyType

EnumeratorValueDescription
Proxy_NoneNo proxy geometry (Symbols - C: "Proxy_None", Lua: __LightProbe_Proxy_None)
Proxy_EllipsoidEllipsoid proxy (Symbols - C: "Proxy_Ellipsoid", Lua: __LightProbe_Proxy_Ellipsoid)
Proxy_BoxBox proxy (Symbols - C: "Proxy_Box", Lua: __LightProbe_Proxy_Box)

Values for Idx_ProxyType.

enum UpdateMode

EnumeratorValueDescription
Update_AutoUpdate when the probe, or something in the scene changes; moves, is enabled/disabled etc. (Symbols - C: "Update_Auto", Lua: __LightProbe_Update_Auto)
Update_AlwaysContinually re-draw the cubemap regardless of whether or not anything changes; useful if the change isn't being picked up. (Symbols - C: "Update_Always", Lua: __LightProbe_Update_Always)
Update_ManualOnly update when "UpdateAndStoreNow" property is set to true, which causes it to draw the cubemap and save the result in the texture pointed to by the "Texture" property (it will create one if null), then it sets the "UpdateAndStoreNow" property back to false. On load if this mode is active the probe will just use the content of the linked "Texture". (Symbols - C: "Update_Manual", Lua: __LightProbe_Update_Manual)

Values for Idx_UpdateMode.