diff options
| author | ilotterytea <iltsu@alright.party> | 2022-08-26 19:19:48 +0600 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2022-08-26 19:19:48 +0600 |
| commit | 6f51ff588dab68bb9eb80802542082afb7686ce9 (patch) | |
| tree | eaf1bebc324f2f1e3f838d5ec05263f855fb337c /core | |
| parent | 00739b98788c03015bed5ddfc353c24068e74bb8 (diff) | |
забыл изменить на новый спрайт дев
Diffstat (limited to 'core')
| -rw-r--r-- | core/src/com/ilotterytea/maxoning/screen/SplashScreen.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/com/ilotterytea/maxoning/screen/SplashScreen.java b/core/src/com/ilotterytea/maxoning/screen/SplashScreen.java index 82dc76a..ee80f17 100644 --- a/core/src/com/ilotterytea/maxoning/screen/SplashScreen.java +++ b/core/src/com/ilotterytea/maxoning/screen/SplashScreen.java @@ -33,14 +33,14 @@ public class SplashScreen implements InputProcessor, Screen { this.stage = new Stage(new FillViewport(Gdx.graphics.getWidth(), Gdx.graphics.getHeight())); - this.skin = game.assetManager.get("main.skin", Skin.class); + this.skin = new Skin(Gdx.files.internal("main.skin")); this.infoLabel = new Label( String.format("%s %s", MaxonConstants.GAME_NAME, MaxonConstants.GAME_VERSION), skin, "credits" ); - this.dev = new Image(game.assetManager.get("dev.png", Texture.class)); + this.dev = new Image(game.assetManager.get("sprites/ilotterytea.png", Texture.class)); this.whiteSquare = new Image(game.assetManager.get("sprites/white.png", Texture.class)); infoLabel.setPosition( |
