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 编辑
unless Font.exist?("字体")
# unless Font.exist?("UmePlus Gothic") 貌似这行就是了?
复制代码
作者:
RPGmaster
时间:
2011-9-8 19:06
#==============================================================================
# ** Main
#------------------------------------------------------------------------------
# After defining each class, actual processing begins here.
#==============================================================================
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("Unable to find file #{filename}.")
end
复制代码
英文Main路过……字体神马的都是浮云
作者:
各种压力的猫君
时间:
2011-9-9 02:10
本帖最后由 各种压力的猫君 于 2011-9-10 15:08 编辑
begin 下面加一句:
Font.default_name = ["方正准圆_GBK"]
复制代码
方正准圆_GBK 换成你有的字体名
unless Font.exist?("UmePlus Gothic")
print "UmePlus Gothic フォントが見つかりません。"
exit
end
复制代码
这段是检测UmePlus Gothic字体是否存在,直接喀嚓掉这段就行了 - -
作者:
wxs29
时间:
2011-9-9 23:02
#==============================================================================
# ■ Main
#------------------------------------------------------------------------------
# 各定义结束后,从这里开始实际处理。
#==============================================================================
# 一些常用的字体
Font.default_name = ["SimHei", "黑体", "DFKai-SB", "標楷體", "Verdana", "Arial Unicode MS"]
begin
Graphics.freeze
$scene = Scene_Title.new
$scene.main while $scene != nil
Graphics.transition(30)
rescue Errno::ENOENT
filename = $!.message.sub("无此文件或文件夹 - ", "")
print("无法找到文件 #{filename}.")
end
复制代码
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1