Project1

标题: 新手求问字体问题,日文 [打印本页]

作者: hariel    时间: 2011-9-8 11:16
标题: 新手求问字体问题,日文
本帖最后由 hariel 于 2011-9-8 11:16 编辑

日文游戏字体不能显示

看各个帖子说,应该可以改MAIN的字体,日文版本的怎么改?

#==============================================================================
# ■ Main
#------------------------------------------------------------------------------
#  各クラスの定義が終わった後、ここから実際の処理が始まります。
#==============================================================================

unless Font.exist?("UmePlus Gothic")
  print "UmePlus Gothic フォントが見つかりません。"
  exit
end

begin
  Graphics.freeze
  $scene = Scene_Title.new
  $scene.main while $scene != nil
  Graphics.transition(30)
rescue Errno::ENOENT
  filename = $!.message.sub("No such file or directory - ", "")
  print("ファイル #{filename} が見つかりません。")
end

作者: 黄亦天    时间: 2011-9-8 13:32
本帖最后由 黄亦天 于 2011-9-8 13:33 编辑
  1. unless Font.exist?("字体")
  2. # unless Font.exist?("UmePlus Gothic") 貌似这行就是了?
复制代码

作者: RPGmaster    时间: 2011-9-8 19:06
  1. #==============================================================================
  2. # ** Main
  3. #------------------------------------------------------------------------------
  4. #  After defining each class, actual processing begins here.
  5. #==============================================================================

  6. begin
  7.   Graphics.freeze
  8.   $scene = Scene_Title.new
  9.   $scene.main while $scene != nil
  10.   Graphics.transition(30)
  11. rescue Errno::ENOENT
  12.   filename = $!.message.sub("No such file or directory - ", "")
  13.   print("Unable to find file #{filename}.")
  14. end
复制代码
英文Main路过……字体神马的都是浮云
作者: 各种压力的猫君    时间: 2011-9-9 02:10
本帖最后由 各种压力的猫君 于 2011-9-10 15:08 编辑

begin 下面加一句:
  1. Font.default_name = ["方正准圆_GBK"]
复制代码
方正准圆_GBK 换成你有的字体名
  1. unless Font.exist?("UmePlus Gothic")
  2.   print "UmePlus Gothic フォントが見つかりません。"
  3.   exit
  4. end
复制代码
这段是检测UmePlus Gothic字体是否存在,直接喀嚓掉这段就行了 - -
作者: wxs29    时间: 2011-9-9 23:02
  1. #==============================================================================
  2. # ■ Main
  3. #------------------------------------------------------------------------------
  4. #  各定义结束后,从这里开始实际处理。
  5. #==============================================================================

  6. # 一些常用的字体
  7. Font.default_name = ["SimHei", "黑体", "DFKai-SB", "標楷體", "Verdana", "Arial Unicode MS"]
  8. begin
  9.   Graphics.freeze
  10.   $scene = Scene_Title.new
  11.   $scene.main while $scene != nil
  12.   Graphics.transition(30)
  13. rescue Errno::ENOENT
  14.   filename = $!.message.sub("无此文件或文件夹 - ", "")
  15.   print("无法找到文件 #{filename}.")
  16. end
复制代码





欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1