parent
d44e25350f
commit
657014dff6
|
@ -1359,9 +1359,11 @@ inline void Asset::Load(const std::string& pFile, bool isBinary)
|
||||||
|
|
||||||
// Force reading of skins since they're not always directly referenced
|
// Force reading of skins since they're not always directly referenced
|
||||||
if (Value* skinsArray = FindArray(doc, "skins")) {
|
if (Value* skinsArray = FindArray(doc, "skins")) {
|
||||||
for (unsigned int i = 0; i < skinsArray->Size(); ++i) {
|
if ( nullptr != skinsArray ) {
|
||||||
skins.Retrieve(i);
|
for (unsigned int i = 0; i < skinsArray->Size(); ++i) {
|
||||||
}
|
skins.Retrieve(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Value* animsArray = FindArray(doc, "animations")) {
|
if (Value* animsArray = FindArray(doc, "animations")) {
|
||||||
|
|
Loading…
Reference in New Issue