Project1
标题:
默认菜单选择是1闪1闪的,哪里设置可以让他不会闪?
[打印本页]
作者:
summerxud
时间:
2010-7-21 13:17
标题:
默认菜单选择是1闪1闪的,哪里设置可以让他不会闪?
本帖最后由 DeathKing 于 2010-7-22 18:03 编辑
33.gif
(13.93 KB, 下载次数: 26)
下载附件
保存到相册
2010-7-21 13:15 上传
默认菜单选择是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前新开脚本页放进去)
class Window_Selectable < Window_Base
#--------------------------------------------------------------------------
# ● 刷新画面
#--------------------------------------------------------------------------
def update
if @opening
self.openness += 48
@opening = false if self.openness == 255
elsif @closing
self.openness -= 48
@closing = false if self.openness == 0
end
if cursor_movable?
last_index = @index
if Input.repeat?(Input::DOWN)
cursor_down(Input.trigger?(Input::DOWN))
end
if Input.repeat?(Input::UP)
cursor_up(Input.trigger?(Input::UP))
end
if Input.repeat?(Input::RIGHT)
cursor_right(Input.trigger?(Input::RIGHT))
end
if Input.repeat?(Input::LEFT)
cursor_left(Input.trigger?(Input::LEFT))
end
if Input.repeat?(Input::R)
cursor_pagedown
end
if Input.repeat?(Input::L)
cursor_pageup
end
if @index != last_index
Sound.play_cursor
end
end
update_cursor
call_update_help
end
end
复制代码
作者:
lin457438
时间:
2014-1-20 07:19
怎么让他兼容ace
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1