Skip to content

justinpenner/Yanone-GlyphsApp-Scripts

 
 

Repository files navigation

Collection of my Glyphs.app scripts.

If you like, you can clone this repository directly into Glyphs.app’s script folder which is normally located at ~/Application Support/Glyphs/Scripts.

In Glyphs.app, you will then find the scripts in the Scripts menu under Yanone-GlyphsApp-Scripts.

Contents

Interpolation

Create Missing Brace Layers in Components

This script goes through all component glyphs and adds missing intermediate masters (called "Brace Layers" in Glyphs) to the component glyphs where their respective base glyphs have them. For instance, if an e has a brace layer, all glyphs based on it such as é etc. also need a brace layer at the same value.

This is necessary to create correct Variable Fonts in environments outside Glyphs (such as googlefonts/fontmake, and even in Glyphs itself as of this writing, August 2019).

Otherwise, component glyphs’ metrics get interpolated linearly between the main masters, ignoring the intermediate masters, while the outlines get interpolated correctly. This leads to sidebearing discrepancies of component glyphs with base glyphs referencing intermediate masters.

Expand Intermediate Masters

This script takes all the intermediate masters it can find (called "Brace Layers" in Glyphs) and adds them as fully expanded masters to the font, then removes all brace layers.

This is necessary as a workaround for environments that can’t properly deal with brace layers, such as googlefonts/fontmake as of this writing, August 2019. Once the brace layers are flattened into the font as fully expanded masters, everything interpolates correctly.

The masters will simply be added to the font’s master list at the end, not their correct positions in the list, which does not affect the interpolation.

Use this script only to generate static instances, not a Variable Font, as otherwise the font file size will increase. To create Variable Fonts, use the Create Missing Brace Layers in Components script.

Create Axis Location Custom Parameters

In order to properly create instances from a VF using fontmake, the font needs to carry appropriate Axis Location custom parameters on the masters. This script creates them.

Create Instance weightClass Custom Parameters

In order to properly create instances from a VF using fontmake, the font needs to carry appropriate weightClass parameters on the instances. This script creates them.

OpenType Features

Mark Inaccessible Glyphs

Large fonts bear the potential to contain inaccessible glyphs. Those are glyphs that are neither encoded (have a Unicode value), nor are accessible through one of the OpenType features.

This script marks glyphs as white that are either encoded OR reachable through an OpenType substitution feature OR are contained in other glyphs as components. It marks glyphs red that are not encoded AND not reachable through OpenType AND not used as components.

Depending on the setup of your font, you may want to either delete the inaccessible glyphs from your font or make them accessible.

Tested only in Glyphs 3. This requires fontTools. Install it on the command line with pip install fontTools.

About

Collection of Glyphs.app scripts

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%