Add sprite font glyphs for Æ and Ø
BIN
resources/g2/font/ae-bold.png
Normal file
|
After Width: | Height: | Size: 242 B |
BIN
resources/g2/font/ae-small.png
Normal file
|
After Width: | Height: | Size: 185 B |
BIN
resources/g2/font/ae-tiny.png
Normal file
|
After Width: | Height: | Size: 173 B |
BIN
resources/g2/font/ae-uc-bold.png
Normal file
|
After Width: | Height: | Size: 205 B |
BIN
resources/g2/font/ae-uc-small.png
Normal file
|
After Width: | Height: | Size: 194 B |
BIN
resources/g2/font/ae-uc-tiny.png
Normal file
|
After Width: | Height: | Size: 171 B |
BIN
resources/g2/font/o-stroke-bold.png
Normal file
|
After Width: | Height: | Size: 235 B |
BIN
resources/g2/font/o-stroke-small.png
Normal file
|
After Width: | Height: | Size: 179 B |
BIN
resources/g2/font/o-stroke-tiny.png
Normal file
|
After Width: | Height: | Size: 174 B |
BIN
resources/g2/font/o-stroke-uc-bold.png
Normal file
|
After Width: | Height: | Size: 210 B |
BIN
resources/g2/font/o-stroke-uc-small.png
Normal file
|
After Width: | Height: | Size: 195 B |
BIN
resources/g2/font/o-stroke-uc-tiny.png
Normal file
|
After Width: | Height: | Size: 171 B |
@@ -439,5 +439,80 @@
|
||||
"path": "icons/eyedropper.png",
|
||||
"x_offset": 5,
|
||||
"y_offset": 5
|
||||
},
|
||||
{
|
||||
"path": "font/ae-uc-small.png",
|
||||
"y_offset": 0,
|
||||
"palette": "keep",
|
||||
"forceBmp": true
|
||||
},
|
||||
{
|
||||
"path": "font/ae-small.png",
|
||||
"y_offset": 2,
|
||||
"palette": "keep",
|
||||
"forceBmp": true
|
||||
},
|
||||
{
|
||||
"path": "font/o-stroke-uc-small.png",
|
||||
"x_offset": -1,
|
||||
"y_offset": 0,
|
||||
"palette": "keep",
|
||||
"forceBmp": true
|
||||
},
|
||||
{
|
||||
"path": "font/o-stroke-small.png",
|
||||
"y_offset": 2,
|
||||
"palette": "keep",
|
||||
"forceBmp": true
|
||||
},
|
||||
{
|
||||
"path": "font/ae-uc-bold.png",
|
||||
"y_offset": 0,
|
||||
"palette": "keep",
|
||||
"forceBmp": true
|
||||
},
|
||||
{
|
||||
"path": "font/ae-bold.png",
|
||||
"y_offset": 2,
|
||||
"palette": "keep",
|
||||
"forceBmp": true
|
||||
},
|
||||
{
|
||||
"path": "font/o-stroke-uc-bold.png",
|
||||
"x_offset": -1,
|
||||
"y_offset": -1,
|
||||
"palette": "keep",
|
||||
"forceBmp": true
|
||||
},
|
||||
{
|
||||
"path": "font/o-stroke-bold.png",
|
||||
"x_offset": 0,
|
||||
"y_offset": 2,
|
||||
"palette": "keep",
|
||||
"forceBmp": true
|
||||
},
|
||||
{
|
||||
"path": "font/ae-uc-tiny.png",
|
||||
"y_offset": 0,
|
||||
"palette": "keep",
|
||||
"forceBmp": true
|
||||
},
|
||||
{
|
||||
"path": "font/ae-tiny.png",
|
||||
"y_offset": 1,
|
||||
"palette": "keep",
|
||||
"forceBmp": true
|
||||
},
|
||||
{
|
||||
"path": "font/o-stroke-uc-tiny.png",
|
||||
"y_offset": 0,
|
||||
"palette": "keep",
|
||||
"forceBmp": true
|
||||
},
|
||||
{
|
||||
"path": "font/o-stroke-tiny.png",
|
||||
"y_offset": 1,
|
||||
"palette": "keep",
|
||||
"forceBmp": true
|
||||
}
|
||||
]
|
||||
|
||||
@@ -840,6 +840,16 @@ enum {
|
||||
|
||||
SPR_G2_EYEDROPPER = SPR_G2_BEGIN + 123,
|
||||
|
||||
SPR_G2_CHAR_BEGIN = SPR_G2_BEGIN + 124,
|
||||
|
||||
SPR_G2_AE_UPPER = SPR_G2_CHAR_BEGIN,
|
||||
SPR_G2_AE_LOWER = SPR_G2_CHAR_BEGIN + 1,
|
||||
SPR_G2_O_STROKE_UPPER = SPR_G2_CHAR_BEGIN + 2,
|
||||
SPR_G2_O_STROKE_LOWER = SPR_G2_CHAR_BEGIN + 3,
|
||||
|
||||
SPR_G2_CHAR_END = SPR_G2_O_STROKE_LOWER,
|
||||
SPR_G2_GLYPH_COUNT = (SPR_G2_CHAR_END - SPR_G2_CHAR_BEGIN) + 1,
|
||||
|
||||
// 0x60000, chosen because it's a round hex number
|
||||
// of the last possible range of image ID values that is large enough to fit all csg1 sprites.
|
||||
SPR_CSG_BEGIN = 393216,
|
||||
|
||||