Skip to content

NavMeshBuildMarkup

Wyatt Gillette edited this page Aug 12, 2022 · 3 revisions

Description

The NavMesh build markup allows you to control how certain objects are treated during the NavMesh build process, specifically when collecting sources for building.

You can override the area type or specify that certain objects should be excluded from collected sources. The markup is applied hierarchically.

Properties

area The area type to use when override area is enabled.
ignoreFromBuild Use this to specify whether the GameObject and its children should be ignored.
overrideArea Use this to specify whether the area type of the GameObject and its children should be overridden by the area type specified in this struct.
root Use this to specify which GameObject (including the GameObject’s children) the markup should be applied to.
Node worldMap = ...;
NavMeshBuildMarkup markup = new NavMeshBuildMarkup(worldMap.getChild("door_green"), JmeAreaMods.AREAMOD_DOOR);

JmeGeomProviderBuilder m_gbuilder = new JmeGeomProviderBuilder(worldMap);
JmeInputGeomProvider m_geom = m_gbuilder.build(JmeAreaMods.AREAMOD_GROUND, Arrays.asList(markup), new ArrayList<>());
Clone this wiki locally