Change Font in MonkeyX?

Monkey Forums/Monkey Programming/Change Font in MonkeyX?

Luis(Posted 2015) [#1]
Any way to change Font with few lines of code?


Nobuyuki(Posted 2015) [#2]
SetFont(font)


font is an Image with~96 images using Mojo1's default image frame splitting (specified when using LoadImage). An optional parameter firstChar can also be specified if the font is to omit numbers, caps, etc


Luis(Posted 2015) [#3]
imgfont = loadimage("font.png");

setfont(imgfont,32)

¿?