You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Renderers that currently fetch intrinsics from the camera to get hold of the near plane, for example, will not work (exception) when view is set to ortho. The SphereRenderer suffers from this, for example. Solution: fetch the near plane directly this->curCamNearClip = cam.get<core::view::Camera::NearPlane>();
as this automatically work regardless of the type of projection.
TODO: check all renderers, basically.
The text was updated successfully, but these errors were encountered:
Renderers that currently fetch intrinsics from the camera to get hold of the near plane, for example, will not work (exception) when view is set to ortho. The SphereRenderer suffers from this, for example. Solution: fetch the near plane directly
this->curCamNearClip = cam.get<core::view::Camera::NearPlane>();
as this automatically work regardless of the type of projection.
TODO: check all renderers, basically.
The text was updated successfully, but these errors were encountered: