From 1c5bcd821c828e432779b99e2e3c3e47dbdd2c3d Mon Sep 17 00:00:00 2001 From: MegaMech Date: Fri, 16 May 2025 22:29:44 -0600 Subject: [PATCH] Actually interpolate item box --- src/racing/math_util.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/racing/math_util.c b/src/racing/math_util.c index f1dd6bf5d..457975ebb 100644 --- a/src/racing/math_util.c +++ b/src/racing/math_util.c @@ -190,6 +190,7 @@ void mtxf_identity(Mat4 mtx) { // Add a translation vector to a matrix, mat is the matrix to add, dest is the destination matrix, pos is the // translation vector void add_translate_mat4_vec3f(Mat4 mat, Mat4 dest, Vec3f pos) { + FrameInterpolation_RecordMatrixTranslate(dest, pos); dest[3][0] = mat[3][0] + pos[0]; dest[3][1] = mat[3][1] + pos[1]; dest[3][2] = mat[3][2] + pos[2];