mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-09 07:18:57 +07:00
Replaced city connection icon, luxury resources now have a smiley next to them and strategic resources have a production symbol
This commit is contained in:
@ -2,20 +2,22 @@ package com.unciv.game.desktop;
|
||||
|
||||
import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
|
||||
import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;
|
||||
import com.badlogic.gdx.graphics.Texture;
|
||||
import com.badlogic.gdx.tools.texturepacker.TexturePacker;
|
||||
import com.unciv.UnCivGame;
|
||||
|
||||
class DesktopLauncher {
|
||||
public static void main (String[] arg) {
|
||||
//
|
||||
// TexturePacker.Settings settings = new TexturePacker.Settings();
|
||||
// settings.maxWidth = 2048;
|
||||
// settings.maxHeight = 2048;
|
||||
// settings.combineSubdirectories=true;
|
||||
//
|
||||
// // This is so they don't look all pixelated
|
||||
// settings.filterMag = Texture.TextureFilter.MipMapLinearLinear;
|
||||
// settings.filterMin = Texture.TextureFilter.MipMapLinearLinear;
|
||||
// TexturePacker.process(settings, "../images", ".", "game");
|
||||
|
||||
TexturePacker.Settings settings = new TexturePacker.Settings();
|
||||
settings.maxWidth = 2048;
|
||||
settings.maxHeight = 2048;
|
||||
settings.combineSubdirectories=true;
|
||||
|
||||
// This is so they don't look all pixelated
|
||||
settings.filterMag = Texture.TextureFilter.MipMapLinearLinear;
|
||||
settings.filterMin = Texture.TextureFilter.MipMapLinearLinear;
|
||||
TexturePacker.process(settings, "../images", ".", "game");
|
||||
|
||||
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
|
||||
new LwjglApplication(new UnCivGame(), config);
|
||||
|
Reference in New Issue
Block a user