Search Issue Tracker
By Design
Votes
12
Found in
2018.4
2020.2
2020.2.0b2
Issue ID
1277169
Regression
No
Render Texture will not be rendered in Build if the Graphics.Blit method is called on a Addressables Asset
How to reproduce:
1. Open the user's attached "RenderTextureAddressableIssue.zip"
2. Open the "SampleScene" Scene
3. Select the "Spawn" GameObject in the Hierarchy window
4. Enable the "Blit Test (Script)" Component in the Inspector
5. Open the "Canvas" Prefab in Prefab Mode (Assets/Prefab)
6. Select the "RawImage" GameObject in the Hierarchy
7. Disable the "Blit Test (Script)" Component in the Inspector
8. Go to File -> Build And Run
9. Observe the application
Expected result: Render Texture is rendered in the Build
Actual result: No Render Texture is rendered in the Build
Reproducible with: 2018.4.27f1, 2019.4.11f1, 2020.1.6f1, 2020.2.0b3
Notes:
- The issue is reproducible on both Windows and Mac Builds
- The issue is not reproducible in the Unity Editor
- The issue is not reproducible if the script with Graphics.Blit method is a part of the Addressables Asset
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
- Prefab override popup is cropped/positioned incorrectly when more than one display is used and a higher display Scale is set
- Opening a dropdown on a small screen results in its instant closing when mouse cursor is pressed where the dropdown is going to be opened
- Only "ArgumentNullException: Value cannot be null" is displayed instead of all the actual errors when opening a project with numerous compilation errors
- MultiColumnListView and MultiColumnTreeView do not change selection on first input when focus is set by code
- SerializedProperty.DataEquals is returning false when SerializedProperty.EqualContents return true
Resolution Note:
The script in the Hierarchy is running Blit on a copy of the Assets that live in player data, however, the Canvas that is being loaded into memory and instantiated comes from Addressables with its own copy of Render Texture and Source Texture. Marking both the Render Texture and the Source Texture as Addressables and using the AssetReference type in the script fixes the issue