mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-18 15:00:55 +00:00
Longer descriptions don't stuck shorter ones anymore
This commit is contained in:
parent
06ae04abad
commit
6f446324db
@ -441,6 +441,7 @@ export default class SummaryUiHandler extends UiHandler {
|
||||
const selectedMove = this.getSelectedMove();
|
||||
|
||||
if (selectedMove) {
|
||||
this.moveDescriptionText.setY(84);
|
||||
this.movePowerText.setText(selectedMove.power >= 0 ? selectedMove.power.toString() : '---');
|
||||
this.moveAccuracyText.setText(selectedMove.accuracy >= 0 ? selectedMove.accuracy.toString() : '---');
|
||||
this.moveCategoryIcon.setFrame(MoveCategory[selectedMove.category].toLowerCase());
|
||||
@ -457,7 +458,6 @@ export default class SummaryUiHandler extends UiHandler {
|
||||
}
|
||||
|
||||
if (moveDescriptionLineCount > 3) {
|
||||
this.moveDescriptionText.setY(84);
|
||||
this.descriptionScrollTween = this.scene.tweens.add({
|
||||
targets: this.moveDescriptionText,
|
||||
delay: Utils.fixedInt(2000),
|
||||
|
Loading…
x
Reference in New Issue
Block a user