updateBoneMatrices method
Implementation
Future updateBoneMatrices(ThermionEntity entity) async {
var result = await withBoolCallback((cb) {
update_bone_matrices_ffi(_sceneManager!, entity, cb);
});
if (!result) {
throw Exception("Failed to update bone matrices");
}
}