Skip to content
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.

Commit

Permalink
play very large maps
Browse files Browse the repository at this point in the history
  • Loading branch information
GunniBusch committed Jan 30, 2024
1 parent 099791e commit 7ecf4c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/de/tum/cit/ase/maze/MazeRunnerGame.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
import com.badlogic.gdx.graphics.g2d.SpriteCache;
import com.badlogic.gdx.scenes.scene2d.ui.Skin;
import com.badlogic.gdx.utils.Logger;
import de.tum.cit.ase.editor.screens.Editor;
import com.badlogic.gdx.utils.TimeUtils;
import de.tum.cit.ase.editor.screens.Editor;
import de.tum.cit.ase.maze.screens.*;
import de.tum.cit.ase.maze.utils.CONSTANTS;
import de.tum.cit.ase.maze.utils.Score;
Expand Down Expand Up @@ -59,7 +59,7 @@ public void create() {
else
Gdx.app.setLogLevel(Logger.ERROR);
spriteBatch = new SpriteBatch(); // Create SpriteBatch
spriteCache = new SpriteCache(8191, false);
spriteCache = new SpriteCache(90000, false);
skin = new Skin(Gdx.files.internal("Exported/skin.json")); // Load UI skin
//this.loadCharacterAnimation(); // Load character animation

Expand Down

0 comments on commit 7ecf4c2

Please sign in to comment.