This page has been translated automatically.
Video Tutorials
Interface
Essentials
Advanced
How To
Rendering
Professional (SIM)
UnigineEditor
Interface Overview
Assets Workflow
Version Control
Settings and Preferences
Working With Projects
Adjusting Node Parameters
Setting Up Materials
Setting Up Properties
Lighting
Sandworm
Using Editor Tools for Specific Tasks
Extending Editor Functionality
Built-in Node Types
Nodes
Objects
Effects
Decals
Geodetics
World Nodes
Sound Objects
Pathfinding Objects
Players
Programming
Fundamentals
Setting Up Development Environment
Usage Examples
C++
C#
UnigineScript
UUSL (Unified UNIGINE Shader Language)
Plugins
File Formats
Materials and Shaders
Rebuilding the Engine Tools
GUI
Double Precision Coordinates
API
Animations-Related Classes
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
VR-Related Classes
Content Creation
Content Optimization
Materials
Material Nodes Library
Miscellaneous
Input
Math
Matrix
Textures
Art Samples
Tutorials

Light Sources

While the 3D geometry defines the shape of your content, lighting is the basis of every virtual scene defining colors and final look of your objects. UNIGINE features the following types of the light sources:

  • Dynamic lighting is a customizable solution providing real-time lighting calculation. This advanced technique provides very realistic lighting as it can illuminate dynamic objects. Light sources themselves can be moved or changed in real time (for example, turned on and off). As the most objects in the scene are rendered in the deferred pass, dynamic light sources won't cause big performance losses.
  • Static (precomputed) lighting is an efficient and useful solution for lighting relatively static scenes. It allows dropping most lighting computations, leaving only simple texture lookups to be performed at the rendering time. Still, this method only roughly simulates lighting for moving objects entering the scene and sometimes lacks physical accuracy registered by the eye.
Light Source Image Dynamic Mode Static Mode
LightOmni
(omnidirectional point light)
Emits light from a point source in all directions. Emits light from a point source in all directions and uses a prebaked shadow cubemap for static objects lit by Omni Light.
LightProj
(projected light)
Emits light from a single point forming a focused beam aimed in a specific direction. Emits light from a single point forming a focused beam aimed in a specific direction and uses a prebaked 2D depth texture to store shadows of static objects lit by Projected Light.
LightWorld
(sun light)
Casts parallel beams onto the scene from an infinitely remote point.
LightEnvironmentProbe
(Environment Probe)
Grabs a cubemap each frame thus providing objects in the scene with dynamic reflections from a point source in all directions. Uses a prebaked cubemap to provide objects in the scene with reflections from a point source in all directions.
LightVoxelProbe
(Voxel Probe)
Provides volume to bake lighting. Uses a prebaked voxel map to provide objects in the scene with indirect lighting from any light source.
LightPlanarProbe
(Planar Reflection Probe)
Сaptures and projects a reflection relative to the camera onto a surface like a mirror. Uses a temporary texture created every frame.

Usage of Light Sources#

The basic workflow is to use dynamic light sources and Voxel Probe for lighting, and Environment Probe for reflections. This approach ensures the best result, however, you can also enable both lighting and reflections for Voxel or Environment Probe via the corresponding options.

Light sources provide lighting to surfaces in the following priority:

  1. Omni, Projected and World light sources' dynamic direct light.
  2. Voxel probe's ambient light and/or reflection.
  3. Environment probe's ambient light and/or reflection.

See Also#

Last update: 2023-09-26
Build: ()