Animation WIP merge #321

Merged
XiaoQiDigipen merged 76 commits from SP3-17-animation-system into main 2023-01-30 17:35:57 +08:00
1 changed files with 3 additions and 2 deletions
Showing only changes of commit 6fa14aff85 - Show all commits

View File

@ -58,9 +58,10 @@ namespace SHADE
file.seekg(0);
//TODO Update to new mesh header with anim count when animation saving is done
file.read(
reinterpret_cast<char*>(&model.header),
sizeof(SHModelAssetHeader)
reinterpret_cast<char*>(&model.header.meshCount),
sizeof(model.header.meshCount)
);
std::vector<SHMeshLoaderHeader> headers(model.header.meshCount);