For those like me, who are simply making a retro-style game where they want EVERYTHING scaled to be pix elatedpixelated, the simple quick answer is start your code with:
from pyglet.gl import * glEnable(GL_TEXTURE_2D) glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST) Then all your usage of sprites, etc. from there on out stay nice and pixelated.