From 6f51ff588dab68bb9eb80802542082afb7686ce9 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Fri, 26 Aug 2022 19:19:48 +0600 Subject: забыл изменить на новый спрайт дев MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/src/com/ilotterytea/maxoning/screen/SplashScreen.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/src/com') 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( -- cgit v1.2.3