https://github.com/danielshervheim/unity-font-presets
A system to keep TextMeshPro styles consistent throughout a project.
https://github.com/danielshervheim/unity-font-presets
editor-utilities font-presets fonts tools unity
Last synced: 11 months ago
JSON representation
A system to keep TextMeshPro styles consistent throughout a project.
- Host: GitHub
- URL: https://github.com/danielshervheim/unity-font-presets
- Owner: danielshervheim
- License: bsd-3-clause
- Created: 2020-05-26T12:58:29.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2021-03-10T19:52:14.000Z (over 5 years ago)
- Last Synced: 2025-07-02T00:32:08.927Z (12 months ago)
- Topics: editor-utilities, font-presets, fonts, tools, unity
- Language: ShaderLab
- Homepage:
- Size: 1.22 MB
- Stars: 14
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# unity-font-presets
Please see the [readme](Packages/com.dss.font-presets/README.md) in the package directory for information on all of the included scripts.
## How To Install
The font-presets package uses the [scoped registry](https://docs.unity3d.com/Manual/upm-scoped.html) feature to import
dependent packages. Please add the following sections to the package manifest
file (`Packages/manifest.json`).
To the `scopedRegistries` section:
```
{
"name": "DSS",
"url": "https://registry.npmjs.com",
"scopes": [ "com.dss" ]
}
```
To the `dependencies` section:
```
"com.dss.font-presets": "1.4.1"
```
After changes, the manifest file should look like below:
```
{
"scopedRegistries": [
{
"name": "DSS",
"url": "https://registry.npmjs.com",
"scopes": [ "com.dss" ]
}
],
"dependencies": {
"com.dss.font-presets": "1.4.1",
...
```