Combine fonts#

First, load your two fonts. You can learn how to do this in Importing.

mcfonts supports using the + and += operators on instances of MinecraftFont to merge two fonts together:

# To merge into a separate font
combined = font1 + font2
# To merge into one font in-place. This changes `font1`.
font1 += font2