• Do not use Discord to host any images you post, these links expire quickly! You can learn how to add images to your posts here.
  • Reminder: AI-generated content is not allowed on the forums per the Rules and Regulations. Please contact us if you have any questions!
Resource icon

Resource Follower Run Sprites 2023-01-16

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:
Expand Collapse Copy
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