mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-05-21 14:12:50 +02:00
Fix for missing fields in static initializer.
This commit is contained in:
parent
e96676fea4
commit
68b103b46b
1 changed files with 2 additions and 1 deletions
|
@ -653,7 +653,8 @@ FBXGeometry* FBXReader::extractFBXGeometry(const QVariantHash& mapping, const QS
|
||||||
|
|
||||||
glm::vec3 rotationMin, rotationMax;
|
glm::vec3 rotationMin, rotationMax;
|
||||||
FBXModel model = { name, -1, glm::vec3(), glm::mat4(), glm::quat(), glm::quat(), glm::quat(),
|
FBXModel model = { name, -1, glm::vec3(), glm::mat4(), glm::quat(), glm::quat(), glm::quat(),
|
||||||
glm::mat4(), glm::vec3(), glm::vec3()};
|
glm::mat4(), glm::vec3(), glm::vec3(),
|
||||||
|
false, glm::vec3(), glm::quat(), glm::vec3(1.0f) };
|
||||||
ExtractedMesh* mesh = NULL;
|
ExtractedMesh* mesh = NULL;
|
||||||
QVector<ExtractedBlendshape> blendshapes;
|
QVector<ExtractedBlendshape> blendshapes;
|
||||||
foreach (const FBXNode& subobject, object.children) {
|
foreach (const FBXNode& subobject, object.children) {
|
||||||
|
|
Loading…
Reference in a new issue