Changing background to make instructions visible

This commit is contained in:
Wlowscha 2025-01-05 21:07:27 +01:00
parent 0b53fde453
commit 76fa8e2415
No known key found for this signature in database
GPG Key ID: 3C8F1AD330565D04
3 changed files with 2 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

@ -154,6 +154,7 @@ export class LoadingScene extends SceneBase {
this.loadImage("scroll_bar_handle", "ui");
this.loadImage("starter_container_bg", "ui");
this.loadImage("starter_select_bg", "ui");
this.loadImage("pokedex_summary_bg", "ui");
this.loadImage("select_cursor", "ui");
this.loadImage("select_cursor_highlight", "ui");
this.loadImage("select_cursor_highlight_thick", "ui");

View File

@ -256,7 +256,7 @@ export default class PokedexPageUiHandler extends MessageUiHandler {
bgColor.setOrigin(0, 0);
this.starterSelectContainer.add(bgColor);
const starterSelectBg = this.scene.add.image(0, 0, "starter_select_bg");
const starterSelectBg = this.scene.add.image(0, 0, "pokedex_summary_bg");
starterSelectBg.setOrigin(0, 0);
this.starterSelectContainer.add(starterSelectBg);