Read the docs. Simple example:
antialias = True
color = (255,0,0)
Font = pygame.font.SysFont("Times New Roman",12)
RenderedFontSurface = Font.render("blah",antialias,color)
Ian
Read the docs. Simple example:
antialias = True
color = (255,0,0)
Font = pygame.font.SysFont("Times New Roman",12)
RenderedFontSurface = Font.render("blah",antialias,color)
Ian