From 9e49fcf0a4041e74b3a12c8d0022fdc32dd86b77 Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Mon, 4 Jan 2016 11:29:01 -0800 Subject: [PATCH] include model-joints in debugging output --- libraries/entities/src/EntityItemProperties.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/libraries/entities/src/EntityItemProperties.cpp b/libraries/entities/src/EntityItemProperties.cpp index ef373bc206..a540bc1476 100644 --- a/libraries/entities/src/EntityItemProperties.cpp +++ b/libraries/entities/src/EntityItemProperties.cpp @@ -1811,6 +1811,18 @@ QList EntityItemProperties::listChangedProperties() { if (parentJointIndexChanged()) { out += "parentJointIndex"; } + if (jointRotationsSetChanged()) { + out += "jointRotationsSet"; + } + if (jointRotationsChanged()) { + out += "jointRotations"; + } + if (jointTranslationsSetChanged()) { + out += "jointTranslationsSet"; + } + if (jointTranslationsChanged()) { + out += "jointTranslations"; + } getAnimation().listChangedProperties(out); getKeyLight().listChangedProperties(out);