Search Issue Tracker
By Design
Votes
0
Found in
2022.3.22f1
2023.2.16f1
6000.0.0b13
6000.1.0a7
6000.2.0a1
6000.3.0a1
7000.0.0a1
Issue ID
UUM-67402
Regression
No
[URP][Comp] SetGlobalTexture alpha channel is 1 when observing the Game view
How to reproduce:
1. Open the attached project “URP Feature Examples.zip“
2. Open the “Assets/Samples/Universal RP/14.0.9/Custom Samples/Custom Renderer Feature/CustomRFScene.unity“ Scene
3. Observe the Game view
Expected result: White GameObjects are visible on a black background
Actual result: The entire view is white
Reproducible with: 2022.3.22f1, 2023.2.16f1, 6000.0.0b13
Couldn’t test with: 2021.3.36f1 (Errors in the Console)
Reproducible on: macOS 14.4 Sonoma (Intel)
Not reproducible on: No other environment tested
Note: The screen is purple in Player
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
- “Remove Unused Overrides” available on not loaded Scene and throws “ArgumentException: The scene is not loaded” warning
- Adaptive Probe Volume occlusion edge is calculated incorrectly when viewing probes near geometry edges
- Sampling a texture using an HLSL file throws shader errors and the code does not compile
- "Graphics.CopyTexture called with null source texture" error when Base Camera of an Overlay Camera is removed with DX11 Graphics API and Compatibility Mode enabled
- WebGL sends wrong value with large numbers when SendMessage function is used
Resolution Note:
The custom render feature in the repro allocates the texture with a format which does not have an alpha channel. Allocating with a format that does have a alpha channel fixes the issue. E.g. add
colorDesc.colorFormat = RenderTextureFormat.ARGB32;
before
RenderingUtils.ReAllocateIfNeeded(ref rtCustomColor, colorDesc, name: settings.colorTargetDestinationID);
in the custom render feature
Resolution Note:
_