mirror of
https://github.com/yairm210/Unciv.git
synced 2025-01-05 13:08:48 +07:00
Changed Forest icon
Narrowed hexagon edges
This commit is contained in:
parent
2cd7e5dc88
commit
6096bde9cd
Binary file not shown.
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.3 KiB |
Binary file not shown.
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 2.5 KiB |
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Before Width: | Height: | Size: 798 KiB After Width: | Height: | Size: 790 KiB |
@ -21,8 +21,8 @@ android {
|
||||
applicationId "com.unciv.game"
|
||||
minSdkVersion 14
|
||||
targetSdkVersion 26
|
||||
versionCode 166
|
||||
versionName "2.10.5"
|
||||
versionCode 167
|
||||
versionName "2.10.6"
|
||||
}
|
||||
buildTypes {
|
||||
release {
|
||||
|
@ -28,7 +28,6 @@ class CityTileGroup(private val city: CityInfo, tileInfo: TileInfo) : TileGroup(
|
||||
if (cityImage != null) cityImage!!.setColor(1f, 1f, 1f, 0.5f)
|
||||
if (civilianUnitImage != null) civilianUnitImage!!.setColor(1f, 1f, 1f, 0.5f)
|
||||
if (militaryUnitImage!= null) militaryUnitImage!!.setColor(1f, 1f, 1f, 0.5f)
|
||||
if (terrainFeatureImage!= null) terrainFeatureImage!!.setColor(1f, 1f, 1f, 0.5f)
|
||||
updateYieldGroup()
|
||||
}
|
||||
|
||||
|
@ -260,7 +260,7 @@ open class TileGroup(var tileInfo: TileInfo) : Group() {
|
||||
addActor(terrainFeatureImage)
|
||||
terrainFeatureImage!!.run {
|
||||
setSize(30f, 30f)
|
||||
//setColor(1f, 1f, 1f, 0.5f)
|
||||
setColor(1f, 1f, 1f, 0.5f)
|
||||
center(this@TileGroup)
|
||||
}
|
||||
}
|
||||
|
@ -27,7 +27,7 @@ class OffersList(val offers: TradeOffersList, val correspondingOffers: TradeOffe
|
||||
val labelName = when(offertype){
|
||||
Gold, Gold_Per_Turn, Treaty,Introduction -> ""
|
||||
Luxury_Resource -> "Luxury resources"
|
||||
Strategic_Resource -> "Luxury resources"
|
||||
Strategic_Resource -> "Strategic resources"
|
||||
Technology -> "Technologies"
|
||||
WarDeclaration -> "Declarations of war"
|
||||
City -> "Cities"
|
||||
|
@ -66,7 +66,7 @@ object ImageGetter {
|
||||
return getImage("UnitIcons/$unitName").apply { this.color=color }
|
||||
}
|
||||
|
||||
val foodCircleColor = Color.GREEN.cpy().lerp(Color.WHITE,0.5f)
|
||||
val foodCircleColor = colorFromRGB(129, 199, 132)// .GREEN.cpy().lerp(Color.WHITE,0.5f)
|
||||
val productionCircleColor = Color.BROWN.cpy().lerp(Color.WHITE,0.5f)
|
||||
val goldCircleColor = Color.GOLD.cpy().lerp(Color.WHITE,0.5f)
|
||||
fun getImprovementIcon(improvementName:String, size:Float=20f):Actor{
|
||||
|
Loading…
Reference in New Issue
Block a user