Base Font?

Blitz3D Forums/Blitz3D Programming/Base Font?

alloidgames(Posted 2006) [#1]
What font is the default font in B3D?


jfk EO-11110(Posted 2006) [#2]
I think it's courier:
Graphics 700,300,16,2
SetBuffer BackBuffer()


Print "qwertzuiopasdfghjklyxcvbnm,.-QWERTZUIOPASDFGHJKLYCXCVBNM;"

font=LoadFont("courier")
SetFont font

Print "qwertzuiopasdfghjklyxcvbnm,.-QWERTZUIOPASDFGHJKLYCXCVBNM;"


WaitKey()
End