Added several new tiles and updated Glass texture

- Added Painting to demonstrate "HD" texture support
- Added RoughPaint and DecorativeBricks to decorate a house outside
- Added WhitePaint to create windows
- Added TilesSmall and TilesLarge
- Updated Glass texture to make it brighter and add streaks
This commit is contained in:
OLEGSHA 2021-01-11 21:58:00 +03:00
parent 76a6c4a186
commit a3ac4e8aa0
8 changed files with 24 additions and 0 deletions

View File

@ -183,6 +183,30 @@ public class TestContent {
register(new TileRenderOpaqueSurface("Test:Wallpaper", getTileTexture("Wallpaper")));
register(new HangingTileLogic("Test:Wallpaper"));
register(new TileData("Test:WhitePaint"));
register(new TileRenderOpaqueSurface("Test:WhitePaint", getTileTexture("WhitePaint")));
register(new HangingTileLogic("Test:WhitePaint"));
register(new TileData("Test:RoughPaint"));
register(new TileRenderOpaqueSurface("Test:RoughPaint", getTileTexture("RoughPaint")));
register(new HangingTileLogic("Test:RoughPaint"));
register(new TileData("Test:DecorativeBricks"));
register(new TileRenderOpaqueSurface("Test:DecorativeBricks", getTileTexture("DecorativeBricks")));
register(new HangingTileLogic("Test:DecorativeBricks"));
register(new TileData("Test:Painting"));
register(new TileRenderTransparentSurface("Test:Painting", getTileTexture("Painting")));
register(new HangingTileLogic("Test:Painting"));
register(new TileData("Test:TilesLarge"));
register(new TileRenderOpaqueSurface("Test:TilesLarge", getTileTexture("TilesLarge")));
register(new HangingTileLogic("Test:TilesLarge"));
register(new TileData("Test:TilesSmall"));
register(new TileRenderOpaqueSurface("Test:TilesSmall", getTileTexture("TilesSmall")));
register(new HangingTileLogic("Test:TilesSmall"));
TileDataRegistry.getInstance().values().forEach(PLACEABLE_TILES::add);
PLACEABLE_TILES.removeIf(b -> placeableBlacklist.contains(b.getId()));
PLACEABLE_TILES.sort(Comparator.comparing(TileData::getId));

Binary file not shown.

Before

Width:  |  Height:  |  Size: 698 B

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 897 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 866 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 916 B