Hello,
I’m trying to create a top down 2D game. Currently I’m stuck on a graphical problem: Some sprites ‘borrow’ pixels from their immediate left (in the sprite sheet) when moving the camera around, resulting in flickering seams. Below is an example:
Long Question: In this screenshot, you can see there are 4 ‘water’ tiles that have this yellow ‘seam’ to the left of them (middle of screen). These lines originate from the vertical line of pixels to the immediate left of the sprite in the sprite sheet (See bottom left for the sprite and the yellow gapes in between sprites in my sprite sheet). The seams/lines flicker for a fraction of a second, happen when moving the camera around and can happen to any tile. In this case the grass tiles are not getting these lines since there are no pixels to the left of them in the sprite sheet.
I hope this issue has some obvious solution that I’m missing, but I couldn’t find a proper solution through a google/forum search.
Additional information about sprite sheet/screen: Max Size 4095, Truecolor format, Point filtering, 64 Pixels to Units, happens at all resolutions. I could provide additional information about these seams/lines, but seeing how these lines are depending on their neighboring pixels in the sprite sheet, there’s probably an obvious answer to this problem.
Short question: Sprites are using pixels from immediate vicinity in sprite sheet for fraction of a second, only when moving camera around. Possible causes?
EDIT: Since the colors of the seams depend on the vertical pixel line next to the sprite, I’m guessing this might have to do something with compression? I don’t know exactly how the sprite renderer works though, so maybe someone with more knowledge about it might be able to answer this question.
