copyrat90 / gba-kor-fonts

Free font resources for GBA game developemnt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gba-free-fonts

Free font resources for GBA game development

This repo contains many free-to-use fonts which are ready-to-use in your GBA project.

Note: source code are under zlib license, fonts are under their own licenses.

Fonts & Licenses

This fork gba-kor-fonts features Galmuri Korean fonts for Butano.
gba-kor-fonts 포크는 Butano 엔진용 갈무리체를 포함하고 있습니다.

Font License Characters Preview
Galmuri7 Regular SIL OFL 1.1 (한국어) 13059
Galmuri9 Regular SIL OFL 1.1 (한국어) 20507
Galmuri11 Regular SIL OFL 1.1 (한국어) 20739
Galmuri11 Bold SIL OFL 1.1 (한국어) 11146
Galmuri11 Condensed SIL OFL 1.1 (한국어) 13077

Guide

For Butano

This is an example to show how to use a font in your project.

  1. Install Pillow
# For MSYS2/MinGW-w64 users
pacman -S mingw-w64-x86_64-python-pillow
# For WSL2/Ubuntu/Debian users
sudo apt-get install python3-pil
# For Mac users
brew install pillow
# For FreeBSD users
pkg install py38-pillow
# For CentOS users
yum install python3-pillow
# For Fedora Linux users
dnf install python3-pillow
# For Arch Linux users
pacman -S python37-pillow
  1. Set path in Makefile
# FONTS is a list of directories containing font files.
FONTS       :=  
# TEXTS is a list of directories or filenames containing text files.
TEXTS       :=  
  1. Bind it to a bn::sprite_text_generator in source code
#include "xxx_sprite_font.h"
bn::sprite_text_generator text_generator(xxx_sprite_font);

Others

History: it starts here.

About

Free font resources for GBA game developemnt

License:zlib License


Languages

Language:Python 100.0%