• Hi, Guest!
    Some images might be missing as we move away from using embedded images, sorry for the mess!
    From now on, you'll be required to use a third party to host images. You can learn how to add images here, and if your thread is missing images you can request them here.
    Do not use Discord to host any images you post, these links expire quickly!
Resource icon

Resource Follower Run Sprites 2023-01-16

Vendily

Elite Trainer
Member
Vendily submitted a new resource:

Follower Run Sprites - Followers get run sprites like the Player.

Name the run sprite the regular name + "_run".
So Follower trainer_POKEMONTRAINER_Leaf has a run sprite of trainer_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...
 
Back
Top