Small visual tweaks.

- Modified "LoadVerbose" option so that 'false' will display a progress bar (instead of nothing at all), and made this the default.
- Slowed down a few shifting animations.

Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
This commit is contained in:
Jeffrey Han
2014-07-15 13:21:37 -04:00
parent 943c2af178
commit d5b7ff3516
4 changed files with 42 additions and 34 deletions

View File

@@ -262,7 +262,7 @@ public class MainMenu extends BasicGameState {
// move back to original location
if (logo.getX() < container.getWidth() / 2) {
logo.setX(logo.getX() + (delta / 2f));
logo.setX(logo.getX() + (delta / 3f));
if (logo.getX() > container.getWidth() / 2)
logo.setX(container.getWidth() / 2);
}