• 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.
  • The Eevee Expo Game Jam has concluded! 🎉 Head on over to the game jam forum to play through the games.
    Don't forget to come back September 21st to vote for your favorites!
  • Reminder: AI-generated content is not allowed on the forums per the Rules and Regulations. Please contact us if you have any questions!
[20.1+] Pokegear Themes

Resource [20.1+] Pokegear Themes 1.0.9

Help Please... dunno why this happening! U.u
1696266689419.png
 
I'm not sure what you mean by scrollable but what's going on in the image is what I said in the update. I also said there how to solve it but I can try to explain it better here.

What you have to do is put the name of all your themes (or the ones that you need to fix the height) in the SPECIAL_THEME array in the configuration file. The name is the same one that you put in the folders where all the images are. It should look something like this:
Ruby:
Expand Collapse Copy
  SPECIAL_THEME = [
    "NPB Blue", "NPB Pink", "NPB Yellow", "Theme 1", "Theme 2",
    "Theme 3", "Theme 4", "Theme 5", "Theme 6", "Theme 7",
  ]
Then, you have to add the extra height for the normal menu and the themes menu. If you haven't changed the height between buttons in the normal menu, you can simply put the default value of 10. It should have as many values as themes you added in the array before.
Ruby:
Expand Collapse Copy
  BUTTON_HEIGHT = [
    10, 10, 10, 10, 10, 10, 10, 30, 10, 10
  ]
  THEME_BUTTON_HEIGHT = [
    10, 10, 10, 10, 10, 10, 10, 30, 10, 10
  ]
As a note, the lower these values, the higher the buttons will be. It also accepts negative values (-10, for example). Useful if 0 isn't enough to put the buttons where you want them.
Try with this. Increasing the numbers will make the buttons go down. Lowering the numbers (even negative ones) will make the buttons go up.
 
With a fresh install it keeps asking me about these:

Exception `Errno::ENOENT' at 078:RPG_Cache:127 - No such file or directory - Graphics/UI/Pokegear/0/bg
Exception `Errno::ENOENT' at 078:RPG_Cache:127 - No such file or directory - Graphics/UI/Pokegear/0/icon_button
 
You haven't defined a theme and have no "0" folder theme in UI/Pokegear. In the installation steps, I say that you have to define one in the intro.

Anyway, you have to use this code $PokemonSystem.pokegear = "Theme 1" before you open the pokegear to set a theme for it. You can change the theme's name (the one between the ") to any you want the player to start with.
 
You haven't defined a theme and have no "0" folder theme in UI/Pokegear. In the installation steps, I say that you have to define one in the intro.

Anyway, you have to use this code $PokemonSystem.pokegear = "Theme 1" before you open the pokegear to set a theme for it. You can change the theme's name (the one between the ") to any you want the player to start with.
Sorry I completely forgot about this step when updating to v21.1. Appreciate you dealing with my forgetfulness.
 
Ok, can you share images of Graphics/Pictures/Pokegear and Graphics/Pictures/RegionMap/UI? And if you can share images from inside the themes folders that'll be good too.
 
Back
Top