赞 | 0 |
VIP | 1 |
好人卡 | 0 |
积分 | 3 |
经验 | 6984 |
最后登录 | 2024-8-27 |
在线时间 | 208 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 299
- 在线时间
- 208 小时
- 注册时间
- 2007-6-23
- 帖子
- 78
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
赋值变量
BattleManager里面- #--------------------------------------------------------------------------
- # ● 生成行动顺序
- #--------------------------------------------------------------------------
- def self.make_action_orders
- @action_battlers = []
- @action_battlers += $game_party.members unless @surprise
- @action_battlers += $game_troop.members unless @preemptive
- @action_battlers.each {|battler| battler.make_speed }
- @action_battlers.sort! {|a,b| b.speed - a.speed }
- @action_battlers.reverse! if $lb == 100
- end
复制代码 为什么无效 |
|