#============================================================================== # ■ Game_Player #============================================================================== class Game_Player < Game_Character #-------------------------------------------------------------------------- # ● 方向ボタン入力による移動処理 #-------------------------------------------------------------------------- alias d_se_play_move_by_input move_by_input def move_by_input d_se_play_move_by_input return unless movable? return if $game_map.interpreter.running? @step_anime = Input.dir4 != 0 end end