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
- WebGL Player with WebGPU Graphics API fails to render Scene when custom Render Feature is used
- “EndLayoutGroup” error thrown when changing Shader Precision Model settings in Build Profiles window > Player Settings Overrides
- Button hover state uses default theme color when a custom .uss is applied
- Samples Showcase script warning does not clear after enabling required settings until GameObject is reselected
- VFX Particles receive shadow artifacts when using ShaderGraph with enabled shadows and Face Camera Plane Orient mode
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.