📜  如何在 pygame 中编写字体 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:16.596000             🧑  作者: Mango

代码示例1
font = pygame.font.SysFont(None, 24)
img = font.render('hello', True, BLUE)
screen.blit(img, (20, 20))