Skip to main content

Meta_Light

Module: Metanodes / Definitions

A Light lights the scene. It is intended to be a child of a Meta_Assembly so it can be positioned in the scene.

#include <meta_importables.hpp>

Public Types

TypeName
enumIDX { Idx_Enabled, Idx_Type, Idx_Colour, Idx_Radius, Idx_SpotCone, Idx_ShadowMap, Idx_ShadowMapSize, Idx_ShadowClipOffset, Idx_Intensity, Idx_ShadowBlur, Idx_ShadowOverdarken, Idx_ShadowStrength, Idx_ShadowBoundsNode, Idx_Texture, Idx_AreaSize, Idx_InverseSquareFalloff, Idx_CascadedShadowMap, Idx_CascadedShadowMapSplits, Idx_CascadedShadowMapStaggered, Idx_MaxViewDistance, Idx_MaxViewDistanceFade, Idx_LockShadowMap }
Property index.
enumLIGHTTYPE { LIGHTTYPE_DIR, LIGHTTYPE_POINT, LIGHTTYPE_SPOT, LIGHTTYPE_AMBIENT, LIGHTTYPE_AREA }
Values for Idx_Type.

Public Types Documentation

enum IDX

EnumeratorValueDescription
Idx_Enabledbool - Whether the light is enabled
Idx_TypeLIGHTTYPE (int) - Type of light
Idx_Colourvec3f - Colour that this light emits
Idx_Radiusworld_float - For Point and Spot types: The distance at which the light fades to 100% black. If zero, no fading will be applied
Idx_SpotConevec2f - For Spot type: X = cone cutoff angle (0-90 degrees), Y = cone intensity distribution exponent (0-128)
Idx_ShadowMapbool - For all types except Ambient: Cast shadows from visuals that have their shadow caster property enabled
Idx_ShadowMapSizeint - Resoltion of the shadow map texture
Idx_ShadowClipOffsetfloat - Offset of shadowmap near clip plane
Idx_Intensityfloat - Scalar to apply to light colour when doing light calculation
Idx_ShadowBlurint - The number of times to blur the shadowmap
Idx_ShadowOverdarkenfloat - How much to overdarken the shadow to compensate for light bleeding
Idx_ShadowStrengthfloat - How dark the shadow is, 0=no shadow, 1=jet black shadow
Idx_ShadowBoundsNodelink = If set, adjusts the shadow map for a directional light to include just this node instead of the whole scene
Idx_TextureUnused.
Idx_AreaSizevec2f - For Area type: Size of the light surface
Idx_InverseSquareFalloffbool - For Point and Spot types: Causes the light closest to its source to be very bright, getting dimmer very quickly as it moves to the radius bool - If true and this is a directional light then the renderer will use the view-dependent cascaded shadowmap method for shadows. This method is costly to the frame rate because all shadow casters in the scene are redrawn 4 times every frame, but give consistently high resolution shadows regardless of scene size and view position.
Idx_CascadedShadowMap
Idx_CascadedShadowMapSplitsvec4w - These define the distances from the viewer where each of the 4 cascades ends. The smaller the value the more detailed the shadow in that cascade but the less area it covers in the world. Each distance is relative to the previous distance, except for the first which is relative to the near clip plane of whichever view is using the shadow map. e.g. if the values were 5,5,5,5 then the first cascade would cover an area from 0 to 5 metres from the near clip plane, the second cascade would cover from 5 metres to 10 metres, the third from 10 to 15 etc.
Idx_CascadedShadowMapStaggeredbool - If true, only one split of the cascaded shadow map will be drawn per frame, cycling through to the next split each frame.
Idx_MaxViewDistancefloat - The maxmimum distance from the camera at which this light will be rendered, or zero if it should render at any distance.
Idx_MaxViewDistanceFadefloat - The proportion of MaxViewDistance over which the light fades out smoothly.
Idx_LockShadowMapbool - if true the shadow map of the light will not be redrawn until it's set to false again

Property index.

enum LIGHTTYPE

EnumeratorValueDescription
LIGHTTYPE_DIRDirectional light (Symbols - C: "TypeDirectional", Lua: __Light_TypeDirectional)
LIGHTTYPE_POINTPoint light (Symbols - C: "TypePoint", Lua: __Light_TypePoint)
LIGHTTYPE_SPOTSpot light (Symbols - C: "TypeSpot", Lua: __Light_TypeSpot)
LIGHTTYPE_AMBIENTAmbient light (Symbols - C: "TypeAmbient", Lua: __Light_TypeAmbient)

Values for Idx_Type.