10 lines
No EOL
433 B
Ruby
10 lines
No EOL
433 B
Ruby
class Game_Interpreter
|
||
#--------------------------------------------------------------------------
|
||
# ● 移動ルート強制中の間ウェイト
|
||
#スクリプトで wait_for_forcing
|
||
#--------------------------------------------------------------------------
|
||
def wait_for_forcing
|
||
Fiber.yield while $game_player.move_route_forcing
|
||
Fiber.yield while $game_map.events.any? {|*,ev| ev.move_route_forcing }
|
||
end
|
||
end |