Added Dirt and Stone Variants

Added podzol, coarse dirt, granite, polished granite, andesite, polished andesite, diorite, polished diorite.
This commit is contained in:
piebot
2026-03-13 08:23:49 +03:00
parent 71018169b5
commit c1124d2f26
11 changed files with 169 additions and 8 deletions

View File

@@ -31,7 +31,7 @@ void IUIScene_CreativeMenu::staticCtor()
DEF(eCreativeInventory_BuildingBlocks)
ITEM(Tile::stone_Id)
ITEM(Tile::grass_Id)
ITEM(Tile::dirt_Id)
ITEM_AUX(Tile::dirt_Id, 0)
ITEM(Tile::cobblestone_Id)
ITEM(Tile::sand_Id)
ITEM(Tile::sandStone_Id)
@@ -77,6 +77,18 @@ void IUIScene_CreativeMenu::staticCtor()
ITEM(Tile::glowstone_Id)
ITEM(Tile::fence_Id)
ITEM_AUX(Tile::dirt_Id, DirtTile::COARSE_DIRT)
ITEM_AUX(Tile::dirt_Id, DirtTile::PODZOL)
ITEM_AUX(Tile::stone_Id, StoneTile::GRANITE)
ITEM_AUX(Tile::stone_Id, StoneTile::POLISHED_GRANITE)
ITEM_AUX(Tile::stone_Id, StoneTile::DIORITE)
ITEM_AUX(Tile::stone_Id, StoneTile::POLISHED_DIORITE)
ITEM_AUX(Tile::stone_Id, StoneTile::ANDESITE)
ITEM_AUX(Tile::stone_Id, StoneTile::POLISHED_ANDESITE)
// TU25
ITEM(Tile::spruceFence_Id)
ITEM(Tile::birchFence_Id)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 155 KiB

After

Width:  |  Height:  |  Size: 162 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -1001,10 +1001,30 @@ void PreStitchedTextureMap::loadUVs()
ADD_ICON(20, 11, L"iron_trapdoor");
ADD_ICON(20, 12, L"inverted_daylight_detector");
ADD_ICON(20, 13, L"dirt_podzol_side");
ADD_ICON(20, 14, L"dirt_podzol_top");
ADD_ICON(20, 15, L"coarse_dirt");
ADD_ICON(21, 0, L"door_spruce_lower");
ADD_ICON(21, 1, L"door_birch_lower");
ADD_ICON(21, 2, L"door_jungle_lower");
ADD_ICON(21, 3, L"door_acacia_lower");
ADD_ICON(21, 4, L"door_dark_lower");
ADD_ICON(21, 5, L"stone_andesite");
ADD_ICON(21, 6, L"stone_andesite_smooth");
ADD_ICON(21, 7, L"stone_granite");
ADD_ICON(21, 8, L"stone_granite_smooth");
ADD_ICON(21, 9, L"stone_diorite");
ADD_ICON(21, 10, L"stone_diorite_smooth");
ADD_ICON(22, 1, L"flower_blue_orchid");
ADD_ICON(22, 2, L"flower_allium");
ADD_ICON(22, 3, L"flower_houstonia");
ADD_ICON(22, 4, L"flower_tulip_red");
ADD_ICON(22, 5, L"flower_tulip_orange");
ADD_ICON(22, 6, L"flower_tulip_white");
ADD_ICON(22, 7, L"flower_tulip_pink");
ADD_ICON(22, 8, L"flower_oxeye_daisy");
}
}