赞 | 0 |
VIP | 187 |
好人卡 | 12 |
积分 | 1 |
经验 | 6042 |
最后登录 | 2012-10-8 |
在线时间 | 333 小时 |
Lv1.梦旅人 穿越一季:朔
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 333 小时
- 注册时间
- 2007-4-11
- 帖子
- 5369
|
- # 瞬间表示的情况下
- if $mes_speed == 0
- # 循环信息描绘处理
- while $game_temp.message_text != ""
- draw_massage
- end
- draw_opt_text
- @contents_showing_end = true
- @contents_drawing = false
- else
- # 一个一个描绘文字
- refresh_drawtext
- end
- end
-
- #--------------------------------------------------------------------------
- # ○ 一个一个描绘文字
- #--------------------------------------------------------------------------
- def refresh_drawtext
- if $game_temp.message_text != nil
- if Input.trigger?(Input::C)
- while $game_temp.message_text != ""
- draw_massage
- end
- end
- if @wait > 0
- @wait -= 1
- elsif @wait == 0
- # 描绘处理
- draw_massage
- @wait = $mes_speed
- end
- end
- # 描绘结束
- if $game_temp.message_text == ""
- draw_opt_text
- @contents_showing_end = true
- @contents_drawing = false
- end
- end
复制代码
这里,自己改 系统信息:本贴获得楼主认可,66RPG感谢您的热情解答~ |
|