Search Issue Tracker
By Design
Votes
5
Found in
2017.4.0f1
2018.3.0a1
2019.1.0a1
2019.2.0a1
2019.3.0a1
2019.3.0a6
Issue ID
1167669
Regression
No
Sprite is rendered with vertical line artifacts when it's assigned to 'Sprite Renderer' component
How to reproduce:
1. Open the attached '1167669.zip' project
2. Open 'Test' scene
2. Zoom in Game Objects of Canvas in the Scene tab
3. Compare both sprites
Expected result: Both Game Objects are rendered the same
Actual result: Line artifacts appear on the Game Object with 'Sprite Renderer' component
Reproducible: 2017.4.31f1, 2018.4.5f1, 2019.1.13f1, 2019.2.0f1, 2019.3.0a11
Comments (1)
-
tutojurgis
Jul 31, 2019 11:56
Reproduced as in description
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
- [Android] Crash on startup when Depth Stencil Format is set to S8_UINT
- Multiple errors occur when setting the Render Object Event to AfterRenderingPostProcessing while using STP for Upscaling
- UnityYamlMerge.exe doesn't correctly handle merge conflicts in modified properties on a prefab variant
- Inconsistent color scheme in "Details" section of "Select Presets" inspector window
- Crash on __pthread_kill when launching Editor via command-line with "-disableManagedDebugger" argument
Resolution Note (2019.3.X):
The issue was triggered due to the sprite texture not being "clean"; the alpha-channel (and other channels) didn't properly reduce to zero where transparency was expected. The result is that the generated "tight" mesh on which the sprite was rendered, contained many near-degenerate triangles. One of the long thin triangles matches the visible artifact. This is clearly visible when turning on wireframe rendering.
The verified solutions include (a) setting the Mesh Type to "Full Rect", or (b) cleaning up the texture itself (in this case, erasing all texture data outside a well-defined circle in some image manipulation tool).