Skip to content

Commit

Permalink
Debug GameScoreText
Browse files Browse the repository at this point in the history
  • Loading branch information
kairusds committed Jan 10, 2022
1 parent e1f2770 commit fbc8567
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/ru/nsu/ccfit/zuev/osu/game/GameScoreText.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,12 @@ public void changeText(final StringBuilder text) {

public void setVisible(final boolean visible) {
this.visible = visible;
for(AnimSprite digit : digits) {
for(Sprite digit : digits) {
digit.setVisible(visible);
}
for(Sprite sp : letters) {
sp.setVisible(visible);
}
}

public void attachToScene(final Scene scene) {
Expand Down

0 comments on commit fbc8567

Please sign in to comment.