Answers for "how to blit text pygame"

8

how to write a font in pygame

font = pygame.font.SysFont(None, 24)
img = font.render('hello', True, BLUE)
screen.blit(img, (20, 20))
Posted by: Guest on October-12-2020
0

how to blit text in pygame

font= pygame.font.SysFont('Comic Sans MS', size)
textsurface = font.render(text, False, color)
win.blit(textsurface,(x,y))
Posted by: Guest on April-27-2021

Python Answers by Framework

Browse Popular Code Answers by Language