Search Issue Tracker
By Design
Votes
1
Found in
2020.1.0a16
2020.2.0a13
Issue ID
1252836
Regression
Yes
Sprites reference both the original Sprite assets and Sprite Atlas resulting in increased memory usage
Steps to reproduce:
1. Play the attached "TestFor1071494.zip" project's SampleScene
2. In the Profiler window go to Memory view in Detailed mode
3. Click Take Sample: Editor
4. In the batch viewer go to Assets -> Texture2D
5. Notice the entries for both the Sprite Atlas and each individual Sprite asset
Expected result: Sprites only reference the Sprite Atlas
Actual result: Sprites reference the Sprite Atlas and the original Sprite assets
Reproducible with: 2020.2.0a14, 2020.1.0b11, 2020.1.0a16
Not Reproducible with: 2020.1.0a15
Environment: Win and Mac
Same bug was reported for 2018.3 : https://fogbugz.unity3d.com/f/cases/1071494/
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
- Script missing in "Assets/Settings/Mobile_Renderer/GlobalVolumeFeature" of "com.unity.template.urp-blank" template
- “Font Asset Creator - Error Code [Invalid_File_Structure]…“ error is logged when generating Font Assets from fonts with meta files from previous Editor versions
- Input.mousePosition returns (NaN, NaN, 0.00) when Scene view is opened
- Incorrect warning icon and wrong message displayed in HDRP Decal Projector
- [Dragon Crashers] Build fails in U6
Resolution Note (2020.1.X):
In Editor both Original texture and Atlas texture are held as references by SpriteFrame. Hence the info shown by Profiler. When building Player/AssetBundles ONLY the Atlas texture is referenced and serialized. Hence you see the additional texture as reference in playmode.