21 lines
544 B
Plaintext
21 lines
544 B
Plaintext
|
|
void main()
|
|
{
|
|
SetFontId(1); //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);
|
|
|
|
//SetNameFormat("<line-h=10><size=+6>{0}\n</size></line-h>");
|
|
SetNameFormat("");
|
|
|
|
SetScreenAspect("0.5635");
|
|
|
|
SetWindowPos(0, 0);
|
|
SetWindowSize(1280, 720);
|
|
SetWindowMargins(60, 30, 50, 30);
|
|
|
|
SetGUIPosition( 15, 0);
|
|
|
|
CallScript( "flow" );
|
|
} |