structReadFrom method
Implementation
@override
void structReadFrom(MemoryPointer p) {
_transform = field_transform.read(p);
_meshCount = field_meshCount.read(p);
_materialCount = field_materialCount.read(p);
_meshes.readFrom(p, count: meshCount);
_materials.readFrom(p, count: materialCount);
_meshMaterial.readFrom(p, count: materialCount);
_skeleton = field_skeleton.read(p);
_currentPose.readFrom(p, count: skeleton.boneCount);
_boneMatrices.readFrom(p, count: skeleton.boneCount);
}