8 Direções
Autor: Valentine
Autor: Valentine
Introdução:
Permite que o personagem se movimente em 8 direções.
Script:
- Código:
#==============================================================================
# ** 8 Direções
#------------------------------------------------------------------------------
# Autor: Valentine
#==============================================================================
class Game_Player < Game_Character
#--------------------------------------------------------------------------
alias eight_directions_update update
#--------------------------------------------------------------------------
# * Atualização do frame
#--------------------------------------------------------------------------
def update
unless moving? or $game_system.map_interpreter.running? or
@move_route_forcing or $game_temp.message_window_showing
case Input.dir8
when 1
move_lower_left
when 2
move_down
when 3
move_lower_right
when 4
move_left
when 6
move_right
when 7
move_upper_left
when 8
move_up
when 9
move_upper_right
end
end
eight_directions_update
end
end
Créditos:
Valentine
Última edição por Valentine em Qui Mar 04, 2021 10:23 am, editado 6 vez(es)