This page has been translated automatically.
视频教程
界面
要领
高级
实用建议
专业(SIM)
UnigineEditor
界面概述
资源工作流程
版本控制
设置和首选项
项目开发
调整节点参数
Setting Up Materials
设置属性
照明
Sandworm
使用编辑器工具执行特定任务
如何擴展編輯器功能
嵌入式节点类型
Nodes
Objects
Effects
Decals
光源
Geodetics
World Nodes
Sound Objects
Pathfinding Objects
Players
编程
基本原理
搭建开发环境
使用范例
C++
C#
UnigineScript
UUSL (Unified UNIGINE Shader Language)
Plugins
File Formats
材质和着色器
Rebuilding the Engine Tools
GUI
双精度坐标
应用程序接口
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
Tutorials

Unigine::Cigi::ICigiSymbolSurfaceDef Class

Header: #include <CigiClientInterface.h>
Inherits from: ICigiHostPacket
Warning
The CIGIClient plugin is deprecated and no longer supported. For more information on working with CIGI please refer to the IG Application section.

This class represents the CIGI Symbol Surface Definition packet interface.

Notice
CIGI plugin must be loaded.

ICigiSymbolSurfaceDef Class

Members


int getSurfaceID ( ) #

Returns the Surface ID specified in the packet.

Return value

Surface ID.

int getEntityID ( ) #

Returns the Entity ID specified in the packet.

Return value

Entity ID.

int getSurfaceState ( ) #

Returns the value of the Surface State parameter specified in the packet. Defines whether the surface will be active.

Return value

Surface State parameter value: 1 (Active) if the surface is enabled; otherwise, 0 (Destroyed).

int getAttachType ( ) #

Returns the value of the Attach Type parameter specified in the packet. Determines whether the surface will be attached to an entity or a view.

Return value

Attach Type parameter value: 0 (Entity) specified by the Entity ID parameter; otherwise, 1 (View).
Notice
If the specified entity or view does not exist, this packet shall be ignored.

int getBillboard ( ) #

Returns the value of the Billboard parameter specified in the packet. Determines the way of surface orientation.

Return value

Billboard parameter value. The following values are supported:
  • 1 – Billboard. The surface shall be oriented such that the normal vector from the center of the surface is parallel to the viewing vector.
  • 0 - Non-Billboard. The surface shall be oriented in relation to the entity’s local coordinate system by the Yaw, Pitch, and Roll parameters.
Notice
If the surface is attached to a view, then the IG shall ignore this parameter.

int getPerspective ( ) #

Returns the value of the Perspective Growth Enable parameter specified in the packet.

Return value

Perspective Growth Enable parameter: 1 (Enabled) if the perspective growth is enabled; otherwise, 0 (Disabled).

const Math::vec3& getOffset ( ) #

Returns the offset of the given surface as a three-component vector of X Offset, Y Offset and Z Offset or Left, Right and Top parameters specified in the packet.

Return value

Three-component vector:
  • [X Offset, Y Offset, Z Offset] - if the surface is attached to an entity. The values are relative to the entity’s reference point.
  • [Left, Right, Top] - if the surface is attached to a view. The IG shall place it at this distance from the left edge of the viewport to the surface’s leftmost and rightmost boundary and from the bottom edge of the viewport to the surface’s topmost boundary respectively. This distance is measured as a fraction of the viewport’s width.

const Math::vec3& getRotation ( ) #

Returns the orientation of the given surface as a three-component vector of Yaw, Pitch and Roll parameters (for Entity-attached surfaces) and value of Bottom parameter (for View-attached surfaces) specified in the packet.

Return value

Three-component vector. [Yaw, Pitch, Roll] values - if the surface is attached to an entity; otherwise, [Bottom, Y, Z].
Notice
If the given surface is attached to View, than the last two components of the vector shall be ignored.

float getWidth ( ) #

Returns the value of the Width parameter specified in the packet.

Return value

Width parameter value in the [0.0; 180.0] range for surfaces which are entity-attached Billboards with disabled Perspective Growth; the value is greater than 0 for entity-attached Billboards with enabled Perspective Growth and Non-Billboards.

float getHeight ( ) #

Returns the value of the Height parameter specified in the packet.

Return value

Height parameter value in the [0.0; 180.0] range for surfaces which are Billboards, Entity-attached with disabled Perspective Growth; the value is greater than 0 for entity-attached Billboards with enabled Perspective Growth and Non-Billboards.

const Math::vec3& getMin ( ) #

Returns the three-component vector that contains the values of the Min U, Min V parameters specified in the packet. Specifies the UV coordinates that shall correspond to the leftmost and bottommost boundaries of the symbol surface.

Return value

Three-component vector of the [Min U, Min V] parameters values.

const Math::vec3& getMax ( ) #

Returns the three-component vector that contains the values of the Max U, Max V parameters specified in the packet. Specifies the UV coordinates that shall correspond to the rightmost and topmost boundaries of the symbol surface.

Return value

Three-component vector of the [Max U, Max V] parameters values.
Last update: 2019-07-18
Build: ()