在脚本Main,吧脚本替换为
#==============================================================================
# ■ Main
#------------------------------------------------------------------------------
# 在定义完各个类后、从这里开始实际处理。
#==============================================================================
unless Font.exist?("UmePlus Gothic")
print "找不到 UmePlus Gothic 字体。"
exit
end
begin
Font.default_size
Font.default_name = ["黑体", "Tahoma"]
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
脚本编辑器,最后一个脚本。 可以修改字体,以及字体大小