pygame-surface-switching/surface_switching_test/surfaces/objects/text.py

13 lines
321 B
Python
Raw Permalink Normal View History

2023-02-19 22:16:40 -05:00
import pygame.font
import os
SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
class RegularText:
def __init__(self, text):
font = pygame.font.Font(SCRIPT_DIR + '/../resources/Tuffy_Bold.ttf', 32)
self.surface = font.render(text, True, (0, 0, 0))
self.rect = self.surface.get_rect()