This page has been translated automatically.
Video Tutorials
Interface
Essentials
Advanced
How To
UnigineEditor
Interface Overview
Assets Workflow
Settings and Preferences
Working With Projects
Adjusting Node Parameters
Setting Up Materials
Setting Up Properties
Lighting
Landscape Tool
Sandworm
Using Editor Tools for Specific Tasks
Extending Editor Functionality
Built-in Node Types
Nodes
Objects
Effects
Decals
Light Sources
Geodetics
World Objects
Sound Objects
Pathfinding Objects
Players
Programming
Fundamentals
Setting Up Development Environment
Usage Examples
UnigineScript
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine 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
Objects-Related Classes
Networking Functionality
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
IG Plugin
CIGIConnector Plugin
Rendering-Related Classes
Content Creation
Content Optimization
Materials
Art Samples
Tutorials
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::LightVoxelProbe Class

Header: #include <UnigineLights.h>
Inherits from: Light

This class allows creating and managing voxel probes.

LightVoxelProbe Class

Enums

BAKE_INTERNAL_VOLUME#

NameDescription
BAKE_INTERNAL_VOLUME_HALF = 0Bake internal volume (voxels that don't touch geometry) in half resolution.
BAKE_INTERNAL_VOLUME_FULL = 1Bake internal volume (voxels that don't touch geometry) in full resolution.

BAKE_QUALITY#

Light baking quality preset of the voxel probe. Each preset includes recommended common baking quality settings, such as number of light rays simulated and sampling quality, that affect the time consumption of light baking and the final quality.
NameDescription
BAKE_QUALITY_DRAFT = 0The lowest sampling quality and number of rays simulated but the highest iterativity.
BAKE_QUALITY_LOW = 1Low sampling quality and number of light rays simulated.
BAKE_QUALITY_MEDIUM = 2Stable quality level is good for most cases.
BAKE_QUALITY_HIGH = 3High sampling quality and number of light rays simulated is quite enough for release production.
BAKE_QUALITY_ULTRA = 4Ultra baking quality might be useful to get rid of small inconsistencies on the release production.

Members


static LightVoxelProbePtr create ( ) #

Constructor. Creates a new voxel probe with default parameters.

int setTextureImage ( const Ptr<Image> & image ) #

Sets the given image as the 3D texture of the voxel probe.

Arguments

  • const Ptr<Image> & image - 3D texture to set.

Return value

1 if the cube texture is set successfully; otherwise, 0.

int getTextureImage ( const Ptr<Image> & image ) const#

Bakes lighting and saves into the given Image instance.

Arguments

  • const Ptr<Image> & image - Image into which the light will be baked.

Return value

1 if the light has been baked successfully; otherwise, 0.

void setAttenuationPower ( float power ) #

Sets the power of light attenuation used to simulate intensity gradual fading. This parameter determines how fast the intensity decreases up to the attenuation distance set for the light source.

Arguments

  • float power - Attenuation power value.

float getAttenuationPower ( ) const#

Returns the power of light attenuation used to simulate intensity gradual fading.

Return value

Attenuation power value.

void setBakeInternalVolume ( LightVoxelProbe::BAKE_INTERNAL_VOLUME volume ) #

Sets internal volume baking mode for the voxel probe (voxels that don't touch geometry.
Notice
If internal volume baking is disabled, only the voxels covering geometry are baked while empty ones are skipped.

Arguments

LightVoxelProbe::BAKE_INTERNAL_VOLUME getBakeInternalVolume ( ) const#

Returns the current internal volume baking mode for the voxel probe (voxels that don't touch geometry).
Notice
If internal volume baking is disabled, only the voxels covering geometry are baked while empty ones are skipped.

Return value

Current internal volume baking. One of the BAKE_INTERNAL_VOLUME_* values.

void setVoxelSize ( float size ) #

Sets the size of a voxel of the voxel probe.

Arguments

  • float size - Voxel Size value, in units.

float getVoxelSize ( ) const#

Returns voxel size of the voxel probe.

Return value

Voxel Size value.

void setBakeViewportMask ( int mask ) #

Sets a mask that specifies materials to take part in light baking.

Arguments

  • int mask - Bake viewport mask (integer, each bit of which is used to represent a mask).

int getBakeViewportMask ( ) const#

Returns the mask that specifies materials taking part in baking.

Return value

The bake viewport mask (integer, each bit of which is used to represent a mask).

void setTexturePath ( const char * path ) #

Sets a path to a light texture.

Arguments

  • const char * path - Path to a light texture.

const char * getTexturePath ( ) const#

Returns the path to the lighting texture used for the voxel probe.

Return value

Path to the texture.

void setBoxSize ( const Math::vec3 & size ) #

Sets the box size for the voxel probe.

Arguments

  • const Math::vec3 & size - Box size along X, Y and Z axes.

Math::vec3 getBoxSize ( ) const#

Returns the current box size for the environment probe.

Return value

Box size along X, Y and Z axes.

void setBakeZFar ( float zfar ) #

Sets the distance to the far clipping plane used for every voxel during the light baking.

Arguments

  • float zfar - Distance to the far clipping plane, in units.

float getBakeZFar ( ) const#

Returns the distance to the far clipping plane used for every voxel during light baking.

Return value

Distance to the far clipping plane.

void setAmbientCubicFiltering ( bool filtering ) #

Enables or disables cubic filtering for ambient lighting of voxel probe.

Arguments

  • bool filtering - 1 to enable cubic filtering of ambient lighting; 0 to disable it.
    Notice
    If cubic filtering is disabled, linear texture filtering is used.

bool isAmbientCubicFiltering ( ) const#

Returns a value indicating if cubic filtering is applied to voxel probe ambient lighting.

Return value

1 if the cubic filtering is applied to voxel probe ambient lighting; otherwise, 0.

void setAmbientBias ( float bias ) #

Sets the bias for ambient lighting for the voxel probe.

Arguments

  • float bias - Ambient bias value, in voxels.

float getAmbientBias ( ) const#

Returns the bias of ambient lighting.

Return value

Ambient bias value, in voxels.

void setAttenuationDistance ( const Math::vec3 & distance ) #

Sets the distance from the light source shape, at which the light source doesn't illuminate anything.

Arguments

  • const Math::vec3 & distance - Distance from the light source shape, in units along X, Y and Z axis.

Math::vec3 getAttenuationDistance ( ) const#

Returns the distance from the light source shape, at which the light source doesn't illuminate anything.

Return value

Distance from the light source shape, in units.

void setTexture ( const Ptr<Texture> & texture ) #

Sets the given texture as the lighting texture of the voxel probe.

Arguments

  • const Ptr<Texture> & texture - 3D texture pointer to set.

Ptr<Texture> getTexture ( ) const#

Returns the Texture instance containing the baked lighting.

Return value

Texture instance.

void setUseSunColor ( bool color ) #

Enables or disables sun color modulation for the voxel probe (the light of the environment probe changes as the sun color changes).
Notice

To bake lighting from the sky separately with this option enabled, it is recommended to enable baking visibility for the sky only, while disabling it for other light sources.

Changing this option requires the lighting to be re-baked.

Arguments

  • bool color - 1 to enable sun color modulation for the environment probe, 0 to disable it. The default value is 0.

bool isUseSunColor ( ) const#

Returns a value indicating if sun color modulation for the voxel probe is enabled.

Return value

1 if sun color modulation for the environment probe is enabled; otherwise, 0.

Math::ivec3 getResolution ( ) #

Returns the resolution of the voxel probe according to the voxel size.

Return value

Resolution of the voxel probe along X, Y and Z axis, in voxels.

void setReflectionEnabled ( bool enabled ) #

Enables or disables reflections for the voxel probe.

Arguments

  • bool enabled - 1 to enable reflections for the voxel probe; 0 to disable it.

bool isReflectionEnabled ( ) const#

Returns a value indicating if reflections are enabled for the voxel probe.

Return value

1 if reflections are enabled for the voxel probe; otherwise, 0.

void setReflectionBias ( float bias ) #

Sets the bias for reflections of the voxel probe.

Arguments

  • float bias - Reflection bias value, in voxels.

float getReflectionBias ( ) const#

Returns the bias of reflections.

Return value

Reflection bias value, in voxels.

void setReflectionCubicFiltering ( bool filtering ) #

Enables or disables cubic filtering for reflections of the voxel probe.

Arguments

  • bool filtering - 1 to enable cubic filtering for reflections; 0 to disable it.
    Notice
    If cubic filtering is disabled, linear texture filtering is used.

bool isReflectionCubicFiltering ( ) const#

Returns a value indicating if cubic filtering is applied to reflections textures.

Return value

1 if the cubic filtering is applied to reflections textures; otherwise, 0.

void setReflectionVisibilityRoughnessMin ( float val ) #

Sets the lower bound of the roughness range within which the reflections of the voxel probe are visible.

Arguments

  • float val - The lower roughness value within the [0.0f, 1.0f] range.

float getReflectionVisibilityRoughnessMin ( ) const#

Returns the lower bound of the roughness range within which the reflections of the voxel probe are visible.

Return value

Lower material roughness value within the [0.0f, 1.0f] range.

void setReflectionVisibilityRoughnessMax ( float val ) #

Sets the higher bound of the roughness range within which the reflections of the voxel probe are visible.

Arguments

  • float val - Higher roughness value within the [0.0f, 1.0f] range.

float getReflectionVisibilityRoughnessMax ( ) const#

Returns the higher bound of the roughness range within which the reflections of the voxel probe are visible.

Return value

The higher roughness value within the [0.0f, 1.0f] range.

static int type ( ) #

Returns the type of the node.

Return value

LightVoxelProbe type identifier.

long long getVideoMemoryUsage ( ) #

Returns a value defining how much memory the light texture takes according to its size. The memory is calculated in accordance to the following formula: Memory = SizeX × SizeY × SizeZ × Sides × FormatMemory
  • SizeX, SizeY, SizeZ - the dimensions of the 3D light texture, in voxels.
  • Sides - number of sides of each voxel, equal to 6.
  • FormatMemory - a memory usage amount for the texture in RGBA16 format, equal to 8.

Return value

A texture memory usage, in bytes.

void setAdditiveBlending ( bool blending ) #

Enables or disables additive blending mode for the voxel probe. This option offers more flexibility in lighting control. You can use it to blend lighting of several voxel probes together and control them separately (e.g. make a separate voxel probe for an indoor emissive light source and blend it with another voxel probe with lighting baked from the sky, having the ability to enable and disable them separately).
Notice
Voxel probes with additive blending enabled cannot be used to add lighting details (e.g. creating a small high-detail voxel probe inside a large low-detail one). Such probes do not replace each other, as they are blended instead.

Arguments

  • bool blending - 1 to enable additive blending mode for the voxel probe; 0 to disable it.

bool isAdditiveBlending ( ) const#

Returns a value indicating if the additive blending mode for the voxel probe is enabled. This option offers more flexibility in lighting control. You can use it to blend lighting of several voxel probes together and control them separately (e.g. make a separate voxel probe for an indoor emissive light source and blend it with another voxel probe with lighting baked from the sky, having the ability to enable and disable them separately).
Notice
Voxel probes with additive blending enabled cannot be used to add lighting details (e.g. creating a small high-detail voxel probe inside a large low-detail one). Such probes do not replace each other, as they are blended instead.

Return value

1 if the additive blending mode for the voxel probe; otherwise, 0.

void setBakeVisibilityEmission ( bool emission ) #

Enables or disables baking of emission light sources to the voxel probe. You can use this option together with additive blending to provide more flexibility in light baking. Thus, you can make voxel probes independent of each other and combine them to produce some sort of dynamic GI effect.

Arguments

  • bool emission - 1 to enable baking of emission light sources to the voxel probe; 0 to disable it.

bool isBakeVisibilityEmission ( ) const#

Returns a value indicating if emission light sources are to be baked to the voxel probe. You can use this option together with additive blending to provide more flexibility in light baking. Thus, you can make voxel probes independent of each other and combine them to produce some sort of dynamic GI effect.

Return value

1 if emission light sources are to be baked to the voxel probe; otherwise, 0.

void setBakeVisibilitySky ( bool sky ) #

Enables or disables baking of lighting from the sky to the voxel probe. You can use this option together with additive blending to provide more flexibility in light baking. Thus, you can make voxel probes independent of each other and combine them to produce some sort of dynamic GI effect.

Arguments

  • bool sky - 1 to enable baking of lighting from the sky to the voxel probe; 0 to disable it.

bool isBakeVisibilitySky ( ) const#

Returns a value indicating if lighting from the sky is to be baked to the voxel probe. You can use this option together with additive blending to provide more flexibility in light baking. Thus, you can make voxel probes independent of each other and combine them to produce some sort of dynamic GI effect.

Return value

1 if lighting from the sky is to be baked to the voxel probe; otherwise, 0.

void setBakeVisibilityLightWorld ( bool world ) #

Enables or disables baking of world light sources to the voxel probe. You can use this option together with additive blending to provide more flexibility in light baking. Thus, you can make voxel probes independent of each other and combine them to produce some sort of dynamic GI effect.

Arguments

  • bool world - 1 to enable baking of world light sources to the voxel probe; 0 to disable it.

bool isBakeVisibilityLightWorld ( ) const#

Returns a value indicating if world light sources are to be baked to the voxel probe. You can use this option together with additive blending to provide more flexibility in light baking. Thus, you can make voxel probes independent of each other and combine them to produce some sort of dynamic GI effect.

Return value

1 if world light sources are to be baked to the voxel probe; otherwise, 0.

void setBakeVisibilityLightOmni ( bool omni ) #

Enables or disables baking of omni light sources to the voxel probe. You can use this option together with additive blending to provide more flexibility in light baking. Thus, you can make voxel probes independent of each other and combine them to produce some sort of dynamic GI effect.

Arguments

  • bool omni - 1 to enable baking of omni light sources to the voxel probe; 0 to disable it.

bool isBakeVisibilityLightOmni ( ) const#

Returns a value indicating if omni light sources are to be baked to the voxel probe. You can use this option together with additive blending to provide more flexibility in light baking. Thus, you can make voxel probes independent of each other and combine them to produce some sort of dynamic GI effect.

Return value

1 if omni light sources are to be baked to the voxel probe; otherwise, 0.

void setBakeVisibilityLightProj ( bool proj ) #

Enables or disables baking of projected light sources to the voxel probe. You can use this option together with additive blending to provide more flexibility in light baking. Thus, you can make voxel probes independent of each other and combine them to produce some sort of dynamic GI effect.

Arguments

  • bool proj - 1 to enable baking of projected light sources to the voxel probe; 0 to disable it.

bool isBakeVisibilityLightProj ( ) const#

Returns a value indicating if projected light sources are to be baked to the voxel probe. You can use this option together with additive blending to provide more flexibility in light baking. Thus, you can make voxel probes independent of each other and combine them to produce some sort of dynamic GI effect.

Return value

1 if the projected light sources are to be baked to the voxel probe; otherwise, 0.

void setBakeVisibilityVoxelProbe ( bool probe ) #

Enables or disables baking of other voxel probe light sources to the voxel probe. You can use this option together with additive blending to provide more flexibility in light baking. Thus, you can make voxel probes independent of each other and combine them to produce some sort of dynamic GI effect.

Arguments

  • bool probe - 1 to enable baking of other voxel probe light sources to the voxel probe; 0 to disable it.

bool isBakeVisibilityVoxelProbe ( ) const#

Returns a value indicating if other voxel probe light sources are to be baked to the voxel probe. You can use this option together with additive blending to provide more flexibility in light baking. Thus, you can make voxel probes independent of each other and combine them to produce some sort of dynamic GI effect.

Return value

1 if other voxel probe light sources are to be baked to the voxel probe; otherwise, 0.

void setBakeVisibilityLightmap ( bool lightmap ) #

Enables or disables baking of lightmapped surfaces to the voxel probe. You can use this option together with additive blending to provide more flexibility in light baking. Thus, you can make voxel probes independent of each other and combine them to produce some sort of dynamic GI effect.

Arguments

  • bool lightmap - 1 to enable baking of lightmapped surfaces to the voxel probe; 0 to disable it.

bool isBakeVisibilityLightmap ( ) const#

Returns a value indicating if lightmapped surfaces are to be baked to the voxel probe. You can use this option together with additive blending to provide more flexibility in light baking. Thus, you can make voxel probes independent of each other and combine them to produce some sort of dynamic GI effect.

Return value

1 if lightmapped surfaces are to be baked to the voxel probe; otherwise, 0.

void setBakeVisibilityEnvironmentProbe ( int probe ) #

Enables or disables baking of environment probe light sources to the voxel probe. You can use this option together with additive blending to provide more flexibility in light baking. Thus, you can make voxel probes independent of each other and combine them to produce some sort of dynamic GI effect.

Arguments

  • int probe - true to enable baking of environment probe light sources to the voxel probe; false to disable it.

int isBakeVisibilityEnvironmentProbe ( ) const#

Returns a value indicating if environment probe light sources are to be baked to the voxel probe. You can use this option together with additive blending to provide more flexibility in light baking. Thus, you can make voxel probes independent of each other and combine them to produce some sort of dynamic GI effect.

Return value

true if environment probe light sources are to be baked to the voxel probe; otherwise, false.

void setBakeQuality ( LightVoxelProbe::BAKE_QUALITY quality ) #

Sets the baking quality for the light probe.

Arguments

LightVoxelProbe::BAKE_QUALITY getBakeQuality ( ) const#

Returns the current baking quality for the voxel probe.

Return value

One of BAKE_QUALITY values.
Last update: 2021-04-29
Build: ()