• The Eevee Expo Game Jam #10 has concluded, congratulations to all participants! Now it's time for the judges to play through the games, and you can play along to vote who deserves the community choice spotlight.
    You can check out the submitted games here!
    Play through the games and provide some feedback to the devs while you're at it!
  • 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!
More Pokédex Page : Size Comparison

Resource More Pokédex Page : Size Comparison 2.0.0

komeiji514

Elite Trainer
Member
Joined
Oct 28, 2023
Posts
258
Just replace this function in this plugin:
Ruby:
Expand Collapse Copy
def self.height_sprite_bitmap(*params)
    bitmap = nil
    filename = self.height_sprite_filename(*params)
    return (bitmap) ? bitmap : (filename) ? AnimatedBitmap.new(filename) : nil
end

With this:
Ruby:
Expand Collapse Copy
def self.height_sprite_bitmap(*params)
    filename = self.height_sprite_filename(*params)
    if PluginManager.installed?("[DBK] Animated Pokémon System")
        sp_data = GameData::SpeciesMetrics.get_species_form(params[0], params[1], params[2] == 1)
        return (filename) ? DeluxeBitmapWrapper.new(filename, sp_data) : nil
    else
        return (filename) ? AnimatedBitmap.new(filename) : nil
    end
end
I will try.
 

Thobov

Novice
Member
Joined
Feb 11, 2019
Posts
16
Just replace this function in this plugin:
Ruby:
Expand Collapse Copy
def self.height_sprite_bitmap(*params)
    bitmap = nil
    filename = self.height_sprite_filename(*params)
    return (bitmap) ? bitmap : (filename) ? AnimatedBitmap.new(filename) : nil
end

With this:
Ruby:
Expand Collapse Copy
def self.height_sprite_bitmap(*params)
    filename = self.height_sprite_filename(*params)
    if PluginManager.installed?("[DBK] Animated Pokémon System")
        sp_data = GameData::SpeciesMetrics.get_species_form(params[0], params[1], params[2] == 1)
        return (filename) ? DeluxeBitmapWrapper.new(filename, sp_data) : nil
    else
        return (filename) ? AnimatedBitmap.new(filename) : nil
    end
end
Thanks a lot, truly!
 
Back
Top