From c8f0b0501a76b7293c3435e1418b2cc6529eef89 Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Mon, 18 Apr 2016 13:26:28 -0700 Subject: [PATCH] avoid active object update cycles --- libraries/shared/src/SpatiallyNestable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/shared/src/SpatiallyNestable.cpp b/libraries/shared/src/SpatiallyNestable.cpp index f0f130422c..2a3cb4af47 100644 --- a/libraries/shared/src/SpatiallyNestable.cpp +++ b/libraries/shared/src/SpatiallyNestable.cpp @@ -901,5 +901,5 @@ void SpatiallyNestable::setLocalTransformAndVelocities( _angularVelocityLock.withWriteLock([&] { _angularVelocity = localAngularVelocity; }); - locationChanged(); + locationChanged(false); }