mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 15:29:32 +02:00
include model-joints in debugging output
This commit is contained in:
parent
8eef1624cb
commit
9e49fcf0a4
1 changed files with 12 additions and 0 deletions
|
@ -1811,6 +1811,18 @@ QList<QString> EntityItemProperties::listChangedProperties() {
|
||||||
if (parentJointIndexChanged()) {
|
if (parentJointIndexChanged()) {
|
||||||
out += "parentJointIndex";
|
out += "parentJointIndex";
|
||||||
}
|
}
|
||||||
|
if (jointRotationsSetChanged()) {
|
||||||
|
out += "jointRotationsSet";
|
||||||
|
}
|
||||||
|
if (jointRotationsChanged()) {
|
||||||
|
out += "jointRotations";
|
||||||
|
}
|
||||||
|
if (jointTranslationsSetChanged()) {
|
||||||
|
out += "jointTranslationsSet";
|
||||||
|
}
|
||||||
|
if (jointTranslationsChanged()) {
|
||||||
|
out += "jointTranslations";
|
||||||
|
}
|
||||||
|
|
||||||
getAnimation().listChangedProperties(out);
|
getAnimation().listChangedProperties(out);
|
||||||
getKeyLight().listChangedProperties(out);
|
getKeyLight().listChangedProperties(out);
|
||||||
|
|
Loading…
Reference in a new issue