Unigine::BakeLighting Class
Header: | #include <UnigineRender.h> |
This class allows you to bake lighting.
Backward compatibility for this class is not guaranteed! Although it is exposed to public API, it is mainly intended for internal use (inside UnigineEditor). If you use it, you do this at your own risk.
BakeLighting Class
Перечисления (Enums)
LIGHTMAP_QUALITY#
Light baking quality preset.Members
void bake ( const Vector< Ptr<LightVoxelProbe> > & voxel_lights, const Vector< Ptr<LightEnvironmentProbe> > & env_lights, const Vector< Ptr<Light> > & shadow_lights, const Vector< Ptr<ObjectMeshStatic> > & objects, const Vector< int > & surfaces ) #
Starts the process of light baking for all voxel and environment probes, shadow baking for light sources in static light mode and lightmaps baking for surfaces of Mesh Static objects in the given list.Arguments
- const Vector< Ptr<LightVoxelProbe> > & voxel_lights - List of voxel probes for which the process of light baking is to be performed. The order of nodes added for baking is not important.
- const Vector< Ptr<LightEnvironmentProbe> > & env_lights - List of environment probes for which the process of light baking is to be performed. The order of nodes added for baking is not important.
- const Vector< Ptr<Light> > & shadow_lights - List of light sources in static light mode for which the process of shadow baking is to be performed. The order of lights added for baking is not important.
- const Vector< Ptr<ObjectMeshStatic> > & objects - List of Mesh Static objects for which the process of lightmaps baking is to be performed.
- const Vector< int > & surfaces - List of surfaces of Mesh Static objects for which the process of lightmaps baking is to be performed.
The number of objects and surfaces added for baking must be equal.
void bakeAll ( bool voxel_probes = true, bool env_probes = true, bool shadow = true, bool lightmap = true ) #
Starts the process of light baking for all enabled voxel and environment probes, shadow baking for eanbled light sources in static light mode and lightmaps baking for enabled surfaces of Mesh Static objects in the scene.Arguments
- bool voxel_probes - 1 to enable light baking for voxel probes; otherwise, 0.
- bool env_probes - 1 to enable light baking for environment probes; otherwise, 0.
- bool shadow - 1 to enable shadow baking for light sources in static light mode; otherwise, 0.
- bool lightmap - 1 to enable lightmaps baking for surfaces of Mesh Static objects; otherwise, 0.
bool isBaking ( ) const#
Returns a value indicating if the process of baking is being performed at the moment.Return value
1 if lighting is being baked; otherwise - 0.int getCurrentBounce ( ) const#
Returns a bounce being calculated at the moment.If the process of baking is not being performed at the moment, 1 is returned.
Return value
Bounce number.int getBounces ( ) const#
Console: bake_lighting_bounces
Returns number of all bounces.Return value
Number of bounces.int getProgress ( ) const#
Returns overall progress of light baking.If the process of baking is not being performed at the moment, 0 is returned.
Return value
Overall baking progress, in percents.int getProgressBounce ( ) const#
Returns a value showing progress of calculating current bounce.Return value
Bounce calculating progress, in percents.float getVoxelSizeMultiplier ( ) const#
Console: bake_lighting_voxel_size_multiplier
Returns the value of the voxel size multiplier parameter. By default, it is equal to 1.0f.Return value
Voxel size multiplier.void setBounces ( int bounces ) #
Sets number of bounces.Arguments
- int bounces - Number of bounces within the [1, 32] range. The default value is 1.
int getProgressLight ( ) const#
Returns progress of light baking for the current LightVoxelProbe at the moment.Return value
LightVoxelProbe progress, in percents.float getTimer ( ) const#
Returns the time elapsed from the start of the process of baking.Return value
Elapsed time, in seconds.void setVoxelSizeMultiplier ( float multiplier ) #
Console: bake_lighting_voxel_size_multiplier
Sets the value of the voxel size multiplier parameter.Arguments
- float multiplier - Voxel size multiplier within the [0.0f, 8.0f] range. The default value is 1.
void stop ( bool save_results = false ) #
Console: bake_lighting_stop
Interrupts the process of light baking, if it is in performing state.Arguments
- bool save_results - 1 to save the obtained result; 0 to restore the previous content.
Ptr<Light> getCurrentLight ( ) const#
Returns an instance of the LightVoxelProbe being calculated at the moment.Return value
Current LightVoxelProbe.void addReadOnlyTexture ( const UGUID & guid ) #
Adds a read-only texture with the specified GUID.Arguments
- const UGUID & guid - GUID of the read-only texture to be added.
void removeReadOnlyTexture ( const UGUID & guid ) #
Removes the read-only texture with the specified GUID.Arguments
- const UGUID & guid - GUID of the read-only texture to be removed.
void setSamplesPerFrame ( int frame ) #
Console: bake_lighting_samples_per_frame
Sets number of voxels for voxel probes and samples for environment probes, light sources and surfaces computed and visualized per single frame.Arguments
- int frame - Number of samples per frame within the [1, 500] range. The default value is 1.
High values cause longer user interface response.
int getSamplesPerFrame ( ) const#
Returns number of voxels for voxel probes and samples for environment probes, light sources and surfaces computed and visualized per single frame.Return value
Number of samples.void setLightmapQuality ( BakeLighting::LIGHTMAP_QUALITY quality ) #
Console: bake_lightmap_quality
Sets the global baking quality for lightmaps.Arguments
- BakeLighting::LIGHTMAP_QUALITY quality - One of LIGHTMAP_QUALITY values.
BakeLighting::LIGHTMAP_QUALITY getLightmapQuality ( ) const#
Console: bake_lightmap_quality
Returns the current global baking quality for lightmaps.Return value
LIGHTMAP_QUALITY preset.void setLightmapViewportMask ( int mask ) #
Console: bake_lightmap_viewport_mask
Sets the viewport mask for the lightmapper. For a light or surface to contribute to static GI, their viewport masks should match the baking viewport mask.Arguments
- int mask - Viewport mask (integer, each bit of which is used to represent a mask).
int getLightmapViewportMask ( ) const#
Returns the current viewport mask set for lightmapper.Return value
Viewport mask (integer, each bit of which is used to represent a mask).void setLightmapZFar ( float zfar ) #
Console: bake_lightmap_zfar
Sets the far clipping distance for light rays used when baking lightmaps.Arguments
- float zfar - Far clipping distance.
float getLightmapZFar ( ) const#
Console: bake_lightmap_zfar
Returns the far clipping distance for light rays.Return value
Far clipping distance.void setCacheDir ( const char * dir ) #
Sets the path to the directory that stores temporary cache textures during lightmaps baking process. By default, the bin/unigine_bake_lighting_cache project's folder is set.It is recommended to specify a path to a non-existing folder to avoid losing files.
Arguments
- const char * dir - An absolute path or a relative path to the bin folder.
const char * getCacheDir ( ) const#
Returns the current path set for the directory that stores temporary cache textures during lightmaps baking process. By default, the bin/unigine_bake_lighting_cache project's folder is set.Return value
Path to the cache folder.Ptr<Object> getCurrentObject ( ) const#
Returns the object currently being processed when baking lightmaps.Return value
Object pointer during lightmaps baking; otherwise, nullptr.int getCurrentSurface ( ) const#
Returns the index of the surface currently being processed when baking lightmaps.Return value
Index of the surface during lightmaps baking; otherwise, -1.Last update:
16.08.2024
Помогите сделать статью лучше
Была ли эта статья полезной?
(или выберите слово/фразу и нажмите Ctrl+Enter