Project1
标题:
可以更改上下左右键位吗?
[打印本页]
作者:
chenttyy
时间:
2008-5-3 04:32
提示:
作者被禁止或删除 内容自动屏蔽
作者:
八云紫
时间:
2008-5-3 04:33
在游戏中 按F1 设定
作者:
chenttyy
时间:
2008-5-3 04:41
提示:
作者被禁止或删除 内容自动屏蔽
作者:
八云紫
时间:
2008-5-3 04:47
{/lh}这个?还真的不知道。
等待高人吧。
作者:
Vernon126
时间:
2008-5-3 06:52
提示:
作者被禁止或删除 内容自动屏蔽
作者:
hitlerson
时间:
2008-5-3 07:13
Window_Selectable 里找
# 方向键上被按下的情况下
if Input.repeat?(Input::UP)
# 列数不是 1 并且方向键的下的按下状态不是重复的情况、
# 或光标位置在列之后的情况下
if (@column_max == 1 and Input.trigger?(Input::UP)) or
@index >= @column_max
# 光标向上移动
$game_system.se_play($data_system.cursor_se)
@index = (@index - @column_max + @item_max) % @item_max
end
end
等等,换成你想要的就好了
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1