level 5
1、中文显示变形(某些字会变的比其他字小)
找到 js 目录下的 rpg_windows.js 文件。
查找
Window_Base.prototype.standardFontFace = function() {
if ($gameSystem.isChinese()) {
return 'SimHei, Heiti TC, sans-serif';
} else if ($gameSystem.isKorean()) {
return 'Dotum, AppleGothic, sans-serif';
} else {
return 'GameFont';
}
};
把 GameFont 改成你要的字体。 一般改成 SimHei, Heiti TC, sans-serif 就可以了。
注:默认文件在 MV主目录\NewData\js 修改默认文件后以后新建的每个游戏就都会显示正常了。 已经创建的游戏在 游戏目录\js 文件夹下。
2015年10月24日 03点10分


