mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 15:52:53 +00:00
chore: add note about only rigid models being supported right now
This commit is contained in:
parent
27d047198f
commit
46111ae106
@ -584,7 +584,6 @@ namespace
|
||||
void CreateVertsBlendData(XSurface& surface, const std::vector<size_t>& vertexIndices, const XModelCommon& common)
|
||||
{
|
||||
// TODO
|
||||
assert(false);
|
||||
}
|
||||
|
||||
static void ReorderVerticesByWeightCount(std::vector<size_t>& vertexIndices, XSurface& surface, const XModelCommon& common)
|
||||
@ -684,7 +683,12 @@ namespace
|
||||
if (!hasVertsBlend)
|
||||
CreateVertListData(surface, xmodelToCommonVertexIndexLookup, common);
|
||||
else
|
||||
{
|
||||
CreateVertsBlendData(surface, xmodelToCommonVertexIndexLookup, common);
|
||||
|
||||
std::cerr << "Only rigid models are supported at the moment\n";
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user