From f6344c34e7b5a67527c9ef282d2a2246904df2a3 Mon Sep 17 00:00:00 2001 From: "Anthony J. Thibault" Date: Wed, 30 Mar 2016 15:19:35 -0700 Subject: [PATCH] Model: Fix for equipped models not updating their matrices --- libraries/render-utils/src/Model.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libraries/render-utils/src/Model.cpp b/libraries/render-utils/src/Model.cpp index 8d59d5f736..078a64405c 100644 --- a/libraries/render-utils/src/Model.cpp +++ b/libraries/render-utils/src/Model.cpp @@ -131,6 +131,8 @@ void Model::setOffset(const glm::vec3& offset) { void Model::enqueueLocationChange() { + _needsUpdateClusterMatrices = true; + // queue up this work for later processing, at the end of update and just before rendering. // the application will ensure only the last lambda is actually invoked. void* key = (void*)this;