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
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.
i found the part in the costum battle script
but it still is just a fade out :O.o:
: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
i-im sorry :S it works now tho
thanks alot :shy: