Deli-Slicer / CatBurglar

0 stars 0 forks source link

Sprites show blur when zooming #4

Closed pushfoo closed 3 years ago

pushfoo commented 3 years ago

Steps to reproduce:

  1. launch game on main on any branch that uses test animation assets
  2. press + to zoom
  3. sprites show up as blurred rather than using nearest neighbor image
markjoshua12 commented 3 years ago

Filtering can be disabled by setting the filter to gl.GL_NEAREST when drawing the SpriteList to enable nearest neighbor ex:

self.sprite_list.draw(filter=gl.GL_NEAREST)

e