[IMaterial] Give feedback for missing techsets

This commit is contained in:
momo5502 2016-12-26 19:43:53 +01:00
parent d81ee41c8f
commit 2c90324f25

View File

@ -47,6 +47,11 @@ namespace Assets
std::string techset = reader.readString();
material->techniqueSet = Components::AssetHandler::FindOriginalAsset(Game::XAssetType::ASSET_TYPE_TECHSET, techset.data()).techniqueSet;
if (!material->techniqueSet)
{
Components::Logger::Error("Techset '%s' not found!", techset.data());
}
material->textureTable = builder->getAllocator()->allocateArray<Game::MaterialTextureDef>(material->textureCount & 0xFF);
material->constantTable = builder->getAllocator()->allocateArray<Game::MaterialConstantDef>(material->constantCount & 0xFF);
material->stateBitTable = builder->getAllocator()->allocateArray<Game::GfxStateBits>(material->stateBitsCount & 0xFF);