Added in font mod

This commit is contained in:
Kiruku
2015-05-21 16:42:48 -04:00
parent 63842828e8
commit fd307ad151
5 changed files with 43 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
void main()
{
SetFontId(2); //0 is MS Gothic (default japanese), 1 is MS PGothic (default english), 2 is dejavu sans, 3 is source han sans chinese simplified (for chinese)
SetCharSpacing(0); //use negative values to make characters appear closer together
SetLineSpacing(1);
SetFontSize(42);
SetWindowPos(-4, 0);
SetWindowSize(1024, 768);
SetWindowMargins(60, 30, 50, 30);
CallScript( "flow" );
}