Pixel game how to keep pixel aspect of image

Hello, guys a try to create an game with Solar 2D in pixel but a have a problem with aspect of sprite in game, the sprite looks like distorted and does not appear to be pixel, the a way to reverse this?

the normal aspect
image

Solar 2D aspect
image

Hi,
try this:
display.setDefault( "magTextureFilter", "nearest" )
display.setDefault( "minTextureFilter", "nearest" )

More info here:

4 Likes

Thank, helped me a lot!