mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-30 22:07:58 +03:00
Ignore non-3D agents in the navigator
This commit is contained in:
parent
4daac2b816
commit
d40c09c18c
1 changed files with 2 additions and 1 deletions
|
@ -16,7 +16,8 @@ namespace DetourNavigator
|
||||||
|
|
||||||
void NavigatorImpl::addAgent(const AgentBounds& agentBounds)
|
void NavigatorImpl::addAgent(const AgentBounds& agentBounds)
|
||||||
{
|
{
|
||||||
if (agentBounds.mHalfExtents.length2() <= 0)
|
if (agentBounds.mHalfExtents.x() == 0.f || agentBounds.mHalfExtents.y() == 0.f
|
||||||
|
|| agentBounds.mHalfExtents.z() == 0.f)
|
||||||
return;
|
return;
|
||||||
++mAgents[agentBounds];
|
++mAgents[agentBounds];
|
||||||
mNavMeshManager.addAgent(agentBounds);
|
mNavMeshManager.addAgent(agentBounds);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue