Skip to content

Commit

Permalink
Adjusted location of pause menu buttons to fit center of screen better.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlasdairS4698737 committed Sep 27, 2023
1 parent fb25a74 commit 42179a4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void changed(ChangeEvent changeEvent, Actor actor) {
}
});

table.add(pauseMenuBtn).padTop(300f).padRight(500f);
table.add(pauseMenuBtn).padTop(300f).padRight(700f);

stage.addActor(table);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void changed(ChangeEvent changeEvent, Actor actor) {
}
});

table.add(pauseMenuBtn).padTop(400f).padRight(400f);
table.add(pauseMenuBtn).padTop(400f).padRight(490f);

stage.addActor(table);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void changed(ChangeEvent changeEvent, Actor actor) {
}
});

table.add(pauseMenuBtn).padTop(400f).padRight(500f);
table.add(pauseMenuBtn).padTop(400f).padRight(675f);

stage.addActor(table);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void changed(ChangeEvent changeEvent, Actor actor) {
}
});

table.add(pauseMenuBtn).padTop(300f).padRight(400f);
table.add(pauseMenuBtn).padTop(300f).padRight(500f);

stage.addActor(table);
}
Expand Down

0 comments on commit 42179a4

Please sign in to comment.