This page has been translated automatically.
Programming
Fundamentials
Setting Up Development Environment
UnigineScript
High-Level Systems
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine and Tools
GUI
Double Precision Coordinates
API
Bounds-Related Classes
Containers
Controls-Related Classes
Core Library
Engine-Related Classes
GUI-Related Classes
Node-Related Classes
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
Rendering-Related Classes
Utility Classes
Внимание! Эта версия документация УСТАРЕЛА, поскольку относится к более ранней версии SDK! Пожалуйста, переключитесь на самую актуальную документацию для последней версии SDK.
Внимание! Эта версия документации описывает устаревшую версию SDK, которая больше не поддерживается! Пожалуйста, обновитесь до последней версии SDK.

WorldSector Class

Interface for world sector handling. See also the UnigineScript analog.

To use this class, include the UnigineWorldSector.h file.

WorldSector Class

Members


WorldSector (const Math::vec3 & dimensions)

Constructor. Creates a new world sector with given dimensions.

Arguments

  • const Math::vec3 & dimensions - Dimensions of the new world sector. If negative values are provided, 0 will be used instead of them.

Ptr<Node> getNode (int id)

Returns a node pointer.

Arguments

  • int id - Number of the node in range from 0 to the total number of nodes.

Return value

Node pointer.

Ptr<Node> getNode ()

Returns a node pointer.

Return value

Node pointer.

void setSize (const Math::vec3 & size)

Updates the current dimensions of the world sector. The minimum value is vec3(0,0,0).

Arguments

  • const Math::vec3 & size - Dimensions of the world sector.

Math::vec3 getSize ()

Returns the current dimensions of the world sector. The minimum value is vec3(0,0,0).

Return value

Current dimensions.

int getNumWorldPortals ()

Returns the number of world portals adjacent to the world sector.

Return value

Number of portals.

Ptr<WorldPortal> getWorldPortal (int id)

Returns a specified world portal adjacent to the world sector.

Arguments

  • int id - Number of the portal in range from 0 to the total number of portals.

Return value

Specified portal.

int getNumNodes ()

Returns the number of nodes contained in the world sector.

Return value

Number of nodes.
Last update: 03.07.2017
Build: ()