Answers for "how to get text on pygame"

7

pygame render text

"""system font"""
font = pygame.font.SysFont("Segoe UI", 35)

"""font from .ttf file"""
font = pygame.font.Font("path/to/font.ttf", 35)

textsurface = font.render("text", False, color)  # "text", antialias, color
surface.blit(textsurface, (x, y))
Posted by: Guest on September-11-2020

Python Answers by Framework

Browse Popular Code Answers by Language