diff options
author | Joshua Rowe <17525998+omnisci3nce@users.noreply.github.com> | 2024-04-21 11:48:06 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-21 11:48:06 +1000 |
commit | d8b564ffd1257152094966784a8db3d1396a8879 (patch) | |
tree | adbbda6eec38d0cd6f35f29e422debe09b807461 /examples/gltf_loading/ex_gltf_loading.c | |
parent | 45f035c2174a018444a4e495ec78b4806900d903 (diff) | |
parent | 540bdfd0cbe4a95b49281cec4d3ed207070a3b5b (diff) |
Merge pull request #10 from omnisci3nce/cel-41-port-over-a-basic-3d-scene-example
Cel 41 port over a basic 3d scene example
Diffstat (limited to 'examples/gltf_loading/ex_gltf_loading.c')
-rw-r--r-- | examples/gltf_loading/ex_gltf_loading.c | 3 |
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 867ddb2..98654d6 100644 --- a/examples/gltf_loading/ex_gltf_loading.c +++ b/examples/gltf_loading/ex_gltf_loading.c @@ -70,7 +70,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); } |