summaryrefslogtreecommitdiff
path: root/examples/gltf_loading
diff options
context:
space:
mode:
authorOmniscient <17525998+omnisci3nce@users.noreply.github.com>2024-04-21 11:52:42 +1000
committerOmniscient <17525998+omnisci3nce@users.noreply.github.com>2024-04-21 11:52:42 +1000
commitff923749ef298346c5448e90e8338bfc28e4f66b (patch)
tree4ce844e04984e1b55647886bd05779aa7dc8ea18 /examples/gltf_loading
parent374567ae4b18627f9ab410e7e5a38b1e7aeb04c5 (diff)
parentd8b564ffd1257152094966784a8db3d1396a8879 (diff)
Merge branch 'master' into cel-67-load-animation-data-from-gltf
Diffstat (limited to 'examples/gltf_loading')
-rw-r--r--examples/gltf_loading/ex_gltf_loading.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/gltf_loading/ex_gltf_loading.c b/examples/gltf_loading/ex_gltf_loading.c
index 5d53e78..b181426 100644
--- a/examples/gltf_loading/ex_gltf_loading.c
+++ b/examples/gltf_loading/ex_gltf_loading.c
@@ -72,7 +72,8 @@ int main() {
angle += (rot_speed * deltaTime);
transform model_tf = transform_create(vec3(0.0, 0.1, -0.1), rot,
1.8); // make the backpack a bit bigger
- draw_model(&core->renderer, &cam, cube, model_tf, &our_scene);
+ mat4 model = transform_to_mat(&model_tf);
+ draw_model(&core->renderer, &cam, cube, &model, &our_scene);
render_frame_end(&core->renderer);
}