赞 | 0 |
VIP | 1 |
好人卡 | 2 |
积分 | 1 |
经验 | 6641 |
最后登录 | 2019-2-12 |
在线时间 | 108 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 55
- 在线时间
- 108 小时
- 注册时间
- 2014-3-29
- 帖子
- 125
|
下面的脚本插入main之前,按下键盘Q键就能实现切换。不能用R键的原因是我不想使用全键盘脚本。- class Game_Interpreter
- alias :command_101_with_message_window :command_101 unless $!
- def command_101
- $scene.instance_eval("@message_window.visible = true")
- command_101_with_message_window
- end
- end
- class Window_Message < Window_Selectable
- def message_window_visible
- if Input.trigger?(Input::L) and not self.visible
- self.visible = true
- elsif Input.trigger?(Input::L) and self.visible
- self.visible = false
- end
- end
-
- alias :update_with_message_window :update unless $!
- def update
- message_window_visible
- update_with_message_window
- end
- end
复制代码 |
评分
-
查看全部评分
|