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
- “UnityException: GetInvalidFilenameChars” errors are thrown, and the Overlay Save Preset button becomes unusable when entering Play Mode with a shortcut while Overlay Save Preset window is opened
- "UnityException: GetName can only be called from the main thread." erors are thrown when the Shortcuts window is opened and entering Play Mode with a shortcut
- [Android] Light2D visuals stacking over frames when using RenderGraph
- VFX Asset icon blends in with highlight color when selected in Search window with Editor theme set to light
- Prefab Override is still possible when Prefab Source has the same field values as Override
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:
_