This page has been translated automatically.
视频教程
界面
要领
高级
实用建议
专业(SIM)
UnigineEditor
界面概述
资产工作流程
设置和首选项
项目开发
调整节点参数
Setting Up Materials
设置属性
照明
Landscape Tool
Sandworm
使用编辑器工具执行特定任务
如何擴展編輯器功能
嵌入式节点类型
Nodes
Objects
Effects
Decals
光源
Geodetics
World Nodes
Sound Objects
Pathfinding Objects
Players
编程
基本原理
搭建开发环境
使用范例
C++
C#
UnigineScript
UUSL (Unified UNIGINE Shader Language)
Plugins
File Formats
Materials and Shaders
Rebuilding the Engine Tools
GUI
双精度坐标
应用程序接口
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
IG Plugin
CIGIConnector Plugin
Rendering-Related Classes
创建内容
内容优化
Materials
Material Nodes Library
Miscellaneous
Input
Math
Matrix
Textures
Art Samples
Tutorials
注意! 这个版本的文档是过时的,因为它描述了一个较老的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


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.

bool isArray ( ) const#

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 ( ) 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

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 ( ) const#

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: 2022-03-10
Build: ()