mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 22:35:14 +02:00
Initiailize the jont indices to -1 in FBXGemoetry to avoid problems until the skeleton data is actually loaded
This commit is contained in:
parent
347c74ebae
commit
dc01611f26
1 changed files with 10 additions and 10 deletions
|
@ -226,16 +226,16 @@ public:
|
|||
|
||||
glm::mat4 offset;
|
||||
|
||||
int leftEyeJointIndex;
|
||||
int rightEyeJointIndex;
|
||||
int neckJointIndex;
|
||||
int rootJointIndex;
|
||||
int leanJointIndex;
|
||||
int headJointIndex;
|
||||
int leftHandJointIndex;
|
||||
int rightHandJointIndex;
|
||||
int leftToeJointIndex;
|
||||
int rightToeJointIndex;
|
||||
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;
|
||||
|
||||
QVector<int> humanIKJointIndices;
|
||||
|
||||
|
|
Loading…
Reference in a new issue