This page has been translated automatically.
UnigineEditor
Interface Overview
Assets Workflow
Settings and Preferences
Working With Projects
Adjusting Node Parameters
Setting Up Materials
Setting Up Properties
Landscape Tool
Using Editor Tools for Specific Tasks
Extending Editor Functionality
FAQ
Программирование
Fundamentals
Setting Up Development Environment
Usage Examples
UnigineScript
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine and Tools
GUI
Double Precision Coordinates
API
Containers
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
Rendering-Related Classes
Внимание! Эта версия документация УСТАРЕЛА, поскольку относится к более ранней версии SDK! Пожалуйста, переключитесь на самую актуальную документацию для последней версии SDK.
Внимание! Эта версия документации описывает устаревшую версию SDK, которая больше не поддерживается! Пожалуйста, обновитесь до последней версии SDK.

Unigine::UlonValue Class

Header: #include <UnigineUlon.h>

This class is used to represent a value of a ULON node.

UlonValue Class

Members


UlonValue ( ) #

Constructor. Creates a ULON node value.

UlonValue ( const char * arg1 ) #

Constructor. Creates a ULON node value from the specified source buffer.

Arguments

  • const char * arg1 - ULON node value source buffer.

bool isArray ( ) #

Returns a value indicating if the ULON node value is of an array type.

Return value

true if the ULON node value is of an array type; otherwise, false.

const char * getStr ( ) #

Returns the ULON node value as a non-formatted string.

Return value

ULON node value as a non-formatted string.

double getDouble ( ) #

Returns the ULON node value as a double.

Return value

Double ULON node value.

float getFloat ( ) #

Returns the ULON node value as a float.

Return value

Float ULON node value.

int getInt ( ) #

Returns the ULON node value as an integer.

Return value

Integer ULON node value.

long long getLong ( ) #

Returns the ULON node value as a 64-bit long long.

Return value

64-bit long long ULON node value.

char getChar ( ) #

Returns the ULON node value as a char.

Return value

Char ULON node value.

bool getBool ( ) #

Returns the ULON node value as a boolean.

Return value

Boolean ULON node value.

Vector< String > getArray ( ) #

Returns the ULON node value as an array of strings.

Return value

Array of strings representing elements of the array.

Math::dvec4 getDVec4 ( ) #

Returns the ULON node value as a dvec4 vector.

Return value

ULON node value as a dvec4 vector.

Math::vec4 getVec4 ( ) #

Returns the ULON node value as a vec4 vector.

Return value

ULON node value as a vec4 vector.

Math::ivec4 getIVec4 ( ) #

Returns the ULON node value as an ivec4 vector.

Return value

ULON node value as an ivec4 vector.

void get ( Math::dvec4 & ret ) #

Gets the ULON node value as a dvec4 and puts it to the specified output vector.

Arguments

  • Math::dvec4 & ret - Output dvec4 vector.

void get ( Math::vec4 & ret ) #

Gets the ULON node value as a vec4 and puts it to the specified output vector.

Arguments

  • Math::vec4 & ret - Output vec4 vector.

void get ( Math::ivec4 & ret ) #

Gets the ULON node value as an ivec4 and puts it to the specified output vector.

Arguments

  • Math::ivec4 & ret - Output ivec4 vector.

void setUsage ( bool usage ) #

Sets a value indicating if the ULON node value is used (obtained via one of the get*() methods).

Arguments

  • bool usage - true to mark the ULON node value as used; otherwise, false.

bool isUsage ( ) #

Returns a value indicating if the ULON node value is used (obtained via one of the get*() methods).

Return value

true if the ULON node value is used; otherwise, false.

int read ( const char * src ) #

Reads the ULON node value from the specified source buffer.

Arguments

  • const char * src - ULON node value source buffer.
Last update: 25.12.2019
Build: ()