Use new change type for update object

To perform jobs for updated animated objects and doors with lowest
priority.
pull/2016/head
elsid 6 years ago
parent 851c2f55cd
commit 41319eb2bf
No known key found for this signature in database
GPG Key ID: B845CB9FEE18AB40

@ -29,6 +29,7 @@ namespace DetourNavigator
remove = 0,
mixed = 1,
add = 2,
update = 3,
};
class AsyncNavMeshUpdater

@ -46,7 +46,7 @@ namespace DetourNavigator
{
if (!mRecastMeshManager.updateObject(id, transform, areaType))
return false;
addChangedTiles(shape, transform, ChangeType::mixed);
addChangedTiles(shape, transform, ChangeType::update);
return true;
}

Loading…
Cancel
Save