-
DescriptionThe texture looks different on my mobile browser, I used chrome on nexus 6p and the texture look like this: Live Demohttps://texturetest.glitch.me/ VersionBrowser Affected
OS
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I can see this behavior on regular desktop Chrome as well. This is a result of the way we anti-alias your texture (which has many fine stripes, and so is particularly aliasing prone). You are seeing different mipmap levels on different parts of the sphere, which end up colored a bit differently. You might be able to improve this by tweaking your texture slightly; the colors outside of your UV mapping matter here, for instance. It might also help to make your stripes a power-of-2 pixels wide to help with consistent mipmapping. But in general, tiny stripes in textures will tend to make your life difficult. |
Beta Was this translation helpful? Give feedback.
I can see this behavior on regular desktop Chrome as well. This is a result of the way we anti-alias your texture (which has many fine stripes, and so is particularly aliasing prone). You are seeing different mipmap levels on different parts of the sphere, which end up colored a bit differently. You might be able to improve this by tweaking your texture slightly; the colors outside of your UV mapping matter here, for instance. It might also help to make your stripes a power-of-2 pixels wide to help with consistent mipmapping. But in general, tiny stripes in textures will tend to make your life difficult.