-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
|
||
| ||
void main() | ||
{ | ||
SetFontId(3); //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) | ||
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(8); | ||
SetFontSize(34); | ||
SetLineSpacing(1); | ||
SetFontSize(42); | ||
|
||
//SetNameFormat("<size=+4>{0}\n</size>"); | ||
//SetNameFormat("<line-h=10><size=+6>{0}\n</size></line-h>"); | ||
SetNameFormat(""); | ||
|
||
SetScreenAspect("0.5635"); | ||
SetScreenAspect("0.75"); | ||
|
||
SetWindowPos(-170, -10); | ||
SetWindowSize(1240, 720); | ||
SetWindowPos(-4, 0); | ||
SetWindowSize(1024, 768); | ||
SetWindowMargins(60, 30, 50, 30); | ||
|
||
SetGUIPosition(170, 0); | ||
SetGUIPosition(0, 0); | ||
|
||
CallScript( "flow" ); | ||
} | ||
} |