include model-joints in debugging output

This commit is contained in:
Seth Alves 2016-01-04 11:29:01 -08:00
parent 8eef1624cb
commit 9e49fcf0a4

View file

@ -1811,6 +1811,18 @@ QList<QString> 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);