Smooth pixels while rotating sprite

Posted by goodm on Game Development See other posts from Game Development or by goodm
Published on 2012-10-04T16:47:17Z Indexed on 2012/10/05 15:56 UTC
Read the original article Hit count: 273

I just started with andengine, so this maybe gonna be silly question. How to make my sprites more smooth while I rotate them? Or maybe it because this is screenshot from tablet?

enter image description here

Thanks JohnEye it works:

enter image description here

Just need to change my BitmapTextureAtlas from:

BitmapTextureAtlas carAtlas = new BitmapTextureAtlas(this.getTextureManager(),100, 63);

to:

BitmapTextureAtlas carAtlas = new BitmapTextureAtlas(this.getTextureManager(),100, 63, TextureOptions.BILINEAR);    

© Game Development or respective owner

Related posts about android

Related posts about sprites