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
- Shader Graph Create Node window cannot be resized or moved after maximizing and reopening it
- [Usability] Cannot toggle Scene checkboxes using TAB/Enter in Build Profiles’ > Open Scene List
- Installing HDRP package throws Shader Graph validation warning about Exposure node when installed in Universal 3D Template
- ShaderGraph “Create Node” menu’s resize icon overlaps with the menu's scrollbar
- ShaderGraph “Create Node” menu’s Search bar's typing cursor is barely visible since it's black on a dark background
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.