Fixed: Initialize members in XFileHelper
parent
3543bb7e5f
commit
5cc43ecfad
|
@ -87,9 +87,13 @@ struct Material
|
||||||
aiColor3D mEmissive;
|
aiColor3D mEmissive;
|
||||||
std::vector<TexEntry> mTextures;
|
std::vector<TexEntry> mTextures;
|
||||||
|
|
||||||
size_t sceneIndex; ///< the index under which it was stored in the scene's material list
|
size_t sceneIndex; ///< the index under which it was stored in the scene's material list
|
||||||
|
|
||||||
Material() { mIsReference = false; sceneIndex = SIZE_MAX; }
|
Material()
|
||||||
|
: mIsReference(false),
|
||||||
|
mSpecularExponent(),
|
||||||
|
sceneIndex(SIZE_MAX)
|
||||||
|
{}
|
||||||
};
|
};
|
||||||
|
|
||||||
/** Helper structure to represent a bone weight */
|
/** Helper structure to represent a bone weight */
|
||||||
|
|
Loading…
Reference in New Issue