• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Our weekly protagonist poll is now up! Vote for your favorite Conquest protagonist in the poll by clicking here.
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

How to create your own transitions?

Transitions are located in the folder Graphics/Transitions of your game. Add the image there, and after that, look for this piece of code at the script PokemonField:
Code:
      transitions=["Splash","Image1","Image2",
         "Image3","Image4","Random_stripe_h",
         "Random_stripe_v","BreakingGlass",
         "RotatingPieces","022-Normal02",
         "021-Normal01","Battle","Mosaic","ShrinkingPieces","zoomin",
         "computertrclose","hexatr","hexatzr",
         "battle1","battle2","battle3","battle4",
         "computertr","hexatrc"
      ]
You have to add a coma after "hexatrc" and add the name of the new transition you added. For example, I add a new image called Trans . I will edit the code to:
Code:
      transitions=["Splash","Image1","Image2",
         "Image3","Image4","Random_stripe_h",
         "Random_stripe_v","BreakingGlass",
         "RotatingPieces","022-Normal02",
         "021-Normal01","Battle","Mosaic","ShrinkingPieces","zoomin",
         "computertrclose","hexatr","hexatzr",
         "battle1","battle2","battle3","battle4",
         "computertr","hexatrc","trans"
      ]
I think the code chooses a random transition after every battle. Tell me if you want me to explain how to choose a specific transition.
 
How do the transition images work? Like, I realize its something about the screen sliding along the black-white gradient but how does it work exactly?
 
Back
Top