The fonts/ directory was created on a whim before there was much direction in this project (this plugin started as a simple proof-of-concept). Because of that, the folder structure of the fonts will become increasingly difficult to manage if it's maintained as-in. So we need to take steps to improve the structure of that.
The Problem
Currently the folder structure looks something like this:
I'm totally open to suggestions on this, it's not set in stone. I realize that there are many different ways to handle the structure. Instead of having black/, maybe it's better to group by size. So it would be DejaVuSansCondensed/16/bold_black.fnt. Maybe go even deeper and do DejaVuSansCondensed/16/black/bold.fnt
Notes
It might be better to wait until #1 is addressed since the color portion of the path is likely to be removed once we have dynamic colors.
The
fonts/
directory was created on a whim before there was much direction in this project (this plugin started as a simple proof-of-concept). Because of that, the folder structure of the fonts will become increasingly difficult to manage if it's maintained as-in. So we need to take steps to improve the structure of that.The Problem
Currently the folder structure looks something like this:
This will become a mess when adding new fonts.
The Solution
Ideally, I think a structure like this would improve manageability of adding many fonts in the future
I'm totally open to suggestions on this, it's not set in stone. I realize that there are many different ways to handle the structure. Instead of having
black/
, maybe it's better to group by size. So it would beDejaVuSansCondensed/16/bold_black.fnt
. Maybe go even deeper and doDejaVuSansCondensed/16/black/bold.fnt
Notes
It might be better to wait until #1 is addressed since the color portion of the path is likely to be removed once we have dynamic colors.