This page has been translated automatically.
Видеоуроки
Интерфейс
Основы
Продвинутый уровень
Подсказки и советы
Основы
Программирование на C#
Рендеринг
Профессиональный уровень (SIM)
Принципы работы
Свойства (properties)
Компонентная Система
Рендер
Физика
Редактор UnigineEditor
Обзор интерфейса
Работа с ассетами
Контроль версий
Настройки и предпочтения
Работа с проектами
Настройка параметров ноды
Setting Up Materials
Настройка свойств
Освещение
Sandworm
Использование инструментов редактора для конкретных задач
Расширение функционала редактора
Встроенные объекты
Ноды (Nodes)
Объекты (Objects)
Эффекты
Декали
Источники света
Geodetics
World-ноды
Звуковые объекты
Объекты поиска пути
Player-ноды
Программирование
Основы
Настройка среды разработки
Примеры использования
C++
C#
UnigineScript
UUSL (Unified UNIGINE Shader Language)
Плагины
Форматы файлов
Материалы и шейдеры
Rebuilding the Engine Tools
Интерфейс пользователя (GUI)
Двойная точность координат
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
Работа с контентом
Оптимизация контента
Материалы
Визуальный редактор материалов
Material Nodes Library
Miscellaneous
Input
Math
Matrix
Textures
Art Samples
Учебные материалы

Unigine::UlonValue Class

Header: #include <UnigineUlon.h>

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

UlonValue Class

Members

bool isArray() const#

Returns the current 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.

void setUsage ( bool usage ) #

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

Arguments

  • bool usage - Set true to enable usage of the ULON node value; false - to disable it.

bool isUsage() const#

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

Return value

true if usage of the ULON node value is enabled; otherwise false.

static UlonValuePtr create ( ) #

Constructor. Creates a ULON node value.

static UlonValuePtr create ( const char * arg1 ) #

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

Arguments

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

const char * getStr ( ) const#

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

Return value

ULON node value as a non-formatted string.

double getDouble ( ) const#

Returns the ULON node value as a double.

Return value

Double ULON node value.

float getFloat ( ) const#

Returns the ULON node value as a float.

Return value

Float ULON node value.

int getInt ( ) const#

Returns the ULON node value as an integer.

Return value

Integer ULON node value.

long long getLong ( ) const#

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

Return value

64-bit long long ULON node value.

char getChar ( ) const#

Returns the ULON node value as a char.

Return value

Char ULON node value.

bool getBool ( ) const#

Returns the ULON node value as a boolean.

Return value

Boolean ULON node value.

Vector< String > getArray ( ) const#

Returns the ULON node value as an array of strings.

Return value

Array of strings representing elements of the array.

Math::dvec4 getDVec4 ( ) const#

Returns the ULON node value as a dvec4 vector.

Return value

ULON node value as a dvec4 vector.

Math::vec4 getVec4 ( ) const#

Returns the ULON node value as a vec4 vector.

Return value

ULON node value as a vec4 vector.

Math::ivec4 getIVec4 ( ) const#

Returns the ULON node value as an ivec4 vector.

Return value

ULON node value as an ivec4 vector.

void get ( Math::dvec4 & ret ) const#

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

Arguments

void get ( Math::vec4 & ret ) const#

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

Arguments

void get ( Math::ivec4 & ret ) const#

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

Arguments

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: 04.03.2024
Build: ()