I'm trying to load a font, specifically one called Vectorb (available from this site: http://www.empire-of-the-claw.com/Fonts/Fontpages/claws_game_zone.htm - the font is called Vector Battle).
Trouble is that it doesn't appear to load - Blitz3D doesn't generate an error when I try and use it, instead it just seems to use its default font.
I'm loading it with:
;set vector font
Global fntVectorb
fntVectorb=LoadFont("Vectorb",18)
SetFont fntVectorb
The font works fine in apps like Word.
I notice that Symbol fonts like WingDings don't work with Blitz, so is this Vectorb font perhaps classed as a symbol font?
Also, where does Blitz require the font file to be? It's now in its normal directory of windows\fonts and I've also tried copying it to the folder with the .bb program files but to no avail.
Thanks
Trouble is that it doesn't appear to load - Blitz3D doesn't generate an error when I try and use it, instead it just seems to use its default font.
I'm loading it with:
;set vector font
Global fntVectorb
fntVectorb=LoadFont("Vectorb",18)
SetFont fntVectorb
The font works fine in apps like Word.
I notice that Symbol fonts like WingDings don't work with Blitz, so is this Vectorb font perhaps classed as a symbol font?
Also, where does Blitz require the font file to be? It's now in its normal directory of windows\fonts and I've also tried copying it to the folder with the .bb program files but to no avail.
Thanks