Search Issue Tracker
Won't Fix
Votes
2
Found in
5.0.0f3
Issue ID
674267
Regression
Yes
[WP8.1] Material with high tiling values does not render its texture correctly on software navbar devices
To reproduce:
1. Create a plane
2. Create a new material
3. Add a texture to the material (Albedo)
4. Set the tiling of the material to be 10x10
5. Add the material to the plane
6. Deploy to a Lumia device with a software navigation bar (WP8.1 or WP8)
7. Notice the plane is looks completely different from the editor
The issue is related to the filter mode, setting it to 'none' solves the problem
Does not reproduce with Version 4.6.3p1
This seems to be another driver bug (I've been able to reproduce this on Lumia 830). Texture doesn't look right because it's clamped instead of wrapped (reducing tiling from 10 to 2 allows to see effect easier). This can't be really fixed except in the driver.
However I have found workaround that fixes standard shader. All you need to do is change this line in UnityStandardInput.cginc file from:
sampler2D _MainTex;
to:
sampler2D _MainTex:register(s0);
You can copy Standard.shader and corresponding UnityStandard*.cginc files to your project and do modification there to not affect other projects. Our graphics team doesn't want this workaround enabled on all platforms (understandably) but it can save Windows Phone projects that are affected by this.
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
- Dropdown search icon is used next to the UI Builders Library search when the search has no dropdown functionality
- UI Builders library selection buttons tooltips are not in accordance with the Editors foundations
- Blue highlights appear when some of the UI Builders panels are focused
- Property fields overlap in the Override window when comparing changes
- "Timeflow Animation System" custom package appears twice in the Package Manager
Jojo-Batista
Apr 15, 2015 19:10
In unity 5 stills happens. I changed filter mode to point and it worked, but having it with bilinear and with tiling make it look really bad.