Hello everyone, I am trying to disable frustum culling on a camera (if possible, would like it to affect with models with weapon tag) but not sure how to do it. I am using my custom render script to alway render weapon tagged models at the top and on it, I tried setting the use_frustum to false but did not work
local camera_component = state.cameras.camera_component
camera_component.camera = camera_components[i]
render.set_camera(camera_component.camera, { use_frustum = true }) -> false
Is it possible to stop it for a camera of specific models in a group?