This page has been translated automatically.
UnigineEditor
Interface Overview
Assets Workflow
Settings and Preferences
Adjusting Node Parameters
Setting Up Materials
Setting Up Properties
Landscape Tool
Using Editor Tools for Specific Tasks
FAQ
Programming
Fundamentals
Setting Up Development Environment
Usage Examples
UnigineScript
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine and Tools
GUI
Double Precision Coordinates
API
Containers
Common Functionality
Controls-Related Classes
Engine-Related Classes
Filesystem Functionality
GUI-Related Classes
Math Functionality
Node-Related Classes
Networking Functionality
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
CIGI Client Plugin
Rendering-Related Classes
Warning! This version of documentation is OUTDATED, as it describes an older SDK version! Please switch to the documentation for the latest SDK version.
Warning! This version of documentation describes an old SDK version which is no longer supported! Please upgrade to the latest SDK version.

Unigine::Light Class

Header: #include <UnigineLights.h>
Inherits: Node

This base class is used to create light sources and shadows from them. The lights can be rendered as a simplified deferred lighting.

Light Class

Members


Ptr<Light> cast( const Ptr<Node> & node )

Casts a Light out of the Node instance.

Arguments

  • const Ptr<Node> & node - Pointer to Node.

Return value

Pointer to Light.

void setAttenuationPower( float power )

Updates the attenuation power of the light. This parameter determines how fast the intensity decreases up to the attenuation distance set for the light source. If the attenuation equals to zero or is close to it, the edge between illuminated and non-illuminated areas will be sharp.

Arguments

  • float power - Light attenuation power.

float getAttenuationPower( )

Returns the attenuation power of the light. This parameter determines how fast the intensity decreases up to the attenuation distance set for the light source. If the attenuation equals to zero or is close to it, the edge between illuminated and non-illuminated areas will be sharp. The default is 1.

Return value

Light attenuation power.

void setColor( const Math::vec4 & color )

Updates the color of the light source. The method takes effect only when the Classic color mode is set.

Arguments

  • const Math::vec4 & color - New color in the RGBA format.

Math::vec4 getColor( )

Returns the color of the light source. The default is opaque white, (1, 1, 1, 1). The method takes effect only when the Classic color mode is set.

Return value

Color of the light source in the RGBA format.

void setDepthTexture( const Ptr<Texture> & texture )

Sets the depth texture (shadow map) for the light source.

Arguments

  • const Ptr<Texture> & texture - Depth texture smart pointer.

Ptr<Texture> getDepthTexture( )

Returns the current depth texture (shadow map) of the light source.

Return value

Depth texture smart pointer.

void setFadeDistance( float distance )

Updates a distance, at which the light gradually disappears. This parameter enables to render the light with decreasing radiance after the Visible distance is past.

Arguments

  • float distance - Distance in units.

float getFadeDistance( )

Returns the current distance, at which the light source gradually disappears. This parameter enables to render the light with decreasing radiance after the Visible distance is past.

Return value

Distance in units.

void setIntensity( float intensity )

Updates the multiplier for the light color used to control color intensity. The higher the value, the brighter the light is.
  • The minimum value of 1 corresponds to the least saturated light color.
  • The maximum value of 100 equals the most bright and intense color.

Arguments

  • float intensity - New color multiplier.

float getIntensity( )

Returns the multiplier of the light color used to control color intensity. The higher the value, the brighter the light is.

Return value

Light color multiplier.

Ptr<Light> getLight( )

Returns a light pointer.

Return value

The light pointer.

void setLightMask( int mask )

Updates the light mask for the light source.

For the shadow from an object's surface to be rendered for the light source, this mask must match the following masks (one bit, at least):

Arguments

  • int mask - Integer, each bit of which is used to set a mask.

int getLightMask( )

Returns the current light mask for the light source.

For the shadow from an object's surface to be rendered for the light source, this mask must match the following masks (one bit, at least):

Return value

Integer, each bit of which is used to set a mask.

void setRenderTransparent( int transparent )

Enables or disables rendering of the light from the source on transparent objects.

Arguments

  • int transparent - 1 to render the light from the source on transparent objects, 0 not to render.

int getRenderTransparent( )

Returns a value indicating if the light from the source is rendered on transparent objects.

Return value

1 if the light from the source is rendered on transparent objects; otherwise, 0.

void setRenderWater( int water )

Enables or disables rendering of the light from the source on water objects.

Arguments

  • int water - 1 to render the light from the source on water objects, 0 not to render.

int getRenderWater( )

Returns a value indicating if the light from the source is rendered on water objects.

Return value

1 if the light from the source is rendered on water objects; otherwise, 0.

void setShadow( int shadow )

Updates a value indicating if the light casts shadows from surfaces with the Cast Shadow material.

Arguments

  • int shadow - 1 to cast shadows, 0 not to cast.

int getShadow( )

Returns a value indicating if the light source casts shadows from surfaces with the Cast Shadow material.

Return value

1 if the light source casts shadows; otherwise, 0.

void setShadowBias( float bias )

Updates the constant offset of depth values in a shadow map.
  • If the shadow acne appears, the bias value should be increased. This procedure eliminates the self-shadowing effect, as the points will appear closer to light source when compared to the map depth value.
  • If the bias value is set too high, the shadow will look detached from the object casting it (see the 3rd picture below).

Arguments

  • float bias - New constant depth offset. If a negative value is provided, 0 will be used instead.

float getShadowBias( )

Returns the constant offset of depth values in a shadow map.
  • If the shadow acne appears, the bias value should be increased. This procedure eliminates the self-shadowing effect, as the points will appear closer to light source when compared to the map depth value.
  • If the bias value is set too high, the shadow will look detached from the object casting it (see the 3rd picture below).

Return value

Constant depth offset.

void setShadowDistance( float distance )

Updates a distance, at which shadow from the light source starts fading out to nonexistence.

Arguments

  • float distance - Distance in units.

float getShadowDistance( )

Returns the current distance, at which shadow from the light source starts fading out to nonexistence.

Return value

Distance in units.

void setShadowNormalBias( float bias )

Updates the shadow bias that is achieved by shifting the surface on which the shadow falls. The surface is shifted along normals stored in the normal map. Depending on the normal map of the surface, the shadow may differ for the same values of the normal bias.

Arguments

  • float bias - New normal bias. If a negative value is provided, 0 will be used instead.

float getShadowNormalBias( )

Returns the shadow bias that is achieved by shifting the surface on which the shadow falls. The surface is shifted along normals stored in the normal map. Depending on the normal map of the surface, the shadow may differ for the same values of the normal bias.

Return value

The normal bias.

void setShadowResolution( int resolution )

Updates the size of the shadow map created for the light source.
  • The higher the resolution, the smoother and true to life the result is.
  • The lower the resolution, the more blocky and jagged the shadows outline appears.

Arguments

  • int resolution - New shadow map size:
    • -1  — default (512×512)
    • 0  — 64×64
    • 1  — 128×128
    • 2  — 256×256
    • 3  — 512×512
    • 4  — 1024×1024
    • 5  — 2048×2048
    • 6  — 4096×4096

int getShadowResolution( )

Returns the size of the shadow map created for the light source.

Return value

Shadow map size:
  • -1  — default (512×512)
  • 0  — 64×64
  • 1  — 128×128
  • 2  — 256×256
  • 3  — 512×512
  • 4  — 1024×1024
  • 5  — 2048×2048
  • 6  — 4096×4096

void setShadowSoftness( float softness )

Updates the size of the blur applied to the shadow edge.
  • Low softness values corresponds to the crisp and sharp shadow edges.
  • Higher softness values serve to accentuate the effect of soft indirect lighting.

Arguments

  • float softness - New softness of shadows.

float getShadowSoftness( )

Returns the size of the blur applied to the shadow edge.
  • Low softness values corresponds to the crisp and sharp shadow edges.
  • Higher softness values serve to accentuate the effect of soft indirect lighting.

Return value

Softness of shadows.

void setShadowScreenSpace( int space )

Enables or disables screen-space shadows for the light source. When this option is enabled, penumbras from the light source are calculated using the ray tracing algorithm.

Arguments

  • int space - 1 to enable screen-space shadows for the light source, 0 to disable. The default value is 0.

int getShadowScreenSpace( )

Returns a value indicating if screen-space shadows for the light source are enabled. When this option is enabled, penumbras from the light source are calculated using the ray tracing algorithm.

Return value

1 if screen-space shadows for the light source are enabled; otherwise, 0.

void setShadowScreenSpaceNoiseRay( float ray )

Sets the intensity of the ray noise used to calculate screen-space shadows for the light source. This parameter is used to reduce the banding effect.

Arguments

  • float ray - Ray noise intensity. The default value is 0.5. The higher is the value, the less pronounced is the banding effect. However, this option significantly affects performance.
    Notice
    Screen-space shadows must be enabled, see the setShadowScreenSpace() method.

float getShadowScreenSpaceNoiseRay( )

Returns the current intensity of the ray noise used to calculate screen-space shadows for the light source.

Return value

Ray noise intensity.

void setShadowScreenSpaceNoiseStep( float step )

Sets the intensity of the step noise used to calculate screen-space shadows for the light source. This parameter is used to reduce the banding effect.

Arguments

  • float step - Step noise intensity. The default value is 0.5. The higher is the value, the less pronounced is the banding effect. However, this option significantly affects performance.
    Notice
    Screen-space shadows must be enabled, see the setShadowScreenSpace() method.

float getShadowScreenSpaceNoiseStep( )

Returns the current intensity of the step noise used to calculate screen-space shadows for the light source.

Return value

Step noise intensity.

void setShadowScreenSpaceNumRays( int rays )

Sets the number of rays used to calculate screen-space shadows for the light source.

Arguments

  • int rays - Number of rays. The default value is 8. The higher is the value, the better is the quality of shadows. However, this option significantly affects performance.
    Notice
    Screen-space shadows must be enabled, see the setShadowScreenSpace() method.

int getShadowScreenSpaceNumRays( )

Returns the current number of rays used to calculate screen-space shadows for the light source.

Return value

Number of rays.

void setShadowScreenSpaceNumSteps( int steps )

Sets the number of steps used to calculate screen-space shadows for the light source.

Arguments

  • int steps - Number of steps. The default value is 8. The higher is the value, the better is the quality of shadows. However, this option significantly affects performance.
    Notice
    Screen-space shadows must be enabled, see the setShadowScreenSpace() method.

int getShadowScreenSpaceNumSteps( )

Returns the current number of steps used to calculate screen-space shadows for the light source.

Return value

Number of steps.

void setShadowScreenSpaceSoftness( float softness )

Returns the softness value of the screen-space shadows for the light source.

Arguments

  • float softness - Screen-space shadows softness. The default value is 0.4. The higher is the value, the softer are the shadows.
    Notice
    Screen-space shadows must be enabled, see the setShadowScreenSpace() method.

float getShadowScreenSpaceSoftness( )

Returns the current softness value of the screen-space shadows for the light source.

Return value

Screen-space shadows softness.

void setShadowScreenSpaceStepSize( float size )

Sets the size of the step used to calculate screen-space shadows for the light source. This parameter can be used to adjust calculation of shadows for specific sizes of objects.

Arguments

  • float size - Step size. The default value is 0.5.
    Notice
    Screen-space shadows must be enabled, see the setShadowScreenSpace() method.

float getShadowScreenSpaceStepSize( )

Returns the current size of the step used to calculate screen-space shadows for the light source.

Return value

Step size.

void setShadowScreenSpaceThreshold( float threshold )

Sets the threshold value used to calculate screen-space shadows for the light source. This parameter is used to adjust the look of screen-space shadows.

Arguments

  • float threshold - Screen-space shadows threshold. The default value is 1.0.
    Notice
    Screen-space shadows must be enabled, see the setShadowScreenSpace() method.

float getShadowScreenSpaceThreshold( )

Returns the current threshold value used to calculate screen-space shadows for the light source.

Return value

Screen-space shadows threshold.

void setViewportMask( int mask )

Updates a bit mask for rendering into the viewport. The light is rendered, if its mask matches the player's one.

Arguments

  • int mask - Integer, each bit of which is used to set a mask.

int getViewportMask( )

Returns the current bit mask for rendering into the viewport. The light is rendered, if its mask matches the player's one.

Return value

Integer, each bit of which is used to set a mask.

void setVisibleDistance( float distance )

Updates a distance, at which the light source starts fading. If the distance is set to infinity, the source is always rendered.

Arguments

  • float distance - Distance in units.

float getVisibleDistance( )

Returns the current distance, at which the light source starts fading. If the distance is set to infinity, the source is always rendered.

Return value

Distance in units.

void setLensFlaresEnabled( int enabled )

Enables or disables the per-light lens flare effect for the light source.
Notice

Arguments

  • int enabled - 1 to enable the per-light lens flare effect for the light source, 0 to disable. The default value is 0.

int isLensFlaresEnabled( )

Returns a value indicating if the per-light lens flare effect is enabled for the light source.
Notice
This feature is available only for: Omni Lights, Projected Lights and World Lights.

Return value

1 if the per-light lens flare effect for the light source is enabled; otherwise, 0.

void allocateLensFlares( int num )

Allocate a buffer for a given number of lens flares to be created. With this function, memory can be allocated once rather than in chunks, making the creation faster.
Notice
The lens flare effect must be enabled for the light source. This feature is available only for: Omni Lights, Projected Lights and World Lights.

Arguments

  • int num - Number of lens flares to be created in the allocated buffer.

void addLensFlare( )

Add a new lens flare for the per-light lens flare effect.
Notice
The lens flare effect must be enabled for the light source. This feature is available only for: Omni Lights, Projected Lights and World Lights.

Ptr<LightLensFlare> getLensFlare( int num )

Returns the given lens flare from the list of the ones used for the per-light lens flare effect.
Notice
The lens flare effect must be enabled for the light source. This feature is available only for: Omni Lights, Projected Lights and World Lights.

Arguments

  • int num - Lens flare number.

Return value

Light lens flare smart pointer.

void cloneLensFlare( int num )

Creates a clone of the lens flare with a given number in the list of lens flares used for the per-light lens flare effect.
Notice
The lens flare effect must be enabled for the light source. This feature is available only for: Omni Lights, Projected Lights and World Lights.

Arguments

  • int num - Number of lens flare to be cloned.

void removeLensFlare( int num )

Removes the lens flare with a given number from the list of lens flares used for the per-light lens flare effect.
Notice
The lens flare effect must be enabled for the light source. This feature is available only for: Omni Lights, Projected Lights and World Lights.

Arguments

  • int num - Number of lens flare to be removed.

int getNumLensFlares( )

Returns the total number of lens flares used for the per-light lens flare effect.
Notice
The lens flare effect must be enabled for the light source. This feature is available only for: Omni Lights, Projected Lights and World Lights.

Return value

Number of lens flares used for the per-light lens flare effect.

void clearLensFlares( )

Clears the list of lens flares used for the per-light lens flare effect.
Notice
The lens flare effect must be enabled for the light source. This feature is available only for: Omni Lights, Projected Lights and World Lights.

void setLensFlaresIntensity( float intensity )

Sets the intensity of per-light lens flares.
Notice
The lens flare effect must be enabled for the light source. This feature is available only for: Omni Lights, Projected Lights and World Lights.

Arguments

  • float intensity - Intensity of per-light lens flares.Higher values make the effect more pronounced.

float getLensFlaresIntensity( )

Returns the current intensity of per-light lens flares.
Notice
The lens flare effect must be enabled for the light source. This feature is available only for: Omni Lights, Projected Lights and World Lights.

Return value

Intensity of per-light lens flares.Higher values make the effect more pronounced.

void setLensFlaresUseLightColor( int color )

Enables or disables light color modulation for per-light lens flares. When enabled, the lens flares will have the same color as the light source.
Notice
The lens flare effect must be enabled for the light source. This feature is available only for: Omni Lights, Projected Lights and World Lights.

Arguments

  • int color - 1 to enable light color modulation for the per-light lens flare effect, 0 to disable. The default value is 0.

int isLensFlaresUseLightColor( )

Returns a value indicating if light color modulation is enabled for per-light lens flares. When enabled, the lens flares will have the same color as the light source.
Notice
The lens flare effect must be enabled for the light source. This feature is available only for: Omni Lights, Projected Lights and World Lights.

Return value

1 if light color modulation for per-light lens flares is enabled; otherwise, 0.

void setLensFlaresOcclusionFade( float fade )

Sets the lens flare occlusion fade value for the cases when the light source becomes occluded by an object.
Notice
The lens flare effect must be enabled for the light source. This feature is available only for: Omni Lights, Projected Lights and World Lights.

Arguments

  • float fade - Lens flare occlusion fade value in the range [0.0f; 1.0f]. By the value of 0.0f, lens flares disappear abruptly, as the light source becomes occluded by an object. If 1.0f is set, lens flares will fade out gradually.

float getLensFlaresOcclusionFade( )

Returns the current lens flare occlusion fade value for the cases when the light source becomes occluded by an object.
Notice
The lens flare effect must be enabled for the light source. This feature is available only for: Omni Lights, Projected Lights and World Lights.

Return value

Current lens flare occlusion fade value in the range [0.0f; 1.0f]. By the value of 0.0f, lens flares disappear abruptly, as the light source becomes occluded by an object. If 1.0f is set, lens flares will fade out gradually.

void setLensFlaresOcclusionFadeBorder( float border )

Sets the lens flare occlusion fade value for the cases when the light source becomes occluded by the edges of the screen.
Notice
The lens flare effect must be enabled for the light source. This feature is available only for: Omni Lights, Projected Lights and World Lights.

Arguments

  • float border - Lens flare occlusion fade value in the range [0.0f; 1.0f]. By the value of 0.0f, lens flares disappear abruptly, as the light source becomes occluded by an object. If 1.0f is set, lens flares will fade out gradually.

float getLensFlaresOcclusionFadeBorder( )

Returns the current lens flare occlusion fade value for the cases when the light source becomes occluded by the edges of the screen.
Notice
The lens flare effect must be enabled for the light source. This feature is available only for: Omni Lights, Projected Lights and World Lights.

Return value

Current lens flare occlusion fade value in the range [0.0f; 1.0f]. By the value of 0.0f, lens flares disappear abruptly, as the light source becomes occluded by the edges of the screen. If 1.0f is set, lens flares will fade out gradually.

void setLensFlaresWorldPositionOffset( const Math::vec3 & offset )

Sets the offset from the world position of the light source for the per-light lens flares. Offset is not available for World Lights.
Notice
The lens flare effect must be enabled for the light source. This feature is available only for: Omni Lights, Projected Lights and World Lights.

Arguments

  • const Math::vec3 & offset - Vector representing the offset of lens flares from the light source world position.

Math::vec3 getLensFlaresWorldPositionOffset( )

Returns the current offset from the world position of the light source for the per-light lens flares. Offset is not available for World Lights.
Notice
The lens flare effect must be enabled for the light source. This feature is available only for: Omni Lights, Projected Lights and World Lights.

Return value

Vector representing the current offset of lens flares from the light source world position.

void setLensFlaresTextureName( const char * name )

Sets the name of the texture to be used for the per-light lens flare effect. This texture stores images for all lens flares used to render lens flares.
Notice
The lens flare effect must be enabled for the light source. This feature is available only for: Omni Lights, Projected Lights and World Lights.

Arguments

  • const char * name - Texture name.

const char * getLensFlaresTextureName( )

Returns the name of the texture currently used for the per-light lens flare effect. This texture stores images for all lens flares used to render lens flares.
Notice
The lens flare effect must be enabled for the light source. This feature is available only for: Omni Lights, Projected Lights and World Lights.

Return value

Texture name.

void setLux( float lux )

Sets an intensity of a light color (as perceived by the human eye) in lux. In UNIGINE, all light sources have the intensity of 1 by default, which is equal to 100000 lux.

Arguments

  • float lux - Light color intensity, lux.

float getLux( )

Returns the intensity of the light color (as perceived by the human eye) in lux. In UNIGINE, all light sources have the intensity of 1 by default, which is equal to 100000 lux.

Return value

Light color intensity, lux.

void setColorTemperature( float temperature )

Sets a light source temperature used for light color calculation.

Arguments

  • float temperature - Light source temperature in range [0;40000].

float getColorTemperature( )

Returns the light source temperature used for light color calculation.

Return value

Light source temperature [0;40000].

void setColorFilter( const Math::vec4 & filter )

Sets a color multiplier for the light source color (calculated using the color temperature value). This can be used to imitate colored glass. The method takes effect only when the Temperature color mode is set.

Arguments

  • const Math::vec4 & filter - Color.

Math::vec4 getColorFilter( )

Returns the color multiplier for the light source color (calculated using the color temperature value). This is used to imitate colored glass. The method takes effect only when the Temperature color mode is set.

Return value

Color.

void setColorMode( int mode )

Sets color calculation mode for the light source. Light source color can be defined by the color value (classic mode) or by the color temperature and color filter values (physically based mode).

Arguments

int getColorMode( )

Returns the current color calculation mode of the light source. Light source color can be defined by the color value (classic mode) or by the color temperature and color filter values (physically based mode).

Return value

Current color calculation mode, one of the following values:

Math::vec4 calculateFinalColor( )

Calculates the final color of the light source depending on the calculation mode used.

Return value

Resulting color of the light source.

int saveStateLight( const Ptr<Stream> & stream )

Saves the state of the light source to the specified stream.

Arguments

  • const Ptr<Stream> & stream - Stream smart pointer.

int restoreStateLight( const Ptr<Stream> & stream )

Restores the state of the light source from the specified stream.

Arguments

  • const Ptr<Stream> & stream - Stream smart pointer.

int saveStateLensFlares( const Ptr<Stream> & stream )

Saves the state of the per-light lens flare effect to the specified stream.

Arguments

  • const Ptr<Stream> & stream - Stream smart pointer.

int restoreStateLensFlares( const Ptr<Stream> & stream )

Restores the state of the per-light lens flare effect from the specified stream.

Arguments

  • const Ptr<Stream> & stream - Stream smart pointer.
Last update: 2018-12-27
Build: ()