This page has been translated automatically.
Video Tutorials
Interface
Essentials
Advanced
How To
Professional (SIM)
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 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
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
Materials
Material Nodes Library
Miscellaneous
Input
Math
Matrix
Textures
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.

API Migration

Property-Related Changes#

The way of calling methods for property parameters based on parameters hierarchy has changed in UnigineScript:

UNIGINE 2.14 UNIGINE 2.15.1
Source code (UnigineScript)
PropertyParameter pp = property.getParameterPtr();

string name = pp.getChild(i).getName();
Valid for all PropertyParameter.getChild(i).<any_method>() calls.
Source code (UnigineScript)
PropertyParameter pp = property.getParameterPtr();

PropertyParameter child = pp.getChild(i);
string name = child.getName();
Source code (UnigineScript)
PropertyParameter pp = property.getParameterPtr();

string name = pp.getParent().getName();
Valid for all PropertyParameter.getParent().<any_method>() calls.
Source code (UnigineScript)
PropertyParameter pp = property.getParameterPtr();

PropertyParameter parent = pp.getParent();
string name = parent.getName();

Decal Class#

UNIGINE 2.15 UNIGINE 2.15.1
setFadeTime() Removed.
getFadeTime() Removed.
setInitTime() Removed.
getInitTime() Removed.
setLifeTime() Removed.
getLifeTime() Removed.
setTexCoord() Removed.
getTexCoord() Removed.

New Functions

DecalMesh Class#

UNIGINE 2.15 UNIGINE 2.15.1
setRadius() Removed. Use Decal::setRadius() instead.
getRadius() Removed. Use Decal::getRadius() instead.

DecalOrtho Class#

UNIGINE 2.15 UNIGINE 2.15.1
DecalOrtho() Set of arguments changed.
setRadius() Removed. Use Decal::setRadius() instead.
getRadius() Removed. Use Decal::getRadius() instead.

DecalProj Class#

UNIGINE 2.15 UNIGINE 2.15.1
DecalProj() Set of arguments changed.
setRadius() Removed. Use Decal::setRadius() instead.
getRadius() Removed. Use Decal::getRadius() instead.

Ffp Class#

UNIGINE 2.15 UNIGINE 2.15.1
enable() Set of arguments changed.
MODE_3D Removed. Use TEXTURE_SAMPLE_3D instead.
MODE_ARRAY Removed. Use TEXTURE_SAMPLE_ARRAY instead.
MODE_CUBE Removed. Use TEXTURE_SAMPLE_CUBE instead.
MODE_GRAD Removed.
MODE_INTEGER Removed. Use TEXTURE_SAMPLE_INTEGER instead.
MODE_MULTISAMPLE_2 Removed.
MODE_MULTISAMPLE_4 Removed.
MODE_MULTISAMPLE_8 Removed.
MODE_MULTISAMPLE_16 Removed.
MODE_POLYGON_OFFSET Removed.
MODE_SHADOW Removed. Use TEXTURE_SAMPLE_SHADOW instead.
MODE_SRGB Removed.

New Functions

GeodeticsTransformer Class#

UNIGINE 2.15 UNIGINE 2.15.1
geodeticToWorld() Set of arguments changed.
geodeticToWorldPosition() Set of arguments changed.
worldToGeodetic() Set of arguments changed.

ObjectWaterGlobal Class#

UNIGINE 2.15 UNIGINE 2.15.1
setAdditionalNormalBlur() Renamed to setTextureNormalBlur().
getAdditionalNormalBlur() Renamed to getTextureNormalBlur().
setAdditionalNormalIntensity() Renamed to setTextureNormalIntensity().
getAdditionalNormalIntensity() Renamed to getTextureNormalIntensity().
setWavesNormalIntensity() Renamed to setGeometryNormalIntensity().
getWavesNormalIntensity() Renamed to getGeometryNormalIntensity().
setDistantWavesHeightScale() Renamed to setDistantWavesIntensity().
getDistantWavesHeightScale() Renamed to getDistantWavesIntensity().
setDistantWavesHeightTexturePath() Renamed to setDistantWavesTexturePath().
getDistantWavesHeightTexturePath() Renamed to getDistantWavesTexturePath().
setDistantWavesDistanceFadeStart() Renamed to setDistantWavesBlendDistanceStart().
getDistantWavesDistanceFadeStart() Renamed to getDistantWavesBlendDistanceStart().
setDistantWavesDistanceFadeEnd() Renamed to setDistantWavesBlendDistanceEnd().
getDistantWavesDistanceFadeEnd() Renamed to getDistantWavesBlendDistanceEnd().
setDistantWavesDistanceFadeMinValue() Renamed to setDistantWavesBlendMin().
getDistantWavesDistanceFadeMinValue() Renamed to getDistantWavesBlendMin().

New Functions

Render Class#

UNIGINE 2.15 UNIGINE 2.15.1
getBlack2DTexture() Set of arguments changed.
getBlack2DArrayTexture() Set of arguments changed.
getBlack3DTexture() Set of arguments changed.
getBlackCubeTexture() Set of arguments changed.
getGray2DTexture() Set of arguments changed.
getGray2DArrayTexture() Set of arguments changed.
getGray3DTexture() Set of arguments changed.
getGrayCubeTexture() Set of arguments changed.
getWhite2DTexture() Set of arguments changed.
getWhite2DArrayTexture() Set of arguments changed.
getWhite3DTexture() Set of arguments changed.
getWhiteCubeTexture() Set of arguments changed.
getTemporary2DArrayTexture(int, int, int, int, int, const char *) Removed. Use getTemporaryTexture2DArray() instead.
getTemporary3DTexture(int, int, int, int, int, сonst char *) Removed. Use getTemporaryTexture3D() instead.

New Functions

Renderer Class#

RenderTarget Class#

UNIGINE 2.15 UNIGINE 2.15.1
bindUnorderedAccessTexture() Set of arguments changed.

SplinePoint Class#

New Functions

SplineSegment Class#

New Functions

Viewport Class#

UNIGINE 2.15 UNIGINE 2.15.1
getAspectCorrection() Renamed to isAspectCorrection().

New Functions

WidgetSpriteNode Class#

UNIGINE 2.15 UNIGINE 2.15.1
getAspectCorrection() Renamed to isAspectCorrection().

New Functions

WidgetSpriteViewport Class#

UNIGINE 2.15 UNIGINE 2.15.1
getAspectCorrection() Renamed to isAspectCorrection().

New Functions

WorldSplineGraph Class#

New Functions

Xml Class#

Last update: 2022-04-11
Build: ()