geom-demo/geom/text.py

11 lines
205 B
Python
Raw Normal View History

2020-11-13 07:46:31 -07:00
from pygame import freetype
FONT = None
def init():
global FONT
FONT = freetype.SysFont('Arial', 16)
def draw(surface, position, color, text):
FONT.render_to(surface, position, text, color)