Detecting when camera's near clip plane is hit

Is there a (elegant) way to detect when the camera’s near clip plane is hit or when culling starts?

current solution:
kinematic rigidbody trigger box at nearclip plane, ontriggerenter()

One way of testing to see if something is visible by the camera is to do the following:

Plane[] frustumPlanes = GeometryUtility.CalculateFrustumPlanes(camera);
if (!GeometryUtility.TestPlanesAABB(frustumPlanes, bounds));
    Debug.Log("Not visible!");

You could reduce the frustumPlanes array to only contain the near plane.

Your current solution is the best I can think of. If you have a script on the camera, you can also set the scale of the collider to be the same as the cameras near clip plane multiplied by two in the start function, to make them match exactly if you wan’t to.

Good luck!

/TheDDestroyer12