custom model format changes

This commit is contained in:
A-lex-Ra
2024-01-09 13:46:26 +06:00
parent b5739c678f
commit c4125058b4
7 changed files with 93 additions and 39 deletions
+4 -4
View File
@@ -23,14 +23,14 @@ ContentGfxCache::ContentGfxCache(const Content* content, Assets* assets) {
sideregions[i * 6 + side] = atlas->get("notfound");
}
}
for (uint side = 0; side < def->textureMoreFaces.size(); side++)
for (uint side = 0; side < def->modelTextures.size(); side++)
{
std::string tex = def->textureMoreFaces[side];
std::string tex = def->modelTextures[side];
if (atlas->has(tex)) {
def->customfacesExtraUVs.push_back(atlas->get(tex));
def->modelUVs.push_back(atlas->get(tex));
} else {
if (atlas->has("notfound"))
def->customfacesExtraUVs.push_back(atlas->get("notfound"));
def->modelUVs.push_back(atlas->get("notfound"));
}
}
}