Wintermute Engine Forum

Wintermute Engine => Technical forum => Topic started by: fireside on June 07, 2013, 02:50:35 PM

Title: font size
Post by: fireside on June 07, 2013, 02:50:35 PM
Is there some way to change font size without setting a new font?  I found setFont on the 3d actor, but it didn't take a font size argument.  All I want is a little bigger font size right now.  I looked for a font object in the script reference but didn't see one.  I saw the fonts in the folder, but I didn't see where I could adjust size.
Title: Re: font size
Post by: metamorphium on June 08, 2013, 01:00:00 AM
for true type font you simply type size in font file:

TTFONT
{
  SIZE = 21 
  FACE = "Verdana"

  BOLD = FALSE
  ITALIC = FALSE
  UNDERLINE = FALSE
  STRIKE = FALSE

  CHARSET = 1

  COLOR { 255, 255, 255 }
  ALPHA = 255
 
}
Title: Re: font size
Post by: fireside on June 08, 2013, 10:32:22 AM
OK, thanks.