Project1

标题: 默认菜单选择是1闪1闪的,哪里设置可以让他不会闪? [打印本页]

作者: summerxud    时间: 2010-7-21 13:17
标题: 默认菜单选择是1闪1闪的,哪里设置可以让他不会闪?
本帖最后由 DeathKing 于 2010-7-22 18:03 编辑


默认菜单选择是1闪1闪的,哪里设置可以让他不会闪?

截图在上面,那 ”新的开始“处 确实在一闪一闪的啊...
作者: a849797000    时间: 2010-7-21 13:41
RMVX本来就不闪的啊,可能是你电脑问题吧!
作者: wsmyzc    时间: 2010-7-21 13:42
LS神贴。。。
作者: summerxud    时间: 2010-7-21 13:46
应该不是电脑原因, 那“新的开始“处的菜单确实在一闪一闪..
作者: 水镜风生    时间: 2010-7-21 21:05
这是个狠问题,于是得用狠方法处理……(Main前新开脚本页放进去)
  1. class Window_Selectable < Window_Base
  2.   #--------------------------------------------------------------------------
  3.   # ● 刷新画面
  4.   #--------------------------------------------------------------------------
  5.   def update
  6.     if @opening
  7.       self.openness += 48
  8.       @opening = false if self.openness == 255
  9.     elsif @closing
  10.       self.openness -= 48
  11.       @closing = false if self.openness == 0
  12.     end
  13.     if cursor_movable?
  14.       last_index = @index
  15.       if Input.repeat?(Input::DOWN)
  16.         cursor_down(Input.trigger?(Input::DOWN))
  17.       end
  18.       if Input.repeat?(Input::UP)
  19.         cursor_up(Input.trigger?(Input::UP))
  20.       end
  21.       if Input.repeat?(Input::RIGHT)
  22.         cursor_right(Input.trigger?(Input::RIGHT))
  23.       end
  24.       if Input.repeat?(Input::LEFT)
  25.         cursor_left(Input.trigger?(Input::LEFT))
  26.       end
  27.       if Input.repeat?(Input::R)
  28.         cursor_pagedown
  29.       end
  30.       if Input.repeat?(Input::L)
  31.         cursor_pageup
  32.       end
  33.       if @index != last_index
  34.         Sound.play_cursor
  35.       end
  36.     end
  37.     update_cursor
  38.     call_update_help
  39.   end
  40. end
复制代码

作者: lin457438    时间: 2014-1-20 07:19
怎么让他兼容ace





欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1