- 7
- Posts
- 3
- Years
- Seen Apr 12, 2022
Using v.19.1, I edited some of the script under UI_SplashesAndTitleScreen so that there's no intro or title screen, the game jumps right into the load screen.
I just copy-pasted the code that opens the load screen after the title screen so that it comes after initialise viewport instead.
It looks like this:
def initialize(viewport = nil)
super(viewport)
sscene = PokemonLoad_Scene.new
sscreen = PokemonLoadScreen.new(sscene)
sscreen.pbStartLoadScreen
end
Now when I open the game, there's no intro or title screen, but selecting new game gives me a black screen. Selecting new game in debug mode still works.
Does anyone know what's gone wrong or another way to get rid of the intro and title?
I just copy-pasted the code that opens the load screen after the title screen so that it comes after initialise viewport instead.
It looks like this:
def initialize(viewport = nil)
super(viewport)
sscene = PokemonLoad_Scene.new
sscreen = PokemonLoadScreen.new(sscene)
sscreen.pbStartLoadScreen
end
Now when I open the game, there's no intro or title screen, but selecting new game gives me a black screen. Selecting new game in debug mode still works.
Does anyone know what's gone wrong or another way to get rid of the intro and title?