From 20cea95783b080da6fb930f2ac64aa73599e696c Mon Sep 17 00:00:00 2001 From: Jim Shield Date: Mon, 22 Sep 2025 21:10:01 +0100 Subject: [PATCH] Set previous active cam inactive shouldn't be needed but just in case --- shared/make/cameras.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/shared/make/cameras.lua b/shared/make/cameras.lua index cda69bd..bec8ce1 100644 --- a/shared/make/cameras.lua +++ b/shared/make/cameras.lua @@ -71,6 +71,7 @@ function startTempCam(cam, renderTime, loadScene, filter, switchCam) -- if moving from a cached previous cam, or you've sent a camre id for it to switch from, interpolate to it if switchCam or cachePrevCam then SetCamActiveWithInterp(cam, cachePrevCam, renderTime or 1000, 0, 0) + SetCamActive(cachePrevCam, false) -- Set previous cam inactive (shouldn't be needed but just in case) else SetCamActive(cam, true) end