11 lines
207 B
Python
Raw Normal View History

# robothon06
# set font info in all fonts
from robofab.world import AllFonts
for font in AllFonts():
font.info.familyName = "MyFamily"
font.info.ascender = 700
font.info.descender = -300
font.update()