route-graphics 1.29.0 → 1.30.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -1
- package/dist/RouteGraphics.js +120 -120
- package/package.json +1 -1
- package/src/cli/renderConfig.js +15 -9
package/README.md
CHANGED
|
@@ -205,6 +205,9 @@ assets:
|
|
|
205
205
|
uiFont:
|
|
206
206
|
path: ./assets/fonts/NotoSans-Regular.ttf
|
|
207
207
|
type: font/ttf
|
|
208
|
+
fallbackFont:
|
|
209
|
+
path: ./assets/fonts/Fallback-Regular.ttf
|
|
210
|
+
type: font/ttf
|
|
208
211
|
elements:
|
|
209
212
|
- id: title
|
|
210
213
|
type: text
|
|
@@ -214,7 +217,7 @@ elements:
|
|
|
214
217
|
textStyle:
|
|
215
218
|
fill: "#ffffff"
|
|
216
219
|
fontSize: 42
|
|
217
|
-
fontFamily: uiFont
|
|
220
|
+
fontFamily: [uiFont, fallbackFont]
|
|
218
221
|
- id: avatar
|
|
219
222
|
type: sprite
|
|
220
223
|
x: 60
|