From f7ab7a861f70bd67ef26685f29ed5e5b8b6bef17 Mon Sep 17 00:00:00 2001 From: Connor Thomson Date: Wed, 9 Sep 2026 19:56:12 -0700 Subject: Add camera subsystem --- src/obj_model.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/obj_model.c') diff --git a/src/obj_model.c b/src/obj_model.c index 44cf8aa..ffbfcf3 100644 --- a/src/obj_model.c +++ b/src/obj_model.c @@ -20,6 +20,7 @@ #include #include #include "obj_model.h" +#include "camera.h" #include "ta_sdl.h" #include "files.h" @@ -156,8 +157,7 @@ void ta_obj_model_render(const ta_obj_model *model, SDL_GPUCommandBuffer *comman uniforms.model[14] = model->position[2]; float aspect = (float)window_width / (float)window_height; float focal_length = 1.0f / tanf(22.5f * 0.01745329252f); - ta_obj_identity(view); - view[14] = -5.0f; + ta_camera_get_view_matrix(view); projection[0] = focal_length / aspect; projection[5] = focal_length; projection[10] = -101.0f / 99.0f; -- cgit v1.2.3