How to remove transparency threshold for camera occlusion?

The only solutions i have found were for the old version of the Poppercam module, how can i do this with the new version?

This requires a fork of the PlayerModule. Look in Popper (PlayerModule.CameraModule.ZoomController.Popper) for the following code:

local function canOcclude(part)
	-- Occluders must be:
	-- 1. Opaque
	-- 2. Interactable
	-- 3. Not in the same assembly as the subject

	return
		getTotalTransparency(part) < 0.25 and
		part.CanCollide and
		subjectRoot ~= (part:GetRootPart() or part) and
		not part:IsA("TrussPart")
end

Remove the transparency conditional or change it to another value of your liking.

1 Like

OK will try that, looks like i was looking at the wrong modulescript with popper in it’s name.
Ok what now?
Nvm figured it out