Search Issue Tracker
Fixed in 9.0.0-preview.29
Votes
0
Found in [Package]
2017.4
2019.2.3f1
2020.1
Issue ID
1209255
Regression
No
Unrealistic reflections are rendered when using an orthographic camera
Steps to reproduce:
1. Download and open attached "PBRShadingCameraOrtho" project
2. Press "Play"
3. Observe the left capsule in the Game view
Expected result: The left capsule in the Game view does not change its appearance when the camera is moved
Actual result: The left capsule in the Game view keeps changing its appearance, according to the camera position
Reproducible with: 2017.4.36f1, 2018.4.15f1, 2019.2.18f1, 2019.3.0f4, 2020.1.0a18
Note: Reproducible with URP, LWRP, and built-in RP reflective shaders, not reproducible with HDRP shaders and non-reflective URP, LWRP and built-in RP shaders
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Any small change in UI Builder Inspector refreshes Editor Inspector
- Inaccurate Box Collider boundaries on a rotated child Cube when the parent GameObject Scale is non-uniform
- [Android] "SHADOWS_SCREEN" set as shader Keyword when no "_ShadowMapTexture" is bound leads to freeze on a build on some Mali GPU devices
- The global scene list is overridden in a project built with command line when the Override Global Scene List setting is disabled in the build profile
- Global Scenes are not included in the Build when building multiple Build Profiles at the same time
ctmctm5
Oct 27, 2020 20:51
This happens because in the frag function in Internal-DeferredReflections.shader eyeVec is calculated as normalize(worldPos-_WorldSpaceCameraPos).
This calculation is correct for a perspective camera but not for an orthographic camera. You'd need to replace _WorldSpaceCameraPos with the ray's origin point on the camera.