mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-26 17:29:30 +02:00
Change activation trigger
Switch the bar to show with the C key instead of the V key (no space with V key)
This commit is contained in:
parent
1e63f99765
commit
96146891dc
@ -1401,7 +1401,6 @@ export default class BattleScene extends SceneBase {
|
|||||||
}
|
}
|
||||||
processInfoButton(pressed: boolean): void {
|
processInfoButton(pressed: boolean): void {
|
||||||
this.arenaFlyout.toggleFlyout(pressed);
|
this.arenaFlyout.toggleFlyout(pressed);
|
||||||
this.trainerBar.toggleFlyout(pressed);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
showFieldOverlay(duration: integer): Promise<void> {
|
showFieldOverlay(duration: integer): Promise<void> {
|
||||||
|
@ -442,6 +442,7 @@ export default class BattleInfo extends Phaser.GameObjects.Container {
|
|||||||
ease: "Sine.easeInOut",
|
ease: "Sine.easeInOut",
|
||||||
alpha: visible ? 1 : 0
|
alpha: visible ? 1 : 0
|
||||||
});
|
});
|
||||||
|
(this.scene as BattleScene).trainerBar.toggleFlyout(visible);
|
||||||
}
|
}
|
||||||
|
|
||||||
updateBossSegments(pokemon: EnemyPokemon): void {
|
updateBossSegments(pokemon: EnemyPokemon): void {
|
||||||
|
Loading…
Reference in New Issue
Block a user