mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
Merge pull request #1830 from pacomont/Fix_NavMeshUpdate_not_working
Fix for NavPath is not updated when navMesh has change.
This commit is contained in:
commit
6cad7b6248
|
|
@ -838,7 +838,7 @@ void NavMesh::buildNextTile()
|
|||
ctx->stopTimer(RC_TIMER_TOTAL);
|
||||
if(getEventManager())
|
||||
{
|
||||
String str = String::ToString("%d %.3f", getId(), ctx->getAccumulatedTime(RC_TIMER_TOTAL) / 1000.0f);
|
||||
String str = String::ToString("%d", getId());
|
||||
getEventManager()->postEvent("NavMeshUpdate", str.c_str());
|
||||
setMaskBits(LoadFlag);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue