Hello, I am running bmfont64.exe from commandline specified with a *.bmfc file to generate my bitmap fonts.
I don't want to use system fonts, but want to specify a custom fontfile directly that is not installed, so my bmfc file looks like this:
# AngelCode Bitmap Font Generator configuration file
fileVersion=1
# font settings
fontName=
fontFile=c:\temp\customfont.ttf
charSet=0
fontSize=128
aa=1
scaleH=100
useSmoothing=1
isBold=0
isItalic=0
useUnicode=1
disableBoxChars=1
outputInvalidCharGlyph=1
dontIncludeKerningPairs=0
useHinting=0
renderFromOutline=0
useClearType=1
However the generated font texture always falls back to Arial (I think) and never uses the specified glyphs from customfont.ttf
I tried also to specify relative and absolute paths with \ and / and also *.otf font format, but I am always getting the same result. I am using latest 1.14b version.
What am I doing wrong here? Thanks a lot!