赞 | 90 |
VIP | 350 |
好人卡 | 311 |
积分 | 101 |
经验 | 150139 |
最后登录 | 2024-7-17 |
在线时间 | 5020 小时 |
Lv4.逐梦者 (版主) 无限の剣制
- 梦石
- 0
- 星屑
- 10074
- 在线时间
- 5020 小时
- 注册时间
- 2013-2-28
- 帖子
- 5030
|
- #在开始选择前开启计时,当计时到0时自动调用“取消”的方法。要保证取消有效
- class Window_ChoiceList < Window_Command
- #--------------------------------------------------------------------------
- # ● 调用“取消”的处理方法
- #--------------------------------------------------------------------------
- def call_cancel_handler
- $game_message.choice_proc.call($game_message.choice_cancel_type - 1)
- deactivate
- close
- end
- #--------------------------------------------------------------------------
- # ● 更新画面
- #--------------------------------------------------------------------------
- def update
- super
- call_cancel_handler if cancel_enabled? &&
- $game_timer.sec == 0 && $game_timer.working?
- end
- end
复制代码 |
评分
-
查看全部评分
|