Take the 2-minute tour ×
Game Development Stack Exchange is a question and answer site for professional and independent game developers. It's 100% free, no registration required.

I have a bit of a problem where my meshes are either unsmooth because I'm using deferred rendering path or they are smooth using forward rendering path but it creates this weird pixel line between the textures on the mesh. Has anyone encountered such a problem and overcome it? It seems like more of a unity rendering issue.

These lines as you can see in the "Render Path: Forward" screen shot do not appear using deferred render path; nonetheless, using deferred makes the edges of my block meshes jagged without AA. I'd like to have smooth edges and not have these weird pixel lines showing up. Any help would be appreciated.

Click photo below to see larger image

Click photo to see larger image

Click photo to see larger image

share|improve this question
    
Are you drawing strips or quads? It looks like it's iterating through squares and AA is being applied to everyone of them. I can't think of how you fix that while specifying each cube face as a separate surface. –  RobStone Aug 5 at 19:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.