Fix debug output

This commit is contained in:
luiscuenca 2018-11-06 11:11:16 -07:00
parent 599b7761b2
commit e0d1ef3be3

View file

@ -2025,7 +2025,7 @@ FBXGeometry* FBXReader::extractFBXGeometry(const QVariantHash& mapping, const QS
if (jointIndex != -1) {
geometry.jointRotationOffsets.insert(jointIndex, rotationOffset);
}
qDebug() << "Joint Rotation Offset added to Rig._jointRotationOffsets : " << " jointName: " << jointName << " jointIndex: " << jointIndex << " rotation offset: " << rotationOffset;
qCDebug(modelformat) << "Joint Rotation Offset added to Rig._jointRotationOffsets : " << " jointName: " << jointName << " jointIndex: " << jointIndex << " rotation offset: " << rotationOffset;
}
return geometryPtr;