用楼主的脚本测试了下并没有出错= =? 应该是其他的问题。 你还改了什么或者用了什么脚本? —————————————— 话说P叔0w0 @protosssonny 乃是不是说在提问区不能这样连贴? |
[#============================================================================== # ■ Scene_Logo class Scene_Logo #----------------------------------------------- # ● 主处理 #----------------------------------------------- def main # 生成LOGO图形 @sprite = Sprite.new @sprite.bitmap = Bitmap.new("Graphics/Pictures/LOGO.jpg") @sprite.x = 0 @sprite.y = 0 # 显示计时器 @show_time=60 # 执行过渡 Graphics.transition(40) # 主循环 while @show_time>0 do # 刷新游戏画面 Graphics.update # 显示计时器减一 @show_time -= 1 end # 准备过渡 Graphics.freeze # 释放标题图形 @sprite.bitmap.dispose @sprite.dispose # 执行过渡,过渡到全黑 Graphics.transition(40) # 准备过渡,用于准备过渡到标题画面 Graphics.freeze # 进入标题画面 $scene = Scene_Title.new end # ■main # 一些常用的字体 Font.default_name = ["SimHei", "黑体", "DFKai-SB", "標楷體", "Verdana", "Arial Unicode MS"] begin Graphics.freeze $scene = Scene_Logo.new $scene.main while $scene != nil Graphics.transition(30) rescue Errno::ENOENT filename = $!.message.sub("无此文件或文件夹 - ", "") print("无法找到文件 #{filename}.") end end] 我的main |
站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作
GMT+8, 2024-12-23 02:21
Powered by Discuz! X3.1
© 2001-2013 Comsenz Inc.