Jump to content
Sign in to follow this  
cescollino

weird texture

Recommended Posts

The edge of your texture contains black/green, and when mip-mapped, the sides of this texture are bleeding onto the rendered output due to the texel calculation during compression.

To prevent this, increase the padding area of your texture, and try to use the most common color for the background of your texture, rather than (say) black.

At each mipmap scaling, each square set of 4 texels becomes 1 texel (average of the four), and the texture becomes more and more filtered. What you don't want is for that filtering to bleed color between each seperate UV island. Subdividing the texture using the above rule minimizes such inter-island bleeding. On the other hand, efficient use of the texture is as important as minimizing mipmap artifacts. And such mipmap bleeding is only noticeable if the colors of the inter-bleeding islands are different. Things on neighboring islands that will have similar texturing, therefore, can ignore the above rule, specially if they are continuous on the mesh itself - as in, the two islands being just the result of a seam separation.

Edited by Rocket

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×