As my first Question on these forums, I'm quite pleased that it is about pretty advanced stuff. Thanks in advance for any advice or help you can give!
I have a secondary camera that needs to have exactly the same frustum as the Main camera (yet it will be in a different position and rotation), but I want to render only the parts that are beyond a 3D plane in world space (similar to the near clip plane of a normal frustum, but not parallel to the far clip plane).
I would like to 'cut off' the front part of the Camera's default frustum, to create a frustum as illustrated by the black 'Result Frustum' in the image below. I would like to create a Projection Matrix for this.
![Camera Frustums][1]
I've got the camera (and its position, rotation, etc), the plane (and its normal, etc), the four blue vectors coming from the Camera's position (which are in the direction of the outgoing edges of the default frustum), and the black points where the blue vectors intersect the plane, and I know the distance from the camera to the far clip plane.
Is it possible to set up a projection matrix for this sort of effect? If so, how?
I expect I'm just at the end of figuring it out, but I can't quite get it. I do not know much about Projection or Transformation Matrices. I've tried it with the example code [here][2], but I think that assumes the near plane is parallel to the far plane, which is not what I want.
[1]: /storage/temp/81898-camerafrustums-01.png
[2]: https://docs.unity3d.com/ScriptReference/Camera-projectionMatrix.html
↧