本帖最后由 eve592370698 于 2015-6-6 23:16 编辑
就在脚本[Main]那一栏
#============================================================================== # ■ Main #------------------------------------------------------------------------------ # 各定义结束后、从这里开始实际处理。 #============================================================================== begin # 准备过渡 # 设置系统默认字体 Font.default_name = (["黑体"]) Graphics.freeze # 生成场景对像 (↓生成游戏开始) $scene = Scene_Start.new # $scene 为有效的情况下调用 main 过程 while $scene != nil $scene.main end # 淡入淡出 Graphics.transition(20) rescue Errno::ENOENT # 补充 Errno::ENOENT 以外错误 # 无法打开文件的情况下、显示信息后结束 filename = $!.message.sub("No such file or directory - ", "") print("找不到文件 #{filename}。 ") end
#==============================================================================
# ■ Main
#------------------------------------------------------------------------------
# 各定义结束后、从这里开始实际处理。
#==============================================================================
begin
# 准备过渡
# 设置系统默认字体
Font.default_name = (["黑体"])
Graphics.freeze
# 生成场景对像 (↓生成游戏开始)
$scene = Scene_Start.new
# $scene 为有效的情况下调用 main 过程
while $scene != nil
$scene.main
end
# 淡入淡出
Graphics.transition(20)
rescue Errno::ENOENT
# 补充 Errno::ENOENT 以外错误
# 无法打开文件的情况下、显示信息后结束
filename = $!.message.sub("No such file or directory - ", "")
print("找不到文件 #{filename}。 ")
end
|