2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 02:27:43 +00:00

Initial PATH cooking support

This commit is contained in:
Jack Andersen
2018-02-24 22:23:00 -10:00
parent 2f6d9d2509
commit 3acb9c9e3d
6 changed files with 248 additions and 36 deletions

View File

@@ -1522,7 +1522,10 @@ Actor::Actor(Connection& conn)
PathMesh::PathMesh(Connection& conn)
{
uint32_t dataSize;
conn._readBuf(&dataSize, 4);
data.resize(dataSize);
conn._readBuf(data.data(), dataSize);
}
const Bone* Armature::lookupBone(const char* name) const