赞 | 1 |
VIP | 255 |
好人卡 | 52 |
积分 | 1 |
经验 | 77416 |
最后登录 | 2016-1-18 |
在线时间 | 1269 小时 |
Lv1.梦旅人 薄凉看客
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 1269 小时
- 注册时间
- 2010-6-20
- 帖子
- 1316
|
只说如何做到,不评论LZ的这种设置。
在游戏中$scene = Scene_select.new 即可
class Scene_select
def main
map = Spriteset_Map.new
@command = Window_Command.new(160, %w|加入队伍 取消选择|)
Graphics.transition
while $scene == self
Graphics.update ; Input.update ; update
end
Graphics.freeze
@command.dispose
map.dispose
end
def update
@command.update
if Input.trigger?(Input::C) and @command.index == 0
# 加入队伍等
end
end
end |
|