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
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.

Loop Sample

This material graph sample demonstrates how to use loops when creating materials.

Albedo RGB data for the Deferred PBR Material master material node is generated in the loop: the initial texture (Texture node) is applied num_steps times with a UV shift controlled by the step_size value provided by the Float Slider node of the UI group (adjustable via the Parameters panel in the UnigineEditor).

The Loop Input node has the following inputs:

  • Loop variable i (set directly via the port adapter)
  • result - to store intermediate and final results of calculations
  • num_steps - how many times we run the loop (set directly via the port adapter)
  • step_size - for UV offset calculation

The break condition is checked by the Greater node having var_i and num_steps parameters connected via the corresponding portals as inputs, with its output connected to the break port of the Loop Output node.

The loop variable i is incremented by the Add node having var_i (taken via the corresponding portal) and increment (provided by the second Float Slider node) as inputs, with its output connected to the i (loop variable) port of the Loop Output node.

The result of iterative texture sampling with a UV shift is taken from the output of the upper Add node and connected to the result port of the Loop Output node via the xyz port adapter selecting RGB color components.

The result output port of the Loop Output node is connected to the Albedo RGB input of the Deferred PBR Material master material node via the Div node which performs color intensity reduction (divides the resulting value by the number of loop iterations - increments of color values).

Finally, the data output is passed to the Final Material node.

Last update: 2021-04-29
Build: ()