Updated font

This commit is contained in:
theo@manjaro 2021-09-15 20:51:39 +02:00
parent caf7908cdc
commit ca8fe7de62
3 changed files with 7 additions and 3 deletions

View File

@ -17,3 +17,7 @@ All the textures are edited by myself to fit the [Famicube palette](https://losp
## Sky gradients
[rh0 - OpenGameArt](https://opengameart.org/content/18-gradient-skies-640x480)
## Font
[Front End Dev - Grape Soda](https://fontenddev.com/fonts/grape-soda/)

Binary file not shown.

View File

@ -15,9 +15,9 @@ class Game():
pygame.mixer.init()
font = "gamedata/font.ttf"
self.fontfile = pygame.font.Font(font,25)
self.fontfilesmall = pygame.font.Font(font,18)
self.fontfilebig = pygame.font.Font(font,60)
self.fontfile = pygame.font.Font(font,32)
self.fontfilesmall = pygame.font.Font(font,16)
self.fontfilebig = pygame.font.Font(font,64)
self.logs = []