赞 | 0 |
VIP | 13 |
好人卡 | 13 |
积分 | 1 |
经验 | 7273 |
最后登录 | 2014-2-17 |
在线时间 | 37 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 37 小时
- 注册时间
- 2012-7-30
- 帖子
- 147
|
精简过的这个复制也可以用- #==============================================================================
- # ■ Scene_Title
- #------------------------------------------------------------------------------
- # 处理标题画面的类。
- #==============================================================================
- class Scene_Title < Scene_Base
- #--------------------------------------------------------------------------
- # ● 主处理
- #--------------------------------------------------------------------------
- def initialize(from_save=false)
- #print Time.new
- @from_save=from_save
- end
-
- def main
- if $BTEST # 战斗测试的情况下
- battle_test # 开始战斗测试处理
- else # 普通游戏的情况下
- super # 原来的主处理
- end
- end
- #--------------------------------------------------------------------------
- # ● 开始处理
- #--------------------------------------------------------------------------
- def start
- super
- load_database # 载入数据库
- create_game_objects # 生成游戏对象
- check_continue # 判断继续是否有效
- create_title_graphic if !@from_save # 生成标题画面图像
- create_just_title_graphic if @from_save # 生成标题画面图像
- create_command_window # 生成指令窗口
- play_title_music # 播放标题画面音乐
- end
- #--------------------------------------------------------------------------
- def create_title_graphic
- @sprite = Sprite.new
- @sprite.bitmap = Cache.system("shi1")
- Graphics.transition(160)
- Graphics.wait(200)
- Graphics.fadeout(90)
- @sprite.bitmap = Cache.system("shi2")
- Graphics.fadein(90)
- Graphics.wait(160)
- Graphics.fadeout(90)
- @sprite.bitmap = Cache.system("Title")
- Graphics.fadein(90)
- end
-
- def create_just_title_graphic
- @sprite = Sprite.new
- @sprite.bitmap = Cache.system("Title")
- end
- end
- def Scene_File
- def return_scene
- if @from_title
- $scene = Scene_Title.new(true)
- elsif @from_event
- $scene = Scene_Map.new
- else
- if @saving
- $scene = Scene_Menu.new(5)
- else
- $scene = Scene_Menu.new(6)
- end
- end
- end
- end
复制代码 后面的是为了防止从读档返回时再出现开头图片.
shi1,shi2在system文件夹下的开头图片。要是需要更多就在create_title_graphic后面增加:
Graphics.wait(200)
Graphics.fadeout(90)
@sprite.bitmap = Cache.system("shit3")
Graphics.fadein(90)
shit3可以自己换这样。 |
评分
-
查看全部评分
|