1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-04 12:39:55 +00:00

Merge pull request #2493 from elsid/navigator_update_rotated_objects

Update rotated world objects in navigator
This commit is contained in:
Andrei Kortunov 2019-08-15 20:27:54 +04:00 committed by GitHub
commit 3a88620a43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1458,6 +1458,9 @@ namespace MWWorld
{ {
mRendering->rotateObject(ptr, rotate); mRendering->rotateObject(ptr, rotate);
mPhysics->updateRotation(ptr); mPhysics->updateRotation(ptr);
if (const auto object = mPhysics->getObject(ptr))
updateNavigatorObject(object);
} }
} }