Search Issue Tracker
Fixed
Fixed in 2022.3.21f1, 2023.2.11f1, 2023.3.0a1
Votes
5
Found in
2022.3.1f1
2023.1.0b20
2023.2.0a18
Issue ID
UUM-38158
Regression
No
Depth is not rendered in a depth-only camera which is set up by a custom script
Reproduction steps:
1. Open the attached "repro_IN-42176.zip" project
2. Open the "SampleScene" Scene
3. Enter the Play Mode
4. Enable the Frame Debugger and observe the output for the "Custom Camera"
Expected result: Depth is rendered on a depth-only camera
Actual result: Depth is not rendered on a depth-only camera
Reproduced with: 14.0.8 (2022.3.1f1), 15.0.5 (2023.1.0b20), 16.0.2 (2023.2.0a18)
Couldn’t test with: 12.1.12 (2021.3.27f1) - Couldn’t resolve errors
Reproduced on: macOS 13.4 (by user), Windows 10
Note: Depth-only camera is initiated with the “DepthCapture“ script
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
- Unable to undo or redo color swatch changes when creating or deleting color swatches
- [Linux][Vulkan] Silent crash when tooltip appears while hovering over a label
- Material Properties are not preserved when overriding Shader using Render Objects
- Scene view flickers when both Scene and Game view are active and DX11 API is used with Gamma Color Space
- ZivaRT Player and ML Agents packages Deprecated label color differs from other Deprecated packages
Resolution Note (fix version 2023.3.0a1):
So by default this will not look like it's fixed due to another issue that's being investigated. But the gist of it is - default value of UniversalRenderPipeline.SingleCameraRequest is not ok to be used in RenderRequest, because it must have destination set(https://docs.unity3d.com/ScriptReference/Rendering.RenderPipeline.StandardRequest-destination.html). In your case this is targetTexture set on the Camera which calls the render request. This is going to be fixed in the future.
So please set the destination in your script and it should work fine now.
Resolution Note (fix version 2023.2.11f1):
For the fix to work, it's necessary to pass the 'destination' to UniversalRenderPipeline.SingleCameraRequest and remove the reflection type.
Resolution Note (fix version 2022.3.21f1):
For the fix to work, it's necessary to pass the 'destination' to UniversalRenderPipeline.SingleCameraRequest and remove the reflection type.