Solid bush block
BIN
core/assets-raw/sprites/blocks/environment/shrubs-large.png
Normal file
After Width: | Height: | Size: 680 B |
BIN
core/assets-raw/sprites/blocks/environment/shrubs1.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
core/assets-raw/sprites/blocks/environment/shrubs2.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 504 B After Width: | Height: | Size: 501 B |
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.1 MiB |
Before Width: | Height: | Size: 280 KiB After Width: | Height: | Size: 280 KiB |
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.1 MiB |
Before Width: | Height: | Size: 275 KiB After Width: | Height: | Size: 274 KiB |
Before Width: | Height: | Size: 518 KiB After Width: | Height: | Size: 522 KiB |
Before Width: | Height: | Size: 706 KiB After Width: | Height: | Size: 704 KiB |
Before Width: | Height: | Size: 345 KiB After Width: | Height: | Size: 346 KiB |
@ -31,7 +31,7 @@ public class Blocks implements ContentList{
|
|||||||
|
|
||||||
//environment
|
//environment
|
||||||
air, part, spawn, deepwater, water, taintedWater, tar, stone, craters, charr, sand, darksand, ice, snow, darksandTaintedWater,
|
air, part, spawn, deepwater, water, taintedWater, tar, stone, craters, charr, sand, darksand, ice, snow, darksandTaintedWater,
|
||||||
holostone, rocks, sporerocks, icerocks, cliffs, sporePine, pine, whiteTree, whiteTreeDead, sporeCluster,
|
holostone, rocks, sporerocks, icerocks, cliffs, sporePine, pine, shrubs, whiteTree, whiteTreeDead, sporeCluster,
|
||||||
iceSnow, sandWater, darksandWater, duneRocks, sandRocks, moss, sporeMoss, shale, shaleRocks, shaleBoulder, grass, salt,
|
iceSnow, sandWater, darksandWater, duneRocks, sandRocks, moss, sporeMoss, shale, shaleRocks, shaleBoulder, grass, salt,
|
||||||
metalFloor, metalFloorDamaged, metalFloor2, metalFloor3, metalFloor5, ignarock, magmarock, hotrock, snowrocks, rock, snowrock, saltRocks,
|
metalFloor, metalFloorDamaged, metalFloor2, metalFloor3, metalFloor5, ignarock, magmarock, hotrock, snowrocks, rock, snowrock, saltRocks,
|
||||||
creeptree,
|
creeptree,
|
||||||
@ -312,6 +312,10 @@ public class Blocks implements ContentList{
|
|||||||
variants = 0;
|
variants = 0;
|
||||||
}};
|
}};
|
||||||
|
|
||||||
|
shrubs = new StaticWall("shrubs"){{
|
||||||
|
|
||||||
|
}};
|
||||||
|
|
||||||
whiteTreeDead = new TreeBlock("white-tree-dead"){{
|
whiteTreeDead = new TreeBlock("white-tree-dead"){{
|
||||||
}};
|
}};
|
||||||
|
|
||||||
|
@ -121,6 +121,11 @@ public class Generators{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
average.mul(1f / (image.width() * image.height()));
|
average.mul(1f / (image.width() * image.height()));
|
||||||
|
if(block instanceof Floor){
|
||||||
|
average.mul(0.8f);
|
||||||
|
}else{
|
||||||
|
average.mul(1.1f);
|
||||||
|
}
|
||||||
average.a = 1f;
|
average.a = 1f;
|
||||||
colors.draw(block.id, 0, average);
|
colors.draw(block.id, 0, average);
|
||||||
}catch(IllegalArgumentException e){
|
}catch(IllegalArgumentException e){
|
||||||
|