Search Issue Tracker
By Design
Votes
0
Found in [Package]
1.1.11
Issue ID
1058770
Regression
No
[LWRP] Post Processing V2 effects appears inconsistently when changing the depth value on a different Camera
Steps to reproduce:
1. Open QA-supplied project
2. Open Scene "scene_main"
3. Change the depth value on the camera without the Post Processing attached ("__camera_secocond_ui")
4. Observe the Game view
Expected: The Post Processing either disappears or appears when the depth value is set to <=0 or >=0
Actual: the Post Processing appears on the following depth values: (<-1 and >=0 && <1)
Reproduced in: 2018.1.8f1, 2018.2.0f2, 2018.3.0a5
Notes: Only happens with LWRP
Earlier versions were not tested due to LWRP not being introduced yet
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
- Tile Palette grid is moved after entering Play Mode
- Tile Palette Edit mode turns off in Play Mode
- The Editor crashes when Generating Font Atlas in the Font Asset Creator with “9999999999” padding and 256x256 Atlas Resolution
- [iOS] An “ArgumentNullException” error is thrown when GetIntroductoryPriceDictionary() method is called
- Font Import Settings documentation page is missing when the documentation button is pressed in the Inspector window
Resolution Note:
LWRP does not support Screen Space - Camera mode. We will remove this option from UI when LWRP is enabled. The alternative is to use Screen Space - Overlay or World Space camera.
By using a second camera to render your UI you have extra culling cost, camera state setup and bandwidth cost by writing and reading more memory. If a second camera depends on the result of a previous one, the camera render target has to be initialized by reading external memory to GPU, this is especially troublesome in mobile as external reads from GPU memory consume power and therefore can cause device to overheat.