📜  在 pygame 中显示文本 - Python 代码示例

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

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