Occlusion culling laggy?

Hey I’m currently working on a fast paced drone game and I seem to have found a weakness in the built in occlusion culling, I don’t want to disable it as it will be needed for performance in the future but was curious if there was a way to increase tolerances or eliminate this frame or two of lag?

Example video: UE4 occlusion culling problem. - YouTube

That is expected side effect. Consider increasing overall framerate of your game, changing lighting setup, so that popping is not that visible, or disabling occlusion culling in project settings.

Yeah, this is totally intended due to how occlusion culling works. You can increase bounds scale of the objects, that give you problems, but it won’t hold up on fast camera turns and will reduce effectiveness of culling to the point, where you might be better of extinguishing it completely.

This is due to the GPU occlusion culling. there is a one frame lag.
If you want to avoid it, Epic implemented software occlusion culling in 4.20.
Switch to this should avoid the one frame delay but will increase the cpu workload.
Its probably best to use it if you dont have too many objects. Try to use precomputed visibility culling, to save some performance there.