mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-04-03 08:30:55 +01:00
Fix Pokemon icon positioning
This commit is contained in:
parent
d70ddcfe65
commit
35747c3dd6
Before ![]() (image error) Size: 250 B After ![]() (image error) Size: 250 B ![]() ![]() |
Before ![]() (image error) Size: 362 B After ![]() (image error) Size: 362 B ![]() ![]() |
Before ![]() (image error) Size: 263 B After ![]() (image error) Size: 263 B ![]() ![]() |
Before ![]() (image error) Size: 343 B After ![]() (image error) Size: 343 B ![]() ![]() |
@ -397,7 +397,7 @@ export abstract class PokemonHeldItemModifier extends PersistentModifier {
|
|||||||
const pokemon = this.getPokemon(scene);
|
const pokemon = this.getPokemon(scene);
|
||||||
const isIconShown = pokemon instanceof PlayerPokemon || scene.currentBattle.seenEnemyPartyMemberIds.has(pokemon.id);
|
const isIconShown = pokemon instanceof PlayerPokemon || scene.currentBattle.seenEnemyPartyMemberIds.has(pokemon.id);
|
||||||
const iconAtlasKey = isIconShown ? pokemon.getIconAtlasKey() : 'pokemon_icons_0';
|
const iconAtlasKey = isIconShown ? pokemon.getIconAtlasKey() : 'pokemon_icons_0';
|
||||||
const pokemonIcon = scene.add.sprite(0, 8, iconAtlasKey);
|
const pokemonIcon = scene.add.sprite(-2, 10, iconAtlasKey);
|
||||||
pokemonIcon.setFrame(pokemon.getIconId());
|
pokemonIcon.setFrame(pokemon.getIconId());
|
||||||
pokemonIcon.setOrigin(0, 0.5);
|
pokemonIcon.setOrigin(0, 0.5);
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ export default class PartyExpBar extends Phaser.GameObjects.Container {
|
|||||||
|
|
||||||
this.add(this.bg);
|
this.add(this.bg);
|
||||||
|
|
||||||
this.pokemonIcon = this.scene.add.sprite(3, 7, 'pokemon_icons_0');
|
this.pokemonIcon = this.scene.add.sprite(1, 9, 'pokemon_icons_0');
|
||||||
this.pokemonIcon.setOrigin(0, 0.5);
|
this.pokemonIcon.setOrigin(0, 0.5);
|
||||||
this.pokemonIcon.setScale(0.5);
|
this.pokemonIcon.setScale(0.5);
|
||||||
this.add(this.pokemonIcon);
|
this.add(this.pokemonIcon);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user