improved fps :D

pull/12/head
hYdos 2020-02-27 20:06:46 +10:00
parent cefe804e13
commit 87b47e1311
1 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ public class Litecraft extends Game
player.isVisible = false;
ginger3D = new Ginger();
data = new GameData(player, camera, 30);
data = new GameData(player, camera, 20);
data.handleGuis = false;
ginger3D.setup(new MasterRenderer(camera), this);
@ -146,7 +146,7 @@ public class Litecraft extends Game
public void onPlayButtonClick() {
if (world == null)
{
world = new World(new Random().nextLong(), 10, Dimension.OVERWORLD);
world = new World(new Random().nextLong(), 2, Dimension.OVERWORLD);
}
}
}