NavigationMesh Class
The scope of applications for UnigineScript is limited to implementing materials-related logic (material expressions, scriptable materials, brush materials). Do not use UnigineScript as a language for application logic, please consider C#/C++ instead, as these APIs are the preferred ones. Availability of new Engine features in UnigineScript (beyond its scope of applications) is not guaranteed, as the current level of support assumes only fixing critical issues.
Inherits from: | Navigation |
This class enables to create a navigation area above the surface of an arbitrary mesh. In fact, the navigation mesh is the area of the specified height above the mesh polygons, which is available for pathfinding.
A mesh used as a base for the navigation mesh should meet the requirements described here.
See Also#
- The article on Navigation Mesh
- A set of samples located in the data/samples/paths folder:
- mesh_00
- route_03
- route_04
NavigationMesh Class
Members
static NavigationMesh ( ) #
Constructor. Creates an empty navigation mesh.static NavigationMesh ( string arg1 ) #
Creates a navigation mesh from the given *.mesh file.Arguments
- string arg1 - Path to the *.mesh file.
void setDepth ( int depth ) #
Sets a depth value. The larger the depth value, the better control over accuracy and speed of route calculation is provided.Arguments
- int depth - A depth, which is an integer value in range [0;4].
int getDepth ( ) #
Returns the depth value, which is an integer value in range [0;4]. The larger the depth value, the better control over accuracy and speed of route calculation is provided.Return value
The depth value.void setHeight ( float height ) #
Sets the distance above the navigation mesh polygons that is available for pathfinding. By default, the height is set to 1.Arguments
- float height - Height in units.
float getHeight ( ) #
Returns the distance above the navigation mesh polygons that is available for pathfinding. By default, the height is set to 1.Return value
Height in units.int setMesh ( Mesh mesh ) #
Copies a given mesh into the mesh, on which the current navigation mesh is based.Arguments
- Mesh mesh - Mesh to be copied.
Return value
1 if the mesh is copied successfully; otherwise, 0.int getMesh ( Mesh mesh ) #
Copies the mesh that is used as a base for the current navigation mesh into the received mesh.A mesh used as a base for the navigation mesh should meet the requirements described here.
Arguments
- Mesh mesh - A mesh into which the current mesh is copied.
Return value
1 if the mesh is copied successfully; otherwise, 0.int setMeshName ( string path, int force_load = 0 ) #
Sets a new name for the mesh used as a base for the navigation mesh and forces loading of the mesh with the new name for the current navigation mesh.Arguments
- string path - A mesh name to be set.
- int force_load - Force flag.
- If 1 is specified, the mesh with the new name will be loaded immediately.
- If 0 is specified, only the mesh name will be updated.
Return value
1 if:- The current mesh name coincides the new name.
- The mesh with the new name has been loaded successfully.
- The force flag is set to 0.
string getMeshName ( ) #
Returns the name of the mesh used as a base for the navigation mesh.Return value
The mesh name.int loadMesh ( string path ) #
Loads a mesh, on which the navigation mesh is based, from the file. This function doesn't change the mesh name.Arguments
- string path - A relative path to the *.mesh file.
Return value
1 if the mesh is loaded successfully; otherwise, 0.int saveMesh ( string path ) #
Saves the mesh, on which the navigation mesh is based, to the file.Arguments
- string path - A relative path to the *.mesh file.
Return value
1 if the mesh is saved successfully; otherwise, 0.static int type ( ) #
Returns the type of the node.Return value
Navigation type identifier.void setMeshName ( string name ) #
Saves the name of the mesh used as a base for the navigation mesh.A mesh used as a base for the navigation mesh should meet the requirements described here.
mesh->setMeshName("NewMeshName");
mesh.SetMeshName("NewMeshName");
Arguments
- string name - A mesh name to be set.
Last update:
2021-12-13
Help improve this article
Was this article helpful?
(or select a word/phrase and press Ctrl+Enter)