等待高手吧....作者: IamI 时间: 2008-7-21 18:26
所有 while @show_time>0 do
# 刷新游戏画面
Graphics.update
# 显示计时器减一
@show_time -= 1
end
改为
while @show_time>0 do
# 刷新游戏画面
Graphics.update
Input.update
if Input.trigger?(Input::C)
$scene = Scene_Title.new
end
# 显示计时器减一
@show_time -= 1
end