mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 09:33:49 +02:00
removed member declarations in hfm.h and debug print statements
This commit is contained in:
parent
77fa4e7d13
commit
6e5c52972a
3 changed files with 1 additions and 22 deletions
|
@ -583,7 +583,7 @@ HFMModel* FBXSerializer::extractHFMModel(const QVariantHash& mapping, const QStr
|
|||
if (modelname.startsWith("hifi")) {
|
||||
hifiGlobalNodeID = id;
|
||||
}
|
||||
|
||||
|
||||
int humanIKJointIndex = humanIKJointNames.indexOf(name);
|
||||
if (humanIKJointIndex != -1) {
|
||||
humanIKJointIDs[humanIKJointIndex] = getID(object.properties);
|
||||
|
|
|
@ -1188,16 +1188,6 @@ void GLTFSerializer::hfmDebugDump(const HFMModel& hfmModel) {
|
|||
qCDebug(modelformat) << " hasSkeletonJoints =" << hfmModel.hasSkeletonJoints;
|
||||
qCDebug(modelformat) << " offset =" << hfmModel.offset;
|
||||
|
||||
qCDebug(modelformat) << " leftEyeJointIndex =" << hfmModel.leftEyeJointIndex;
|
||||
qCDebug(modelformat) << " rightEyeJointIndex =" << hfmModel.rightEyeJointIndex;
|
||||
qCDebug(modelformat) << " neckJointIndex =" << hfmModel.neckJointIndex;
|
||||
qCDebug(modelformat) << " rootJointIndex =" << hfmModel.rootJointIndex;
|
||||
qCDebug(modelformat) << " leanJointIndex =" << hfmModel.leanJointIndex;
|
||||
qCDebug(modelformat) << " headJointIndex =" << hfmModel.headJointIndex;
|
||||
qCDebug(modelformat) << " leftHandJointIndex" << hfmModel.leftHandJointIndex;
|
||||
qCDebug(modelformat) << " rightHandJointIndex" << hfmModel.rightHandJointIndex;
|
||||
qCDebug(modelformat) << " leftToeJointIndex" << hfmModel.leftToeJointIndex;
|
||||
qCDebug(modelformat) << " rightToeJointIndex" << hfmModel.rightToeJointIndex;
|
||||
qCDebug(modelformat) << " leftEyeSize = " << hfmModel.leftEyeSize;
|
||||
qCDebug(modelformat) << " rightEyeSize = " << hfmModel.rightEyeSize;
|
||||
|
||||
|
|
|
@ -270,17 +270,6 @@ public:
|
|||
|
||||
glm::mat4 offset; // This includes offset, rotation, and scale as specified by the FST file
|
||||
|
||||
int leftEyeJointIndex = -1;
|
||||
int rightEyeJointIndex = -1;
|
||||
int neckJointIndex = -1;
|
||||
int rootJointIndex = -1;
|
||||
int leanJointIndex = -1;
|
||||
int headJointIndex = -1;
|
||||
int leftHandJointIndex = -1;
|
||||
int rightHandJointIndex = -1;
|
||||
int leftToeJointIndex = -1;
|
||||
int rightToeJointIndex = -1;
|
||||
|
||||
float leftEyeSize = 0.0f; // Maximum mesh extents dimension
|
||||
float rightEyeSize = 0.0f;
|
||||
|
||||
|
|
Loading…
Reference in a new issue