Search Issue Tracker
Won't Fix
Votes
0
Found in [Package]
8.0.1
Issue ID
1228885
Regression
No
[HDRP] Camera relative rendering jitter when performing very small camera movements
Reproduction steps:
1. Open the attached project ("case_1228885-CameraJitter.zip")
2. Open the repro scene ("SampleScene")
3. Enter Play Mode
4. Hold the right mouse button to move the camera
5. While looking at the ground, do some very small camera movements
Expected result: Camera jittering is not noticeable
Actual result: Camera jittering is noticeable
Reproducible with: 2019.3,7f1, 2020.1.0b4, 2020.2.0a5
Couldn't test with: 2017.4 (package not supported), 2018.4 (project breaking after downgrade)
Reproducible with package versions: 7.1.8, 8.0.1
Comments (1)
-
FullMe7alJacke7
Jan 17, 2021 20:14
I noticed the camera jittering for me was caused by turning on Anti-Aliasing and setting it to TAA. Disabling AA all together fixed my issue.
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
- Popup windows spawn on the incorrect monitor when the Editor is placed near the boundary of scaled monitor next to a monitor with different scaling
- Hidden Tabs do not shift into empty space after closing visible Tabs
- [Android] Application not deployed on a device when "activity-alias" is used in the AndroidManifest
- Shader compile process adds shader ID to the constant buffer name when the word "Globals" is being used in Vulkan
- Audio Mixer Snapshot link to the documentation isn’t working
Resolution Note:
This is because you are a kilometer from the object (terrain) origin, viewing details of under a millimeter; total 32-bit floating point accuracy is only around 1/16th of a millimeter at that distance, not enough to avoid texture swimming.
Fixing this would require changing the patch generation / instancing and transform code and vertex shaders to combine the patch transform with the camera position at a higher precision. Care would have to be taken to ensure cracks don't appear between patches, as each patch would effectively have a different transform.
The new environment system uses a monolithic camera-centered mesh for terrain rendering, that is much more amenable to fixing this kind of thing; as we can build one custom high precision transform for the entire mesh, and never have to worry about cracks.
We would much rather push that system forward than try to patch the existing one.