Answers for "add new font pygame"

2

load custom font pygame

fontObj = pygame.font.Font('redline.ttf', 16)
Posted by: Guest on November-11-2021
9

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

Python Answers by Framework

Browse Popular Code Answers by Language