- Joined
- Jun 23, 2014
- Messages
- 454
- Reaction score
- 403
- First Language
- Finnish
- Primarily Uses
I'd need to find a way to make the player transparent when he quits the game to the title from the menu. Would it be possible to write a script for this?
class Scene_End < Scene_MenuBase
def command_to_title
close_command_window
fadeout_all
$game_player.transparent = true
SceneManager.goto(Scene_Title)
end
end