赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 2677 |
最后登录 | 2013-9-25 |
在线时间 | 148 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 148 小时
- 注册时间
- 2012-7-2
- 帖子
- 157
|
看Scene_Battle 类里面的这个函数
def make_action_orders
@action_battlers = []
unless $game_troop.surprise
@action_battlers += $game_party.members
end
unless $game_troop.preemptive
@action_battlers += $game_troop.members
end
for battler in @action_battlers
battler.action.make_speed
end
@action_battlers.sort! do |a,b|
b.action.speed - a.action.speed
end
end
最后这个a,b是什么?既不是成员变量,也不是全局变量,也没看到yield关键字,求教,谢谢。 |
|