“Cómo topar el texto en Pygame” Código de respuesta

Cómo escribir una fuente en Pygame

font = pygame.font.SysFont(None, 24)
img = font.render('hello', True, BLUE)
screen.blit(img, (20, 20))
Bored Bat

Cómo topar el texto en Pygame

font= pygame.font.SysFont('Comic Sans MS', size)
textsurface = font.render(text, False, color)
win.blit(textsurface,(x,y))
Witty Warbler

Respuestas similares a “Cómo topar el texto en Pygame”

Preguntas similares a “Cómo topar el texto en Pygame”

Más respuestas relacionadas con “Cómo topar el texto en Pygame” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código