geom-demo/geom/text.py
2020-11-13 18:46:31 +04:00

11 lines
205 B
Python

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)