This page has been translated automatically.
视频教程
界面
要领
高级
实用建议
UnigineEditor
界面概述
资产工作流程
设置和首选项
项目开发
调整节点参数
Setting Up Materials
Setting Up Properties
照明
Landscape Tool
Sandworm
使用编辑器工具执行特定任务
Extending Editor Functionality
嵌入式节点类型
Nodes
Objects
Effects
Decals
光源
Geodetics
World Objects
Sound Objects
Pathfinding Objects
Players
编程
基本原理
搭建开发环境
Usage Examples
UnigineScript
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
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
创建内容
Content Optimization
Materials
Art Samples
Tutorials
注意! 这个版本的文档是过时的,因为它描述了一个较老的SDK版本!请切换到最新SDK版本的文档。
注意! 这个版本的文档描述了一个不再受支持的旧SDK版本!请升级到最新的SDK版本。

Unigine::Utils Class

Header: #include <UnigineUtils.h>

This class contains the helper functions.

Utils Class

Members


int convertHeightsToNormals ( ImagePtr & out, const ImagePtr & heights, float step_size ) #

Converts the elevation (height) map to the normal map.

Arguments

  • ImagePtr & out - Pointer to the target normal map.
  • const ImagePtr & heights - Source elevation (height) map.
  • float step_size - Grid cell step.

Return value

1 if the converting was successful; otherwise, 0.

void convertNodesToMesh ( MeshPtr & out, const Vector<NodePtr > & nodes ) #

Creates a mesh out of the node array.

Arguments

  • MeshPtr & out - Pointer to the target mesh.
  • const Vector<NodePtr > & nodes - Array of the node pointers.

String date ( const char * format, long long time ) #

Returns given time as a string. The content of format string with format specifiers expanded with the corresponding values that represent the time described in time.

Arguments

  • const char * format - Format string containing any combination of regular characters and special format specifiers. These format specifiers are replaced by the function to the corresponding values to represent the time specified in timeptr. They all begin with a percentage (%) sign, and are as follows:
    Specifier Replaced by Example
    %a Abbreviated weekday name Thu
    %b Abbreviated month name Aug
    %d Date and time representation equivalent to %a %b %D, %h:%m Thu Aug 23, 14:55
    %s Second (00-61) 15
    %m Minute (00-59) 55
    %h Hour (00-24) 14
    %D Month day (1-31) 25
    %M Month (1-12) 11
    %Y Year 2016
    %W Week day (1-7) 5
    % A % sign %
  • long long time - Time value.

String date ( const char * format ) #

Returns current time as a string. The content of format string with format specifiers expanded with the corresponding values that represent the current time.

Arguments

  • const char * format - Format string containing any combination of regular characters and special format specifiers. These format specifiers are replaced by the function to the corresponding values to represent the time specified in timeptr. They all begin with a percentage (%) sign, and are as follows:
    Specifier Replaced by Example
    %a Abbreviated weekday name Thu
    %b Abbreviated month name Aug
    %d Date and time representation equivalent to %a %b %D, %h:%m Thu Aug 23, 14:55
    %s Second (00-61) 15
    %m Minute (00-59) 55
    %h Hour (00-24) 14
    %D Month day (1-31) 25
    %M Month (1-12) 11
    %Y Year 2016
    %W Week day (1-7) 5
    % A % sign %

NodePtr loadObjectMesh ( const char * name ) #

Loads a mesh from a file. If the mesh is loaded successfully, its node does not belong to any node hierarchy, so be careful and make sure to handle it properly, when it is no longer needed.

Arguments

  • const char * name - Path to the mesh.

Return value

Pointer to the node corresponding to the loaded mesh; 0 if the mesh cannot be loaded.

int makeNodeCurved ( NodePtr node ) #

Curves a given node using its geodetic pivot.
Notice
The node must be a child of a geodetic pivot node.

Arguments

  • NodePtr node - Pointer to the node to be made curved.

Return value

1 if the node was curved successfully; othervise, 0.

int makeNodeFlat ( NodePtr node ) #

Flattens a given node using its geodetic pivot.
Notice
The node must be a child of a geodetic pivot node.

Arguments

  • NodePtr node - Pointer to the node to be made flat.

Return value

1 if the node was flattened successfully; othervise, 0.
Last update: 2021-04-29
Build: ()