This page has been translated automatically.
Video Tutorials
Interface
Essentials
Advanced
Полезные советы
UnigineEditor
Interface Overview
Assets Workflow
Settings and Preferences
Working With Projects
Adjusting Node Parameters
Setting Up Materials
Setting Up Properties
Landscape Tool
Using Editor Tools for Specific Tasks
Extending Editor Functionality
Программирование
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
Внимание! Эта версия документация УСТАРЕЛА, поскольку относится к более ранней версии SDK! Пожалуйста, переключитесь на самую актуальную документацию для последней версии SDK.
Внимание! Эта версия документации описывает устаревшую версию SDK, которая больше не поддерживается! Пожалуйста, обновитесь до последней версии SDK.

Unigine.BakeLighting Class

This class allows you to bake lighting.

BakeLighting Class

Properties

int Progress#

Overall progress of light baking.
Notice
If the process of baking is not being performed at the moment, 0 is returned.

int ProgressBounce#

A value showing progress of calculating current bounce.

int ProgressLight#

Progress of light baking for the current LightVoxelProbe at the moment.

int CurrentBounce#

A bounce being calculated at the moment.
Notice
If the process of baking is not being performed at the moment, 1 is returned.

Light CurrentLight#

An instance of the LightVoxelProbe being calculated at the moment.

float Timer#

The time elapsed from the start of the process of baking.

float VoxelSizeMultiplier#

The value of the voxel size multiplier parameter. by default, it is equal to 1.0f.
set
Sets the value of the voxel size multiplier parameter.
set value - Voxel size multiplier within the [0.0f, 8.0f] range. The default value is 1.

int Bounces#

Number of all bounces.
set
Sets number of bounces.
set value - Number of bounces within the [1, 32] range. The default value is 1.

int VoxelsPerFrame#

Return number of voxels computed and visualized per single frame.
set
Sets number of voxels computed and visualized per single frame.
set value - Number of voxels per frame within the [1, 100] range. The default value is 1.
Notice
High values cause longer user interface response.

bool IsBaking#

A value indicating if the process of baking is being performed at the moment.

Members


void BakeEnvironmentProbes ( ) #

Starts the process of light baking for all environment probes in the scene.

void BakeVoxelProbes ( ) #

Starts the process of light baking for all voxel probes in the scene.

void Bake ( Node[] probes ) #

Starts the process of light baking for the all voxel and environment probes and shadow baking for omni and proj light sources in static light mode in the given list.

Arguments

  • Node[] probes - List of voxel and environment probe nodes for which the process of light baking is to be performed and omni and proj light sources in static light mode for which the process of shadow baking is to be performed.
    Notice
    The order of nodes added for baking is not important.

void BakeAll ( ) #

Starts the process of light baking for all voxel and environment probes and shadow baking for all omni and proj light sources in static light mode in the scene.

void Stop ( ) #

Interrupts the process of light baking, if it is in performing state.

void AddReadOnlyTexture ( UGUID guid ) #

Adds a read-only texture with the specified GUID.

Arguments

  • UGUID guid - GUID of the read-only texture to be added.

void RemoveReadOnlyTexture ( UGUID guid ) #

Removes the read-only texture with the specified GUID.

Arguments

  • UGUID guid - GUID of the read-only texture to be removed.
Last update: 31.07.2020
Build: ()