Animation WIP merge #321

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

Binary file not shown.

View File

@ -27,6 +27,7 @@ namespace SHADE
{
std::string name;
SHMatrix transform;
SHMatrix offset;
};
struct SHRigNodeAsset

View File

@ -151,6 +151,11 @@ namespace SHADE
reinterpret_cast<char*>(&data[i].transform),
sizeof(SHMatrix)
);
file.read(
reinterpret_cast<char*>(&data[i].offset),
sizeof(SHMatrix)
);
}
}