在刚才的文件MenuSceneBackground.js的6行插入以下代码 
Window_Base.prototype.standardFontFace = function() {     if ($gameSystem.isChinese()) {         return 'GameFont';        // return 'SimHei, Heiti TC, sans-serif';//这个是原来的设置     } else if ($gameSystem.isKorean()) {         return 'Dotum, AppleGothic, sans-serif';     } else {         return 'GameFont';     } }; 
 
 Window_Base.prototype.standardFontFace = function() {  
    if ($gameSystem.isChinese()) {  
        return 'GameFont';  
       // return 'SimHei, Heiti TC, sans-serif';//这个是原来的设置  
    } else if ($gameSystem.isKorean()) {  
        return 'Dotum, AppleGothic, sans-serif';  
    } else {  
        return 'GameFont';  
    }  
};  
 
  |