Transition after battle ?

Started by TrueCynder, January 05, 2014, 02:13:54 pm

Previous topic - Next topic

TrueCynder

Hey there i was wondering if there is a way to have the same Transition
after a battle then before .

It just fades out which is kinda bleh
so is there by any chance a script allready or is it somehow (with event commands) doable ?

please let me know

KK20

In Scene_Battle, you can modify

    # If switching to title screen
    if $scene.is_a?(Scene_Title)
      # Fade out screen
      Graphics.transition  #<================ This line here
      Graphics.freeze
    end

into something like

Graphics.transition(40, "Graphics/Transitions/YOURFILENAMEHERE.png")

If using a custom battle system, which you are, you will need to locate something similar to this yourself in that script.

Other Projects
RPG Maker XP Ace  Upgrade RMXP to RMVXA performance!
XPA Tilemap  Tilemap rewrite with many features, including custom resolution!

Nintendo Switch Friend Code: 8310-1917-5318
Discord: KK20 Tyler#8901

Join the CP Discord Server!

TrueCynder

i found the part in the costum battle script
but it still is just a fade out  :O.o:

KK20

January 05, 2014, 06:43:42 pm #3 Last Edit: January 05, 2014, 06:58:12 pm by KK20
:facepalm: I swear, I read that as Scene_Map, not Scene_Title.


   # If switching to title screen
   if $scene.is_a?(Scene_Title)
     # Fade out screen
     Graphics.transition
     Graphics.freeze
   else
     Graphics.transition(40, "Graphics/Transitions/YOURFILENAMEHERE.png")
      Graphics.freeze
   end

Other Projects
RPG Maker XP Ace  Upgrade RMXP to RMVXA performance!
XPA Tilemap  Tilemap rewrite with many features, including custom resolution!

Nintendo Switch Friend Code: 8310-1917-5318
Discord: KK20 Tyler#8901

Join the CP Discord Server!

TrueCynder

i-im sorry :S it works now tho
thanks alot   :shy: