This page has been translated automatically.
Getting Started
Migrating to UNIGINE 2.0
C++ API Migration
UnigineScript
The Language
Core Library
Engine Library
Node-Related Classes
GUI-Related Classes
Plugins Library
High-Level Systems
Samples
Usage Examples
C++ API
API Reference
Integration Samples
Usage Examples
C++ Plugins
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.

Environment Probe

Environment Probe is a new object in UNIGINE 2.0. With Environment Probes you can create reflections instead of creating reflection materials.

See Also

Overview

Environment Probe is a great thing to increase the performance, decrease the number of materials and make the life of content designers easier.

Environment probes use cubemaps that were baked (or grabbed with special tool). This cubemap will play the role of the reflection and the light simulation. Here is an example:

We have two houses with different color of the interior and put same objects (with reflection material, for example, metal) into these houses. What will happen?

If we don't speak about the dynamic reflections, you'll need to reflect the interior on each object. But interiors have different ambient color, and that why you'll need to create 2 different materials for them. Not optimized at all.

Environment probes remove this flaw. Once you added an object, you don't think about the reflection material for it. Environment probe will map the cubemap to the object.

If you put some environment probes their cubemaps will be blended smoothly. Here is example, a long corridor which have walls painted in different colors.

We put two environment probes and both of them will affect to the object (when the object will be in the intercrossing area). When you have large locations, you should use some environment probes instead of one to make the final image more plausible.

The SSR (Screen Space Reflections) effect makes the final image more realistic, because it appends reflections that cannot be baked into cubemaps. Using environment probes and SSR is a great method for pretty fast imitation of reflections with dynamic lighting.

Adding Evnironment Probe

To add an Environment Probe object to the scene via UnigineEditor, do the following:

  1. Run UnigineEditor.
  2. On the Menu bar, click Create -> Light -> Environment Probe.

  3. Place the environment probe.
  4. Grab the cubemap texture for the environment probe. You can grab it by using Grabber tool:
    1. Press T to open the Tools window and go to the Grabber tab.
    2. In the Mode dropdown menu, select Cube and press the Grab button.

    3. Save the environment texture in the .dds format.
  5. Adjust the environment probe settings.

Environment Probe Settings

Here is a bunch of environment probe settings.

Light Sets the light mask.
Viewport Sets the viewport mask for the light.
Color Sets the light color in the RGBA format. The color defines both the plausibility of virtual representation and its aesthetic component.
Multiplier Sets the light color multiplier, which provides fine control over color intensity of the emitted light:
  • The minimum value of 1 corresponds to the least saturated light color.
  • The maximum value of 100 equals the most bright and intense color.
Attenuation Sets the attenuation factor of the light.
Radius Sets the radius of the environment probe.
Texture Sets the cubemap texture for reflection.
Dynamic Specifies if the reflection is dynamic.
Reflection Specifies a mask that specifies materials to reflect.
Resolution Sets the resolution of the reflection in pixels.
Update Specifies the cubemap update interval.
  • 1 - Refresh only one face every frame.
  • 2 - Refresh two faces every frame.
  • 3 - Refresh three faces every frame.
  • 4 - Refresh four faces every frame.
  • 5 - Refresh five faces every frame.
  • 6 - Refresh all six faces every frame.
Near clipping Sets distance to near clipping plane for image grabbing.
Far clipping Sets distance to far clipping plane for image grabbing.
Shadows Specifies if shadows will be rendered in the reflection.
Last update: 2017-07-03
Build: ()