[QOL] Make the name and formName readable for bigger sprites in pokedex (#5328)

* Make the name, formName and type readable (bring it infront of larger sprites that would block it)

* Dont to type Icons otherwise they will overlay on the "want to go back" text

* Update src/ui/pokedex-ui-handler.ts
This commit is contained in:
Jannik Tappert 2025-02-15 05:51:28 +01:00 committed by GitHub
parent 3fd5414f5c
commit 8555ef7cb7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -537,6 +537,8 @@ export default class PokedexUiHandler extends MessageUiHandler {
this.starterSelectContainer.bringToTop(this.filterBarContainer); this.starterSelectContainer.bringToTop(this.filterBarContainer);
this.initTutorialOverlay(this.starterSelectContainer); this.initTutorialOverlay(this.starterSelectContainer);
this.starterSelectContainer.bringToTop(this.starterSelectMessageBoxContainer); this.starterSelectContainer.bringToTop(this.starterSelectMessageBoxContainer);
this.starterSelectContainer.bringToTop(this.pokemonNameText);
this.starterSelectContainer.bringToTop(this.pokemonFormText);
} }
show(args: any[]): boolean { show(args: any[]): boolean {