Vendily submitted a new resource:
Follower Run Sprites - Followers get run sprites like the Player.
Read more about this resource...
Follower Run Sprites - Followers get run sprites like the Player.
Name the run sprite the regular name + "_run".
So Followertrainer_POKEMONTRAINER_Leaf
has a run sprite oftrainer_POKEMONTRAINER_Leaf_run
Ruby:class Game_Follower alias _runfollowers_initialize initialize def initialize(event_data) _runfollowers_initialize(event_data) @default_character_name = event_data.character_name end def update_move was_jumping = jumping? if !@moved_last_frame || @stopped_last_frame faster =...
Read more about this resource...