blob: a0dbb3983d91a8034d77fa18a34bd84dea8eea2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
""" screens.hiscores - Defines how to display hiscore text on the screen """
from sliceitoff.text import TextPage
def hiscores_screen(score_text):
""" hiscores_screen - only ajustments to hiscore text """
return TextPage(
score_text,
font = 'lcd',
size = (12_000, 24_000),
grid = (12_000, 20_000),
pos = (12_000, 0_000) )
|