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:
Yair Morgenstern
2018-08-27 17:17:14 +03:00
parent 0d630abc14
commit 5d3c7a3a5e
11 changed files with 434 additions and 223 deletions

View File

@ -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);