Project1

标题: 转日站的战斗中执行並行事件 [打印本页]

作者: soulsaga    时间: 2019-6-12 17:36
标题: 转日站的战斗中执行並行事件
本帖最后由 soulsaga 于 2019-6-12 17:40 编辑

RUBY 代码复制
  1. #==============================================================================
  2. # ■ Scene_Battle
  3. #==============================================================================
  4. class Scene_Battle < Scene_Base
  5.   #--------------------------------------------------------------------------
  6.   # ● 開始処理
  7.   #--------------------------------------------------------------------------
  8.   alias fai_baco_start start
  9.   def start
  10.     pces = $data_common_events.select {|event| event && event.parallel? }
  11.     @common_events = pces.collect do |common_event|
  12.       Game_CommonEvent.new(common_event.id)
  13.     end
  14.     fai_baco_start
  15.   end
  16.   #--------------------------------------------------------------------------
  17.   # ● フレーム更新(基本)
  18.   #--------------------------------------------------------------------------
  19.   alias fai_baco_update_basic update_basic
  20.   def update_basic
  21.     @common_events.each{|event|event.refresh; event.update}
  22.     fai_baco_update_basic
  23.   end
  24. end
https://tm.lucky-duet.com/viewtopic.php?t=2400




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1