#==============================================================================
# ■ Main
#------------------------------------------------------------------------------
# 各定義結束後、從這裏開始實際處理。
#==============================================================================
begin
# 准備過渡
# 設置系統默認字體
Font.default_name = (["黑體"])
Graphics.freeze
# 生成場景對像 (標題畫面)
$scene = Scene_Title.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
| 欢迎光临 Project1 (https://rpg.blue/) | Powered by Discuz! X3.1 |