[教程]一切都写对了但是纹理(材质)就是错误怎么办
本教程基本上是给大型addons的作者看的,因为问题往往只会发生在大addons里面首先我们需要知道一个冷知识,渲染龙它有材质限制的,这就是原因之一
于是乎,我们就出现了一个情况:item_texture写对了terrain_texture写对了entity写对了,进游戏:未知物品未知方块未知生物
让人头疼不已
这时候,我们就需要学会怎么解决了
首先,就是多面方块,实际上不知道你有没有发现,你玩的一些addons,多面方块是用3d模型以让6个面整合在一个贴图里的,是作者不会写block.json?当然不是,因为这样可以减少包内材质数量,以不会出现什么都写对材质就是错误的问题,因此如果你的大型addons还在开发初期快把工作方块木头一类搞成3d模型(就是一个方块的3d模型,没什么出奇的)并且把纹理的6个面整合,这样的话就可以减少包内材质数量了
那么还有第二个,废弃贴图,废弃贴图我们也必须移除,如果只是暂时没做进来一类的,可以先放到别的文件夹,但就是不能放到资源包!铭记这一点,同时大后期懒得慢慢搞的也可以这样做,因此,现在开始,不要遗留任何未使用贴图到你的包里!
那么接下来,最终办法,这个办法既可以是救星也可以是噩梦
在与item_texture.json和terrain_texture.json同层下创建一个json文件叫做textures_list,然后把材质的路径填进去,你可以翻原版包看,什么?你不想?,好吧,给你惯的,也就我一个人会惯着你们了[
"textures/blocks/acacia_trapdoor",
"textures/blocks/anvil_base",
"textures/blocks/anvil_top_damaged_0",
"textures/blocks/anvil_top_damaged_1",
"textures/blocks/anvil_top_damaged_2",
"textures/blocks/bamboo_leaf",
"textures/blocks/bamboo_sapling",
"textures/blocks/bamboo_singleleaf",
"textures/blocks/bamboo_small_leaf",
"textures/blocks/bamboo_stem",
"textures/blocks/barrier",
"textures/blocks/beacon",
"textures/blocks/bedrock",
"textures/blocks/bed_feet_end",
"textures/blocks/bed_feet_side",
"textures/blocks/bed_feet_top",
"textures/blocks/bed_head_end",
"textures/blocks/bed_head_side",
"textures/blocks/bed_head_top",
"textures/blocks/beetroots_stage_0",
"textures/blocks/beetroots_stage_1",
"textures/blocks/beetroots_stage_2",
"textures/blocks/beetroots_stage_3",
"textures/blocks/bell_bottom",
"textures/blocks/bell_side",
"textures/blocks/bell_top",
"textures/blocks/birch_trapdoor",
"textures/blocks/blast_furnace_front_off",
"textures/blocks/blast_furnace_front_on",
"textures/blocks/blast_furnace_side",
"textures/blocks/blast_furnace_top",
"textures/blocks/blue_ice",
"textures/blocks/bone_block_side",
"textures/blocks/bone_block_top",
"textures/blocks/bookshelf",
"textures/blocks/border",
"textures/blocks/brewing_stand",
"textures/blocks/brewing_stand_base",
"textures/blocks/brick",
"textures/blocks/build_allow",
"textures/blocks/build_deny",
"textures/blocks/cactus_bottom",
"textures/blocks/cactus_side",
"textures/blocks/cactus_top",
"textures/blocks/cake_bottom",
"textures/blocks/cake_inner",
"textures/blocks/cake_side",
"textures/blocks/cake_top",
"textures/blocks/camera_back",
"textures/blocks/camera_front",
"textures/blocks/camera_side",
"textures/blocks/camera_top",
"textures/blocks/campfire",
"textures/blocks/campfire_log",
"textures/blocks/campfire_log_lit",
"textures/blocks/carried_waterlily",
"textures/blocks/carrots_stage_0",
"textures/blocks/carrots_stage_1",
"textures/blocks/carrots_stage_2",
"textures/blocks/carrots_stage_3",
"textures/blocks/cartography_table_side1",
"textures/blocks/cartography_table_side2",
"textures/blocks/cartography_table_side3",
"textures/blocks/cartography_table_top",
"textures/blocks/cauldron_bottom",
"textures/blocks/cauldron_inner",
"textures/blocks/cauldron_side",
"textures/blocks/cauldron_top",
"textures/blocks/cauldron_water",
"textures/blocks/cauldron_water_placeholder",
"textures/blocks/chain_command_block_back",
"textures/blocks/chain_command_block_back_mipmap",
"textures/blocks/chain_command_block_conditional",
"textures/blocks/chain_command_block_conditional_mipmap",
"textures/blocks/chain_command_block_front",
"textures/blocks/chain_command_block_front_mipmap",
"textures/blocks/chain_command_block_side",
"textures/blocks/chain_command_block_side_mipmap",
"textures/blocks/chest_front",
"textures/blocks/chest_side",
"textures/blocks/chest_top",
"textures/blocks/chorus_flower",
"textures/blocks/chorus_flower_dead",
"textures/blocks/chorus_plant",
"textures/blocks/clay",
"textures/blocks/coarse_dirt",
"textures/blocks/coal_block",
"textures/blocks/coal_ore",
"textures/blocks/cobblestone",
"textures/blocks/cobblestone_mossy",
"textures/blocks/cocoa_stage_0",
"textures/blocks/cocoa_stage_1",
"textures/blocks/cocoa_stage_2",
"textures/blocks/command_block",
"textures/blocks/command_block_back",
"textures/blocks/command_block_back_mipmap",
"textures/blocks/command_block_conditional",
"textures/blocks/command_block_conditional_mipmap",
"textures/blocks/command_block_front",
"textures/blocks/command_block_front_mipmap",
"textures/blocks/command_block_side",
"textures/blocks/command_block_side_mipmap",
"textures/blocks/comparator_off",
"textures/blocks/comparator_on",
"textures/blocks/concrete_black",
"textures/blocks/concrete_blue",
"textures/blocks/concrete_brown",
"textures/blocks/concrete_cyan",
"textures/blocks/concrete_gray",
"textures/blocks/concrete_green",
"textures/blocks/concrete_light_blue",
"textures/blocks/concrete_lime",
"textures/blocks/concrete_magenta",
"textures/blocks/concrete_orange",
"textures/blocks/concrete_pink",
"textures/blocks/concrete_powder_black",
"textures/blocks/concrete_powder_blue",
"textures/blocks/concrete_powder_brown",
"textures/blocks/concrete_powder_cyan",
"textures/blocks/concrete_powder_gray",
"textures/blocks/concrete_powder_green",
"textures/blocks/concrete_powder_light_blue",
"textures/blocks/concrete_powder_lime",
"textures/blocks/concrete_powder_magenta",
"textures/blocks/concrete_powder_orange",
"textures/blocks/concrete_powder_pink",
"textures/blocks/concrete_powder_purple",
"textures/blocks/concrete_powder_red",
"textures/blocks/concrete_powder_silver",
"textures/blocks/concrete_powder_white",
"textures/blocks/concrete_powder_yellow",
"textures/blocks/concrete_purple",
"textures/blocks/concrete_red",
"textures/blocks/concrete_silver",
"textures/blocks/concrete_white",
"textures/blocks/concrete_yellow",
"textures/blocks/conduit_base",
"textures/blocks/conduit_cage",
"textures/blocks/conduit_wind_horizontal",
"textures/blocks/conduit_wind_vertical",
"textures/blocks/conduit_open",
"textures/blocks/conduit_closed",
"textures/blocks/composter_top",
"textures/blocks/compost",
"textures/blocks/compost_ready",
"textures/blocks/composter_side",
"textures/blocks/composter_bottom",
"textures/blocks/coral_plant_blue",
"textures/blocks/coral_plant_pink",
"textures/blocks/coral_plant_purple",
"textures/blocks/coral_plant_red",
"textures/blocks/coral_plant_yellow",
"textures/blocks/coral_plant_blue_dead",
"textures/blocks/coral_plant_pink_dead",
"textures/blocks/coral_plant_purple_dead",
"textures/blocks/coral_plant_red_dead",
"textures/blocks/coral_plant_yellow_dead",
"textures/blocks/coral_fan_blue",
"textures/blocks/coral_fan_red",
"textures/blocks/coral_fan_pink",
"textures/blocks/coral_fan_purple",
"textures/blocks/coral_fan_yellow",
"textures/blocks/coral_fan_blue_dead",
"textures/blocks/coral_fan_red_dead",
"textures/blocks/coral_fan_pink_dead",
"textures/blocks/coral_fan_purple_dead",
"textures/blocks/coral_fan_yellow_dead",
"textures/blocks/coral_blue",
"textures/blocks/coral_blue_dead",
"textures/blocks/coral_pink",
"textures/blocks/coral_pink_dead",
"textures/blocks/coral_purple",
"textures/blocks/coral_purple_dead",
"textures/blocks/coral_red",
"textures/blocks/coral_red_dead",
"textures/blocks/coral_yellow",
"textures/blocks/coral_yellow_dead",
"textures/blocks/crafting_table_front",
"textures/blocks/crafting_table_side",
"textures/blocks/crafting_table_top",
"textures/blocks/dark_oak_trapdoor",
"textures/blocks/daylight_detector_inverted_top",
"textures/blocks/daylight_detector_side",
"textures/blocks/daylight_detector_top",
"textures/blocks/deadbush",
"textures/blocks/diamond_block",
"textures/blocks/diamond_ore",
"textures/blocks/dirt",
"textures/blocks/dirt_podzol_side",
"textures/blocks/dirt_podzol_top",
"textures/blocks/dispenser_front_horizontal",
"textures/blocks/dispenser_front_vertical",
"textures/blocks/door_acacia_lower",
"textures/blocks/door_acacia_upper",
"textures/blocks/door_birch_lower",
"textures/blocks/door_birch_upper",
"textures/blocks/door_dark_oak_lower",
"textures/blocks/door_dark_oak_upper",
"textures/blocks/door_iron_lower",
"textures/blocks/door_iron_upper",
"textures/blocks/door_jungle_lower",
"textures/blocks/door_jungle_upper",
"textures/blocks/door_spruce_lower",
"textures/blocks/door_spruce_upper",
"textures/blocks/door_wood_lower",
"textures/blocks/door_wood_upper",
"textures/blocks/double_plant_fern_bottom",
"textures/blocks/double_plant_fern_carried",
"textures/blocks/double_plant_fern_top",
"textures/blocks/double_plant_grass_bottom",
"textures/blocks/double_plant_grass_carried",
"textures/blocks/double_plant_grass_top",
"textures/blocks/double_plant_paeonia_bottom",
"textures/blocks/double_plant_paeonia_top",
"textures/blocks/double_plant_rose_bottom",
"textures/blocks/double_plant_rose_top",
"textures/blocks/double_plant_sunflower_back",
"textures/blocks/double_plant_sunflower_bottom",
"textures/blocks/double_plant_sunflower_front",
"textures/blocks/double_plant_sunflower_top",
"textures/blocks/double_plant_syringa_bottom",
"textures/blocks/double_plant_syringa_top",
"textures/blocks/dragon_egg",
"textures/blocks/dropper_front_horizontal",
"textures/blocks/dropper_front_vertical",
"textures/blocks/emerald_block",
"textures/blocks/emerald_ore",
"textures/blocks/enchanting_table_bottom",
"textures/blocks/enchanting_table_side",
"textures/blocks/enchanting_table_top",
"textures/blocks/ender_chest_front",
"textures/blocks/ender_chest_side",
"textures/blocks/ender_chest_top",
"textures/blocks/endframe_eye",
"textures/blocks/endframe_side",
"textures/blocks/endframe_top",
"textures/blocks/end_bricks",
"textures/blocks/end_gateway",
"textures/blocks/end_portal",
"textures/blocks/end_rod",
"textures/blocks/end_stone",
"textures/blocks/farmland_dry",
"textures/blocks/farmland_wet",
"textures/blocks/fern",
"textures/blocks/fern_carried",
"textures/blocks/fire_0",
"textures/blocks/fire_0_placeholder",
"textures/blocks/fire_1",
"textures/blocks/fire_1_placeholder",
"textures/blocks/fletcher_table_side1",
"textures/blocks/fletcher_table_side2",
"textures/blocks/fletcher_table_top",
"textures/blocks/barrel_bottom",
"textures/blocks/barrel_side",
"textures/blocks/barrel_top",
"textures/blocks/barrel_top_open",
"textures/blocks/flower_allium",
"textures/blocks/flower_blue_orchid",
"textures/blocks/flower_cornflower",
"textures/blocks/flower_dandelion",
"textures/blocks/flower_houstonia",
"textures/blocks/flower_lily_of_the_valley",
"textures/blocks/flower_oxeye_daisy",
"textures/blocks/flower_paeonia",
"textures/blocks/flower_pot",
"textures/blocks/flower_rose",
"textures/blocks/flower_rose_blue",
"textures/blocks/flower_tulip_orange",
"textures/blocks/flower_tulip_pink",
"textures/blocks/flower_tulip_red",
"textures/blocks/flower_tulip_white",
"textures/blocks/flower_wither_rose",
"textures/blocks/frosted_ice_0",
"textures/blocks/frosted_ice_1",
"textures/blocks/frosted_ice_2",
"textures/blocks/frosted_ice_3",
"textures/blocks/furnace_front_off",
"textures/blocks/furnace_front_on",
"textures/blocks/furnace_side",
"textures/blocks/furnace_top",
"textures/blocks/glass",
"textures/blocks/glass_white",
"textures/blocks/glass_orange",
"textures/blocks/glass_magenta",
"textures/blocks/glass_light_blue",
"textures/blocks/glass_yellow",
"textures/blocks/glass_lime",
"textures/blocks/glass_pink",
"textures/blocks/glass_gray",
"textures/blocks/glass_silver",
"textures/blocks/glass_cyan",
"textures/blocks/glass_purple",
"textures/blocks/glass_blue",
"textures/blocks/glass_brown",
"textures/blocks/glass_green",
"textures/blocks/glass_red",
"textures/blocks/glass_black",
"textures/blocks/glass_pane_top",
"textures/blocks/glass_pane_top_white",
"textures/blocks/glass_pane_top_orange",
"textures/blocks/glass_pane_top_magenta",
"textures/blocks/glass_pane_top_light_blue",
"textures/blocks/glass_pane_top_yellow",
"textures/blocks/glass_pane_top_lime",
"textures/blocks/glass_pane_top_pink",
"textures/blocks/glass_pane_top_gray",
"textures/blocks/glass_pane_top_silver",
"textures/blocks/glass_pane_top_cyan",
"textures/blocks/glass_pane_top_purple",
"textures/blocks/glass_pane_top_blue",
"textures/blocks/glass_pane_top_brown",
"textures/blocks/glass_pane_top_green",
"textures/blocks/glass_pane_top_red",
"textures/blocks/glass_pane_top_black",
"textures/blocks/glazed_terracotta_black",
"textures/blocks/glazed_terracotta_blue",
"textures/blocks/glazed_terracotta_brown",
"textures/blocks/glazed_terracotta_cyan",
"textures/blocks/glazed_terracotta_gray",
"textures/blocks/glazed_terracotta_green",
"textures/blocks/glazed_terracotta_light_blue",
"textures/blocks/glazed_terracotta_lime",
"textures/blocks/glazed_terracotta_magenta",
"textures/blocks/glazed_terracotta_orange",
"textures/blocks/glazed_terracotta_pink",
"textures/blocks/glazed_terracotta_purple",
"textures/blocks/glazed_terracotta_red",
"textures/blocks/glazed_terracotta_silver",
"textures/blocks/glazed_terracotta_white",
"textures/blocks/glazed_terracotta_yellow",
"textures/blocks/glowing_obsidian",
"textures/blocks/glowstone",
"textures/blocks/gold_block",
"textures/blocks/gold_ore",
"textures/blocks/grass_carried",
"textures/blocks/grass_path_side",
"textures/blocks/grass_path_top",
"textures/blocks/grass_side",
"textures/blocks/grass_side_carried",
"textures/blocks/grass_side_snowed",
"textures/blocks/grass_side_snowed",
"textures/blocks/grass_top",
"textures/blocks/gravel",
"textures/blocks/grindstone_pivot",
"textures/blocks/grindstone_round",
"textures/blocks/grindstone_side",
"textures/blocks/hardened_clay",
"textures/blocks/hardened_clay_stained_black",
"textures/blocks/hardened_clay_stained_blue",
"textures/blocks/hardened_clay_stained_brown",
"textures/blocks/hardened_clay_stained_cyan",
"textures/blocks/hardened_clay_stained_gray",
"textures/blocks/hardened_clay_stained_green",
"textures/blocks/hardened_clay_stained_light_blue",
"textures/blocks/hardened_clay_stained_lime",
"textures/blocks/hardened_clay_stained_magenta",
"textures/blocks/hardened_clay_stained_orange",
"textures/blocks/hardened_clay_stained_pink",
"textures/blocks/hardened_clay_stained_purple",
"textures/blocks/hardened_clay_stained_red",
"textures/blocks/hardened_clay_stained_silver",
"textures/blocks/hardened_clay_stained_white",
"textures/blocks/hardened_clay_stained_yellow",
"textures/blocks/hay_block_side",
"textures/blocks/hay_block_top",
"textures/blocks/hopper_inside",
"textures/blocks/hopper_outside",
"textures/blocks/hopper_top",
"textures/blocks/ice",
"textures/blocks/ice_packed",
"textures/blocks/iron_bars",
"textures/blocks/iron_block",
"textures/blocks/iron_ore",
"textures/blocks/iron_trapdoor",
"textures/blocks/itemframe_background",
"textures/blocks/jigsaw_back",
"textures/blocks/jigsaw_front",
"textures/blocks/jigsaw_lock",
"textures/blocks/jigsaw_side",
"textures/blocks/jukebox_side",
"textures/blocks/jukebox_top",
"textures/blocks/jungle_trapdoor",
"textures/blocks/kelp_a",
"textures/blocks/kelp_b",
"textures/blocks/kelp_c",
"textures/blocks/kelp_d",
"textures/blocks/kelp_top",
"textures/blocks/kelp_top_bulb",
"textures/blocks/dried_kelp_top",
"textures/blocks/dried_kelp_side_a",
"textures/blocks/dried_kelp_side_b",
"textures/blocks/ladder",
"textures/blocks/lantern",
"textures/blocks/lapis_block",
"textures/blocks/lapis_ore",
"textures/blocks/lava_flow",
"textures/blocks/lava_placeholder",
"textures/blocks/lava_still",
"textures/blocks/leaves_acacia",
"textures/blocks/leaves_acacia_carried",
"textures/blocks/leaves_acacia_opaque",
"textures/blocks/leaves_big_oak",
"textures/blocks/leaves_big_oak_carried",
"textures/blocks/leaves_big_oak_opaque",
"textures/blocks/leaves_birch",
"textures/blocks/leaves_birch_carried",
"textures/blocks/leaves_birch_opaque",
"textures/blocks/leaves_jungle",
"textures/blocks/leaves_jungle_carried",
"textures/blocks/leaves_jungle_opaque",
"textures/blocks/leaves_oak",
"textures/blocks/leaves_oak_carried",
"textures/blocks/leaves_oak_opaque",
"textures/blocks/leaves_spruce",
"textures/blocks/leaves_spruce_carried",
"textures/blocks/leaves_spruce_opaque",
"textures/blocks/lectern_base",
"textures/blocks/lectern_front",
"textures/blocks/lectern_sides",
"textures/blocks/lectern_top",
"textures/blocks/lever",
"textures/blocks/log_acacia",
"textures/blocks/log_acacia_top",
"textures/blocks/log_big_oak",
"textures/blocks/log_big_oak_top",
"textures/blocks/log_birch",
"textures/blocks/log_birch_top",
"textures/blocks/log_jungle",
"textures/blocks/log_jungle_top",
"textures/blocks/log_oak",
"textures/blocks/log_oak_top",
"textures/blocks/log_spruce",
"textures/blocks/log_spruce_top",
"textures/blocks/loom_bottom",
"textures/blocks/loom_front",
"textures/blocks/loom_side",
"textures/blocks/loom_top",
"textures/blocks/magma",
"textures/blocks/bubble_column_outer_a",
"textures/blocks/bubble_column_outer_b",
"textures/blocks/bubble_column_outer_c",
"textures/blocks/bubble_column_outer_d",
"textures/blocks/bubble_column_outer_e",
"textures/blocks/bubble_column_outer_f",
"textures/blocks/bubble_column_outer_g",
"textures/blocks/bubble_column_outer_h",
"textures/blocks/bubble_column_inner_a",
"textures/blocks/bubble_column_inner_b",
"textures/blocks/bubble_column_up_top_a",
"textures/blocks/bubble_column_up_top_b",
"textures/blocks/bubble_column_up_top_c",
"textures/blocks/bubble_column_up_top_d",
"textures/blocks/bubble_column_down_top_a",
"textures/blocks/bubble_column_down_top_b",
"textures/blocks/bubble_column_down_top_c",
"textures/blocks/bubble_column_down_top_d",
"textures/blocks/melon_side",
"textures/blocks/melon_stem_connected",
"textures/blocks/melon_stem_disconnected",
"textures/blocks/melon_top",
"textures/blocks/missing_tile",
"textures/blocks/mob_spawner",
"textures/blocks/mushroom_block_inside",
"textures/blocks/mushroom_block_skin_brown",
"textures/blocks/mushroom_block_skin_red",
"textures/blocks/mushroom_block_skin_stem",
"textures/blocks/mushroom_brown",
"textures/blocks/mushroom_red",
"textures/blocks/mycelium_side",
"textures/blocks/mycelium_top",
"textures/blocks/netherrack",
"textures/blocks/nether_brick",
"textures/blocks/nether_wart_block",
"textures/blocks/nether_wart_stage_0",
"textures/blocks/nether_wart_stage_1",
"textures/blocks/nether_wart_stage_2",
"textures/blocks/noteblock",
"textures/blocks/observer_back",
"textures/blocks/observer_back_lit",
"textures/blocks/observer_front",
"textures/blocks/observer_side",
"textures/blocks/observer_top",
"textures/blocks/obsidian",
"textures/blocks/piston_bottom",
"textures/blocks/piston_inner",
"textures/blocks/piston_side",
"textures/blocks/piston_top_normal",
"textures/blocks/piston_top_sticky",
"textures/blocks/planks_acacia",
"textures/blocks/planks_big_oak",
"textures/blocks/planks_birch",
"textures/blocks/planks_jungle",
"textures/blocks/planks_oak",
"textures/blocks/planks_spruce",
"textures/blocks/portal",
"textures/blocks/portal_placeholder",
"textures/blocks/potatoes_stage_0",
"textures/blocks/potatoes_stage_1",
"textures/blocks/potatoes_stage_2",
"textures/blocks/potatoes_stage_3",
"textures/blocks/prismarine_bricks",
"textures/blocks/prismarine_dark",
"textures/blocks/prismarine_rough",
"textures/blocks/pumpkin_face_off",
"textures/blocks/pumpkin_face_on",
"textures/blocks/pumpkin_side",
"textures/blocks/pumpkin_stem_connected",
"textures/blocks/pumpkin_stem_disconnected",
"textures/blocks/pumpkin_top",
"textures/blocks/purpur_block",
"textures/blocks/purpur_pillar",
"textures/blocks/purpur_pillar_top",
"textures/blocks/quartz_block_bottom",
"textures/blocks/quartz_block_chiseled",
"textures/blocks/quartz_block_chiseled_top",
"textures/blocks/quartz_block_lines",
"textures/blocks/quartz_block_lines_top",
"textures/blocks/quartz_block_side",
"textures/blocks/quartz_block_top",
"textures/blocks/quartz_ore",
"textures/blocks/rail_activator",
"textures/blocks/rail_activator_powered",
"textures/blocks/rail_detector",
"textures/blocks/rail_detector_powered",
"textures/blocks/rail_golden",
"textures/blocks/rail_golden_powered",
"textures/blocks/rail_normal",
"textures/blocks/rail_normal_turned",
"textures/blocks/reactor_core_stage_0",
"textures/blocks/reactor_core_stage_1",
"textures/blocks/reactor_core_stage_2",
"textures/blocks/redstone_block",
"textures/blocks/redstone_dust_cross",
"textures/blocks/redstone_dust_line",
"textures/blocks/redstone_lamp_off",
"textures/blocks/redstone_lamp_on",
"textures/blocks/redstone_ore",
"textures/blocks/redstone_torch_off",
"textures/blocks/redstone_torch_on",
"textures/blocks/red_nether_brick",
"textures/blocks/red_sand",
"textures/blocks/red_sandstone_bottom",
"textures/blocks/red_sandstone_carved",
"textures/blocks/red_sandstone_normal",
"textures/blocks/red_sandstone_smooth",
"textures/blocks/red_sandstone_top",
"textures/blocks/reeds",
"textures/blocks/repeater_off",
"textures/blocks/repeater_on",
"textures/blocks/repeating_command_block_back",
"textures/blocks/repeating_command_block_back_mipmap",
"textures/blocks/repeating_command_block_conditional",
"textures/blocks/repeating_command_block_conditional_mipmap",
"textures/blocks/repeating_command_block_front",
"textures/blocks/repeating_command_block_front_mipmap",
"textures/blocks/repeating_command_block_side",
"textures/blocks/repeating_command_block_side_mipmap",
"textures/blocks/sand",
"textures/blocks/sandstone_bottom",
"textures/blocks/sandstone_carved",
"textures/blocks/sandstone_normal",
"textures/blocks/sandstone_smooth",
"textures/blocks/sandstone_top",
"textures/blocks/sapling_acacia",
"textures/blocks/sapling_birch",
"textures/blocks/sapling_jungle",
"textures/blocks/sapling_oak",
"textures/blocks/sapling_roofed_oak",
"textures/blocks/sapling_spruce",
"textures/blocks/scaffolding_top",
"textures/blocks/scaffolding_bottom",
"textures/blocks/scaffolding_side",
"textures/blocks/sea_lantern",
"textures/blocks/seagrass_carried",
"textures/blocks/seagrass",
"textures/blocks/seagrass_doubletall_bottom_a",
"textures/blocks/seagrass_doubletall_bottom_b",
"textures/blocks/seagrass_doubletall_top_a",
"textures/blocks/seagrass_doubletall_top_b",
"textures/blocks/sea_pickle",
"textures/blocks/shulker_top_black",
"textures/blocks/shulker_top_blue",
"textures/blocks/shulker_top_brown",
"textures/blocks/shulker_top_cyan",
"textures/blocks/shulker_top_gray",
"textures/blocks/shulker_top_green",
"textures/blocks/shulker_top_light_blue",
"textures/blocks/shulker_top_lime",
"textures/blocks/shulker_top_magenta",
"textures/blocks/shulker_top_orange",
"textures/blocks/shulker_top_pink",
"textures/blocks/shulker_top_purple",
"textures/blocks/shulker_top_red",
"textures/blocks/shulker_top_silver",
"textures/blocks/shulker_top_undyed",
"textures/blocks/shulker_top_white",
"textures/blocks/shulker_top_yellow",
"textures/blocks/smithing_table_bottom",
"textures/blocks/smithing_table_front",
"textures/blocks/smithing_table_side",
"textures/blocks/smithing_table_top",
"textures/blocks/slime",
"textures/blocks/smoker_bottom",
"textures/blocks/smoker_front_off",
"textures/blocks/smoker_front_on",
"textures/blocks/smoker_side",
"textures/blocks/smoker_top",
"textures/blocks/snow",
"textures/blocks/soul_sand",
"textures/blocks/sponge",
"textures/blocks/sponge_wet",
"textures/blocks/spruce_trapdoor",
"textures/blocks/stone",
"textures/blocks/stonebrick",
"textures/blocks/stonebrick_carved",
"textures/blocks/stonebrick_cracked",
"textures/blocks/stonebrick_mossy",
"textures/blocks/stonecutter_bottom",
"textures/blocks/stonecutter_other_side",
"textures/blocks/stonecutter_side",
"textures/blocks/stonecutter_top",
"textures/blocks/stonecutter2_bottom",
"textures/blocks/stonecutter2_saw",
"textures/blocks/stonecutter2_side",
"textures/blocks/stonecutter2_top",
"textures/blocks/stone_andesite",
"textures/blocks/stone_andesite_smooth",
"textures/blocks/stone_diorite",
"textures/blocks/stone_diorite_smooth",
"textures/blocks/stone_granite",
"textures/blocks/stone_granite_smooth",
"textures/blocks/stone_slab_side",
"textures/blocks/stone_slab_top",
"textures/blocks/stripped_acacia_log",
"textures/blocks/stripped_acacia_log_top",
"textures/blocks/stripped_birch_log",
"textures/blocks/stripped_birch_log_top",
"textures/blocks/stripped_dark_oak_log",
"textures/blocks/stripped_dark_oak_log_top",
"textures/blocks/stripped_jungle_log",
"textures/blocks/stripped_jungle_log_top",
"textures/blocks/stripped_oak_log",
"textures/blocks/stripped_oak_log_top",
"textures/blocks/stripped_spruce_log",
"textures/blocks/stripped_spruce_log_top",
"textures/blocks/structure_air",
"textures/blocks/structure_block",
"textures/blocks/structure_block_corner",
"textures/blocks/structure_block_data",
"textures/blocks/structure_block_export",
"textures/blocks/structure_block_load",
"textures/blocks/structure_block_save",
"textures/blocks/structure_void",
"textures/blocks/sweet_berry_bush_stage0",
"textures/blocks/sweet_berry_bush_stage1",
"textures/blocks/sweet_berry_bush_stage2",
"textures/blocks/sweet_berry_bush_stage3",
"textures/blocks/tallgrass",
"textures/blocks/tallgrass",
"textures/blocks/tallgrass_carried",
"textures/blocks/tnt_bottom",
"textures/blocks/tnt_side",
"textures/blocks/tnt_top",
"textures/blocks/torch_on",
"textures/blocks/trapdoor",
"textures/blocks/trapped_chest_front",
"textures/blocks/trip_wire",
"textures/blocks/trip_wire_source",
"textures/blocks/turtle_egg_not_cracked",
"textures/blocks/turtle_egg_slightly_cracked",
"textures/blocks/turtle_egg_very_cracked",
"textures/blocks/vine",
"textures/blocks/vine_carried",
"textures/blocks/waterlily",
"textures/blocks/water_flow",
"textures/blocks/water_flow_grey",
"textures/blocks/water_placeholder",
"textures/blocks/water_still",
"textures/blocks/water_still_grey",
"textures/blocks/web",
"textures/blocks/wheat_stage_0",
"textures/blocks/wheat_stage_1",
"textures/blocks/wheat_stage_2",
"textures/blocks/wheat_stage_3",
"textures/blocks/wheat_stage_4",
"textures/blocks/wheat_stage_5",
"textures/blocks/wheat_stage_6",
"textures/blocks/wheat_stage_7",
"textures/blocks/wool_colored_black",
"textures/blocks/wool_colored_blue",
"textures/blocks/wool_colored_brown",
"textures/blocks/wool_colored_cyan",
"textures/blocks/wool_colored_gray",
"textures/blocks/wool_colored_green",
"textures/blocks/wool_colored_light_blue",
"textures/blocks/wool_colored_lime",
"textures/blocks/wool_colored_magenta",
"textures/blocks/wool_colored_orange",
"textures/blocks/wool_colored_pink",
"textures/blocks/wool_colored_purple",
"textures/blocks/wool_colored_red",
"textures/blocks/wool_colored_silver",
"textures/blocks/wool_colored_white",
"textures/blocks/wool_colored_yellow",
"textures/colormap/birch",
"textures/colormap/evergreen",
"textures/colormap/foliage",
"textures/colormap/grass",
"textures/colormap/swamp_foliage",
"textures/colormap/swamp_grass",
"textures/entity/agent",
"textures/entity/alex",
"textures/entity/arrows",
"textures/entity/banner/banner",
"textures/entity/banner/banner_pattern_illager",
"textures/entity/bat",
"textures/entity/beacon_beam",
"textures/entity/bed/black",
"textures/entity/bed/blue",
"textures/entity/bed/brown",
"textures/entity/bed/cyan",
"textures/entity/bed/gray",
"textures/entity/bed/green",
"textures/entity/bed/light_blue",
"textures/entity/bed/lime",
"textures/entity/bed/magenta",
"textures/entity/bed/orange",
"textures/entity/bed/pink",
"textures/entity/bed/purple",
"textures/entity/bed/red",
"textures/entity/bed/silver",
"textures/entity/bed/white",
"textures/entity/bed/yellow",
"textures/entity/blaze",
"textures/entity/boat/boat_acacia",
"textures/entity/boat/boat_birch",
"textures/entity/boat/boat_darkoak",
"textures/entity/boat/boat_jungle",
"textures/entity/boat/boat_oak",
"textures/entity/boat/boat_spruce",
"textures/entity/camera_tripod",
"textures/entity/cat/allblackcat",
"textures/entity/cat/allblackcat_tame",
"textures/entity/cat/blackcat",
"textures/entity/cat/britishshorthair",
"textures/entity/cat/britishshorthair_tame",
"textures/entity/cat/calico",
"textures/entity/cat/calico_tame",
"textures/entity/cat/jellie",
"textures/entity/cat/jellie_tame",
"textures/entity/cat/ocelot",
"textures/entity/cat/persian",
"textures/entity/cat/persian_tame",
"textures/entity/cat/ragdoll",
"textures/entity/cat/ragdoll_tame",
"textures/entity/cat/red",
"textures/entity/cat/redtabby",
"textures/entity/cat/redtabby_tame",
"textures/entity/cat/siamese",
"textures/entity/cat/siamesecat",
"textures/entity/cat/siamesecat_tame",
"textures/entity/cat/tabby",
"textures/entity/cat/tabby_tame",
"textures/entity/cat/tuxedo",
"textures/entity/cat/tuxedo_tame",
"textures/entity/cat/white",
"textures/entity/cat/white_tame",
"textures/entity/char",
"textures/entity/chest/double_normal",
"textures/entity/chest/ender",
"textures/entity/chest/normal",
"textures/entity/chest/trapped",
"textures/entity/chest/trapped_double",
"textures/entity/chicken",
"textures/entity/cow/brown_mooshroom",
"textures/entity/cow/cow",
"textures/entity/cow/mooshroom",
"textures/entity/creeper/creeper",
"textures/entity/creeper/creeper_armor",
"textures/entity/dolphin",
"textures/entity/dragon/dragon",
"textures/entity/dragon/dragon_exploding",
"textures/entity/dragon/dragon_eyes",
"textures/entity/dummy",
"textures/entity/enchanting_table_book",
"textures/entity/enchanting_table_book_shadow",
"textures/entity/endercrystal/endercrystal",
"textures/entity/endercrystal/endercrystal_beam",
"textures/entity/enderman/enderman",
"textures/entity/endermite",
"textures/entity/end_portal",
"textures/entity/experience_orb",
"textures/entity/fireworks",
"textures/entity/fish/clownfish",
"textures/entity/fish/cod",
"textures/entity/fish/pufferfish",
"textures/entity/fish/salmon",
"textures/entity/panda/panda",
"textures/entity/panda/panda_aggressive",
"textures/entity/panda/panda_brown",
"textures/entity/panda/panda_lazy",
"textures/entity/panda/panda_playful",
"textures/entity/panda/panda_sneezy",
"textures/entity/panda/panda_worried",
"textures/entity/fishhook",
"textures/entity/ghast/ghast",
"textures/entity/ghast/ghast_shooting",
"textures/entity/guardian",
"textures/entity/guardian_beam",
"textures/entity/guardian_elder",
"textures/entity/horse/armor/horse_armor_diamond",
"textures/entity/horse/armor/horse_armor_gold",
"textures/entity/horse/armor/horse_armor_iron",
"textures/entity/horse/armor/horse_armor_leather",
"textures/entity/horse/armor/horse_armor_none",
"textures/entity/horse/donkey",
"textures/entity/horse/horse_black",
"textures/entity/horse/horse_brown",
"textures/entity/horse/horse_chestnut",
"textures/entity/horse/horse_creamy",
"textures/entity/horse/horse_darkbrown",
"textures/entity/horse/horse_gray",
"textures/entity/horse/horse_markings_blackdots",
"textures/entity/horse/horse_markings_none",
"textures/entity/horse/horse_markings_white",
"textures/entity/horse/horse_markings_whitedots",
"textures/entity/horse/horse_markings_whitefield",
"textures/entity/horse/horse_skeleton",
"textures/entity/horse/horse_white",
"textures/entity/horse/horse_zombie",
"textures/entity/horse/mule",
"textures/entity/horse2/armor/horse_armor_diamond",
"textures/entity/horse2/armor/horse_armor_gold",
"textures/entity/horse2/armor/horse_armor_iron",
"textures/entity/horse2/armor/horse_armor_leather",
"textures/entity/horse2/armor/horse_armor_none",
"textures/entity/horse2/donkey",
"textures/entity/horse2/horse_black",
"textures/entity/horse2/horse_brown",
"textures/entity/horse2/horse_chestnut",
"textures/entity/horse2/horse_creamy",
"textures/entity/horse2/horse_darkbrown",
"textures/entity/horse2/horse_gray",
"textures/entity/horse2/horse_markings_blackdots",
"textures/entity/horse2/horse_markings_none",
"textures/entity/horse2/horse_markings_white",
"textures/entity/horse2/horse_markings_whitedots",
"textures/entity/horse2/horse_markings_whitefield",
"textures/entity/horse2/horse_skeleton",
"textures/entity/horse2/horse_white",
"textures/entity/horse2/horse_zombie",
"textures/entity/horse2/mule",
"textures/entity/illager/evoker",
"textures/entity/illager/fangs",
"textures/entity/illager/ravager",
"textures/entity/iron_golem",
"textures/entity/lead_knot",
"textures/entity/lead_rope",
"textures/entity/llama/decor/decor_black",
"textures/entity/llama/decor/decor_blue",
"textures/entity/llama/decor/decor_brown",
"textures/entity/llama/decor/decor_cyan",
"textures/entity/llama/decor/decor_gray",
"textures/entity/llama/decor/decor_green",
"textures/entity/llama/decor/decor_light_blue",
"textures/entity/llama/decor/decor_lime",
"textures/entity/llama/decor/decor_magenta",
"textures/entity/llama/decor/decor_none",
"textures/entity/llama/decor/decor_orange",
"textures/entity/llama/decor/decor_pink",
"textures/entity/llama/decor/decor_purple",
"textures/entity/llama/decor/decor_red",
"textures/entity/llama/decor/decor_silver",
"textures/entity/llama/decor/decor_white",
"textures/entity/llama/decor/decor_yellow",
"textures/entity/llama/decor/trader_llama_decor",
"textures/entity/llama/llama",
"textures/entity/llama/llama_brown",
"textures/entity/llama/llama_creamy",
"textures/entity/llama/llama_gray",
"textures/entity/llama/llama_white",
"textures/entity/llama/spit",
"textures/entity/minecart",
"textures/entity/npc/npc_1",
"textures/entity/npc/npc_2",
"textures/entity/npc/npc_3",
"textures/entity/npc/npc_4",
"textures/entity/npc/npc_5",
"textures/entity/npc/npc_6",
"textures/entity/npc/npc_7",
"textures/entity/npc/npc_8",
"textures/entity/npc/npc_9",
"textures/entity/npc/npc_10",
"textures/entity/npc/npc_teacher_1",
"textures/entity/npc/npc_teacher_2",
"textures/entity/npc/npc_teacher_3",
"textures/entity/npc/npc_teacher_4",
"textures/entity/npc/npc_teacher_5",
"textures/entity/npc/npc_construction_1",
"textures/entity/npc/npc_construction_2",
"textures/entity/npc/npc_construction_3",
"textures/entity/npc/npc_construction_4",
"textures/entity/npc/npc_construction_5",
"textures/entity/npc/npc_apiary_1",
"textures/entity/npc/npc_apiary_2",
"textures/entity/npc/npc_apiary_3",
"textures/entity/npc/npc_apiary_4",
"textures/entity/npc/npc_apiary_5",
"textures/entity/npc/npc_scientist_1",
"textures/entity/npc/npc_scientist_2",
"textures/entity/npc/npc_scientist_3",
"textures/entity/npc/npc_scientist_4",
"textures/entity/npc/npc_scientist_5",
"textures/entity/npc/npc_scientist_6",
"textures/entity/npc/npc_scientist_7",
"textures/entity/npc/npc_scientist_8",
"textures/entity/npc/npc_scientist_9",
"textures/entity/npc/npc_scientist_10",
"textures/entity/npc/npc_Agriculture_1",
"textures/entity/npc/npc_Agriculture_2",
"textures/entity/npc/npc_Agriculture_3",
"textures/entity/npc/npc_Agriculture_4",
"textures/entity/npc/npc_Agriculture_5",
"textures/entity/npc/npc_Agriculture_6",
"textures/entity/npc/npc_Agriculture_7",
"textures/entity/npc/npc_Agriculture_8",
"textures/entity/npc/npc_Agriculture_9",
"textures/entity/npc/npc_Agriculture_10",
"textures/entity/npc/npc_BusinessMobs_1",
"textures/entity/npc/npc_BusinessMobs_2",
"textures/entity/npc/npc_BusinessMobs_3",
"textures/entity/npc/npc_BusinessMobs_4",
"textures/entity/npc/npc_BusinessMobs_5",
"textures/entity/npc/npc_EverydayBusiness_1",
"textures/entity/npc/npc_EverydayBusiness_2",
"textures/entity/npc/npc_EverydayBusiness_3",
"textures/entity/npc/npc_EverydayBusiness_4",
"textures/entity/npc/npc_EverydayBusiness_5",
"textures/entity/npc/npc_Kiosk_1",
"textures/entity/npc/npc_Kiosk_2",
"textures/entity/npc/npc_Kiosk_3",
"textures/entity/npc/npc_Kiosk_4",
"textures/entity/npc/npc_Kiosk_5",
"textures/entity/loyalty_rope",
"textures/entity/phantom",
"textures/entity/pillager",
"textures/entity/pig/pig",
"textures/entity/pig/pigzombie",
"textures/entity/pig/pig_saddle",
"textures/entity/pistonarm/pistonArm",
"textures/entity/pistonarm/pistonArmSticky",
"textures/entity/polarbear",
"textures/entity/rabbit/blackrabbit",
"textures/entity/rabbit/brown",
"textures/entity/rabbit/gold",
"textures/entity/rabbit/salt",
"textures/entity/rabbit/toast",
"textures/entity/rabbit/white",
"textures/entity/rabbit/white_splotched",
"textures/entity/saddle",
"textures/entity/sheep/sheep",
"textures/entity/shield",
"textures/entity/shulker/shulker_black",
"textures/entity/shulker/shulker_blue",
"textures/entity/shulker/shulker_brown",
"textures/entity/shulker/shulker_cyan",
"textures/entity/shulker/shulker_gray",
"textures/entity/shulker/shulker_green",
"textures/entity/shulker/shulker_light_blue",
"textures/entity/shulker/shulker_lime",
"textures/entity/shulker/shulker_magenta",
"textures/entity/shulker/shulker_orange",
"textures/entity/shulker/shulker_pink",
"textures/entity/shulker/shulker_purple",
"textures/entity/shulker/shulker_red",
"textures/entity/shulker/shulker_silver",
"textures/entity/shulker/shulker_undyed",
"textures/entity/shulker/shulker_white",
"textures/entity/shulker/shulker_yellow",
"textures/entity/shulker/spark",
"textures/entity/sign",
"textures/entity/silverfish",
"textures/entity/skeleton/skeleton",
"textures/entity/skeleton/stray",
"textures/entity/skeleton/stray_overlay",
"textures/entity/skeleton/wither_skeleton",
"textures/entity/skulls/creeper",
"textures/entity/skulls/skeleton",
"textures/entity/skulls/wither_skeleton",
"textures/entity/skulls/zombie",
"textures/entity/slime/magmacube",
"textures/entity/slime/slime",
"textures/entity/snow_golem",
"textures/entity/spider/cave_spider",
"textures/entity/spider/spider",
"textures/entity/squid",
"textures/entity/steve",
"textures/entity/trident",
"textures/entity/sea_turtle",
"textures/entity/vex/vex",
"textures/entity/vex/vex_charging",
"textures/entity/villager/butcher",
"textures/entity/villager/farmer",
"textures/entity/villager/librarian",
"textures/entity/villager/priest",
"textures/entity/villager/smith",
"textures/entity/villager/villager",
"textures/entity/villager2/villager",
"textures/entity/villager2/biomes/biome_desert",
"textures/entity/villager2/biomes/biome_jungle",
"textures/entity/villager2/biomes/biome_plains",
"textures/entity/villager2/biomes/biome_savanna",
"textures/entity/villager2/biomes/biome_snow",
"textures/entity/villager2/biomes/biome_swamp",
"textures/entity/villager2/biomes/biome_taiga",
"textures/entity/villager2/levels/level_diamond",
"textures/entity/villager2/levels/level_emerald",
"textures/entity/villager2/levels/level_gold",
"textures/entity/villager2/levels/level_iron",
"textures/entity/villager2/levels/level_stone",
"textures/entity/villager2/professions/armorer",
"textures/entity/villager2/professions/butcher",
"textures/entity/villager2/professions/cartographer",
"textures/entity/villager2/professions/cleric",
"textures/entity/villager2/professions/farmer",
"textures/entity/villager2/professions/fisherman",
"textures/entity/villager2/professions/fletcher",
"textures/entity/villager2/professions/leatherworker",
"textures/entity/villager2/professions/librarian",
"textures/entity/villager2/professions/nitwit",
"textures/entity/villager2/professions/shepherd",
"textures/entity/villager2/professions/stonemason",
"textures/entity/villager2/professions/toolsmith",
"textures/entity/villager2/professions/weaponsmith",
"textures/entity/vindicator",
"textures/entity/wandering_trader",
"textures/entity/witch",
"textures/entity/wither_boss/wither",
"textures/entity/wither_boss/wither_armor_white",
"textures/entity/wither_boss/wither_armor_blue",
"textures/entity/wither_boss/wither_invulnerable",
"textures/entity/wolf/wolf",
"textures/entity/wolf/wolf_angry",
"textures/entity/wolf/wolf_tame",
"textures/entity/zombie/drowned",
"textures/entity/zombie/husk",
"textures/entity/zombie/zombie",
"textures/entity/zombie_villager/zombie_butcher",
"textures/entity/zombie_villager/zombie_farmer",
"textures/entity/zombie_villager/zombie_librarian",
"textures/entity/zombie_villager/zombie_priest",
"textures/entity/zombie_villager/zombie_smith",
"textures/entity/zombie_villager/zombie_villager",
"textures/entity/zombie_villager2/zombie-villager",
"textures/entity/zombie_villager2/biomes/biome-desert-zombie",
"textures/entity/zombie_villager2/biomes/biome-jungle-zombie",
"textures/entity/zombie_villager2/biomes/biome-plains-zombie",
"textures/entity/zombie_villager2/biomes/biome-savanna-zombie",
"textures/entity/zombie_villager2/biomes/biome-snow-zombie",
"textures/entity/zombie_villager2/biomes/biome-swamp-zombie",
"textures/entity/zombie_villager2/biomes/biome-taiga-zombie",
"textures/entity/zombie_villager2/professions/armorer",
"textures/entity/zombie_villager2/professions/butcher",
"textures/entity/zombie_villager2/professions/cartographer",
"textures/entity/zombie_villager2/professions/cleric",
"textures/entity/zombie_villager2/professions/farmer",
"textures/entity/zombie_villager2/professions/fisherman",
"textures/entity/zombie_villager2/professions/fletcher",
"textures/entity/zombie_villager2/professions/leatherworker",
"textures/entity/zombie_villager2/professions/librarian",
"textures/entity/zombie_villager2/professions/nitwit",
"textures/entity/zombie_villager2/professions/shepherd",
"textures/entity/zombie_villager2/professions/stonemason",
"textures/entity/zombie_villager2/professions/toolsmith",
"textures/entity/zombie_villager2/professions/weaponsmith",
"textures/environment/clouds",
"textures/environment/destroy_stage_0",
"textures/environment/destroy_stage_1",
"textures/environment/destroy_stage_2",
"textures/environment/destroy_stage_3",
"textures/environment/destroy_stage_4",
"textures/environment/destroy_stage_5",
"textures/environment/destroy_stage_6",
"textures/environment/destroy_stage_7",
"textures/environment/destroy_stage_8",
"textures/environment/destroy_stage_9",
"textures/environment/end_portal_colors",
"textures/environment/end_sky",
"textures/environment/moon_phases",
"textures/environment/sun",
"textures/environment/weather",
"textures/flame_atlas",
"textures/forcefield_atlas",
"textures/gui/gui",
"textures/item/chalkboard/chalkboard_large",
"textures/item/chalkboard/chalkboard_medium",
"textures/item/chalkboard/chalkboard_small",
"textures/items/apple",
"textures/items/apple_golden",
"textures/items/armor_stand",
"textures/items/arrow",
"textures/items/bamboo",
"textures/items/banner_pattern",
"textures/items/bed_black",
"textures/items/bed_blue",
"textures/items/bed_brown",
"textures/items/bed_cyan",
"textures/items/bed_gray",
"textures/items/bed_green",
"textures/items/bed_light_blue",
"textures/items/bed_lime",
"textures/items/bed_magenta",
"textures/items/bed_orange",
"textures/items/bed_pink",
"textures/items/bed_purple",
"textures/items/bed_red",
"textures/items/bed_silver",
"textures/items/bed_white",
"textures/items/bed_yellow",
"textures/items/beef_cooked",
"textures/items/beef_raw",
"textures/items/beetroot",
"textures/items/beetroot_soup",
"textures/items/villagebell",
"textures/items/blaze_powder",
"textures/items/blaze_rod",
"textures/items/boat",
"textures/items/boat_acacia",
"textures/items/boat_birch",
"textures/items/boat_darkoak",
"textures/items/boat_jungle",
"textures/items/boat_oak",
"textures/items/boat_spruce",
"textures/items/bone",
"textures/items/book_enchanted",
"textures/items/book_normal",
"textures/items/book_portfolio",
"textures/items/book_writable",
"textures/items/book_written",
"textures/items/bowl",
"textures/items/bow_pulling_0",
"textures/items/bow_pulling_1",
"textures/items/bow_pulling_2",
"textures/items/bow_standby",
"textures/items/bread",
"textures/items/brewing_stand",
"textures/items/brick",
"textures/items/broken_elytra",
"textures/items/bucket_empty",
"textures/items/bucket_lava",
"textures/items/bucket_milk",
"textures/items/bucket_water",
"textures/items/bucket_cod",
"textures/items/bucket_salmon",
"textures/items/bucket_tropical",
"textures/items/bucket_pufferfish",
"textures/items/cake",
"textures/items/camera",
"textures/items/campfire",
"textures/items/carrot",
"textures/items/carrot_golden",
"textures/items/carrot_on_a_stick",
"textures/items/cauldron",
"textures/items/chainmail_boots",
"textures/items/chainmail_chestplate",
"textures/items/chainmail_helmet",
"textures/items/chainmail_leggings",
"textures/items/chalkboard_large",
"textures/items/chalkboard_medium",
"textures/items/chalkboard_small",
"textures/items/charcoal",
"textures/items/chicken_cooked",
"textures/items/chicken_raw",
"textures/items/chorus_fruit",
"textures/items/chorus_fruit_popped",
"textures/items/clay_ball",
"textures/items/clock_item",
"textures/items/coal",
"textures/items/comparator",
"textures/items/compass_atlas",
"textures/items/compass_item",
"textures/items/cookie",
"textures/items/crossbow_firework",
"textures/items/crossbow_standby",
"textures/items/crossbow_pulling_0",
"textures/items/crossbow_pulling_1",
"textures/items/crossbow_pulling_2",
"textures/items/crossbow_arrow",
"textures/items/diamond",
"textures/items/diamond_axe",
"textures/items/diamond_boots",
"textures/items/diamond_chestplate",
"textures/items/diamond_helmet",
"textures/items/diamond_hoe",
"textures/items/diamond_horse_armor",
"textures/items/diamond_leggings",
"textures/items/diamond_pickaxe",
"textures/items/diamond_shovel",
"textures/items/diamond_sword",
"textures/items/door_acacia",
"textures/items/door_birch",
"textures/items/door_dark_oak",
"textures/items/door_iron",
"textures/items/door_jungle",
"textures/items/door_spruce",
"textures/items/door_wood",
"textures/items/dragons_breath",
"textures/items/dragon_fireball",
"textures/items/dried_kelp",
"textures/items/dye_powder_black",
"textures/items/dye_powder_black_new",
"textures/items/dye_powder_blue",
"textures/items/dye_powder_blue_new",
"textures/items/dye_powder_brown",
"textures/items/dye_powder_brown_new",
"textures/items/dye_powder_cyan",
"textures/items/dye_powder_gray",
"textures/items/dye_powder_green",
"textures/items/dye_powder_light_blue",
"textures/items/dye_powder_lime",
"textures/items/dye_powder_magenta",
"textures/items/dye_powder_orange",
"textures/items/dye_powder_pink",
"textures/items/dye_powder_purple",
"textures/items/dye_powder_red",
"textures/items/dye_powder_silver",
"textures/items/dye_powder_white",
"textures/items/dye_powder_white_new",
"textures/items/dye_powder_yellow",
"textures/items/egg",
"textures/items/egg_agent",
"textures/items/egg_bat",
"textures/items/egg_blaze",
"textures/items/egg_cat",
"textures/items/egg_cave_spider",
"textures/items/egg_chicken",
"textures/items/egg_clownfish",
"textures/items/egg_cod",
"textures/items/egg_cow",
"textures/items/egg_creeper",
"textures/items/egg_dolphin",
"textures/items/egg_donkey",
"textures/items/egg_drowned",
"textures/items/egg_elderguardian",
"textures/items/egg_enderman",
"textures/items/egg_endermite",
"textures/items/egg_evoker",
"textures/items/egg_fox",
"textures/items/egg_ghast",
"textures/items/egg_guardian",
"textures/items/egg_horse",
"textures/items/egg_husk",
"textures/items/egg_lava_slime",
"textures/items/egg_llama",
"textures/items/egg_mask",
"textures/items/egg_mule",
"textures/items/egg_mushroomcow",
"textures/items/egg_npc",
"textures/items/egg_null",
"textures/items/egg_ocelot",
"textures/items/egg_panda",
"textures/items/egg_parrot",
"textures/items/egg_phantom",
"textures/items/egg_pig",
"textures/items/egg_pigzombie",
"textures/items/egg_pillager",
"textures/items/egg_polarbear",
"textures/items/egg_pufferfish",
"textures/items/egg_rabbit",
"textures/items/egg_ravager",
"textures/items/egg_salmon",
"textures/items/egg_sheep",
"textures/items/egg_shulker",
"textures/items/egg_silverfish",
"textures/items/egg_skeleton",
"textures/items/egg_skeletonhorse",
"textures/items/egg_slime",
"textures/items/egg_spider",
"textures/items/egg_squid",
"textures/items/egg_stray",
"textures/items/egg_turtle",
"textures/items/egg_vex",
"textures/items/egg_villager",
"textures/items/egg_vindicator",
"textures/items/egg_wanderingtrader",
"textures/items/egg_witch",
"textures/items/egg_wither",
"textures/items/egg_wolf",
"textures/items/egg_zombie",
"textures/items/egg_zombiehorse",
"textures/items/egg_zombievillager",
"textures/items/elytra",
"textures/items/emerald",
"textures/items/empty_armor_slot_boots",
"textures/items/empty_armor_slot_chestplate",
"textures/items/empty_armor_slot_helmet",
"textures/items/empty_armor_slot_leggings",
"textures/items/empty_armor_slot_shield",
"textures/items/ender_eye",
"textures/items/ender_pearl",
"textures/items/end_crystal",
"textures/items/experience_bottle",
"textures/items/feather",
"textures/items/fireball",
"textures/items/fireworks",
"textures/items/fireworks_charge",
"textures/items/fishing_rod_cast",
"textures/items/fishing_rod_uncast",
"textures/items/fish_clownfish_raw",
"textures/items/fish_cooked",
"textures/items/fish_pufferfish_raw",
"textures/items/fish_raw",
"textures/items/fish_salmon_cooked",
"textures/items/fish_salmon_raw",
"textures/items/flint",
"textures/items/flint_and_steel",
"textures/items/flower_pot",
"textures/items/ghast_tear",
"textures/items/glowstone_dust",
"textures/items/gold_axe",
"textures/items/gold_boots",
"textures/items/gold_chestplate",
"textures/items/gold_helmet",
"textures/items/gold_hoe",
"textures/items/gold_horse_armor",
"textures/items/gold_ingot",
"textures/items/gold_leggings",
"textures/items/gold_nugget",
"textures/items/gold_pickaxe",
"textures/items/gold_shovel",
"textures/items/gold_sword",
"textures/items/gunpowder",
"textures/items/hopper",
"textures/items/iron_axe",
"textures/items/iron_boots",
"textures/items/iron_chestplate",
"textures/items/iron_helmet",
"textures/items/iron_hoe",
"textures/items/iron_horse_armor",
"textures/items/iron_ingot",
"textures/items/iron_leggings",
"textures/items/iron_nugget",
"textures/items/iron_pickaxe",
"textures/items/iron_shovel",
"textures/items/iron_sword",
"textures/items/item_frame",
"textures/items/kelp",
"textures/items/lantern",
"textures/items/lead",
"textures/items/leather",
"textures/items/leather_boots",
"textures/items/leather_chestplate",
"textures/items/leather_helmet",
"textures/items/leather_horse_armor",
"textures/items/leather_leggings",
"textures/items/lever",
"textures/items/light_block_0",
"textures/items/light_block_1",
"textures/items/light_block_2",
"textures/items/light_block_3",
"textures/items/light_block_4",
"textures/items/light_block_5",
"textures/items/light_block_6",
"textures/items/light_block_7",
"textures/items/light_block_8",
"textures/items/light_block_9",
"textures/items/light_block_10",
"textures/items/light_block_11",
"textures/items/light_block_12",
"textures/items/light_block_13",
"textures/items/light_block_14",
"textures/items/light_block_15",
"textures/items/magma_cream",
"textures/items/map_empty",
"textures/items/map_filled",
"textures/items/map_locked",
"textures/items/map_mansion",
"textures/items/map_monument",
"textures/items/map_nautilus",
"textures/items/melon",
"textures/items/melon_speckled",
"textures/items/minecart_chest",
"textures/items/minecart_command_block",
"textures/items/minecart_furnace",
"textures/items/minecart_hopper",
"textures/items/minecart_normal",
"textures/items/minecart_tnt",
"textures/items/mushroom_stew",
"textures/items/mutton_cooked",
"textures/items/mutton_raw",
"textures/items/name_tag",
"textures/items/nautilus",
"textures/items/heartofthesea_closed",
"textures/items/netherbrick",
"textures/items/nether_star",
"textures/items/nether_wart",
"textures/items/painting",
"textures/items/paper",
"textures/items/phantom_membrane",
"textures/items/porkchop_cooked",
"textures/items/porkchop_raw",
"textures/items/potato",
"textures/items/potato_baked",
"textures/items/potato_poisonous",
"textures/items/potion_bottle_absorption",
"textures/items/potion_bottle_blindness",
"textures/items/potion_bottle_confusion",
"textures/items/potion_bottle_damageBoost",
"textures/items/potion_bottle_digSlowdown",
"textures/items/potion_bottle_digSpeed",
"textures/items/potion_bottle_drinkable",
"textures/items/potion_bottle_empty",
"textures/items/potion_bottle_fireResistance",
"textures/items/potion_bottle_harm",
"textures/items/potion_bottle_heal",
"textures/items/potion_bottle_healthBoost",
"textures/items/potion_bottle_hunger",
"textures/items/potion_bottle_invisibility",
"textures/items/potion_bottle_jump",
"textures/items/potion_bottle_levitation",
"textures/items/potion_bottle_lingering",
"textures/items/potion_bottle_lingering_damageBoost",
"textures/items/potion_bottle_lingering_empty",
"textures/items/potion_bottle_lingering_fireResistance",
"textures/items/potion_bottle_lingering_harm",
"textures/items/potion_bottle_lingering_heal",
"textures/items/potion_bottle_lingering_invisibility",
"textures/items/potion_bottle_lingering_jump",
"textures/items/potion_bottle_lingering_luck",
"textures/items/potion_bottle_lingering_moveSlowdown",
"textures/items/potion_bottle_lingering_moveSpeed",
"textures/items/potion_bottle_lingering_nightVision",
"textures/items/potion_bottle_lingering_poison",
"textures/items/potion_bottle_lingering_regeneration",
"textures/items/potion_bottle_lingering_slowFall",
"textures/items/potion_bottle_lingering_turtleMaster",
"textures/items/potion_bottle_lingering_waterBreathing",
"textures/items/potion_bottle_lingering_weakness",
"textures/items/potion_bottle_lingering_wither",
"textures/items/potion_bottle_moveSlowdown",
"textures/items/potion_bottle_moveSpeed",
"textures/items/potion_bottle_nightVision",
"textures/items/potion_bottle_poison",
"textures/items/potion_bottle_regeneration",
"textures/items/potion_bottle_resistance",
"textures/items/potion_bottle_saturation",
"textures/items/potion_bottle_slowFall",
"textures/items/potion_bottle_splash",
"textures/items/potion_bottle_splash_absorption",
"textures/items/potion_bottle_splash_blindness",
"textures/items/potion_bottle_splash_confusion",
"textures/items/potion_bottle_splash_damageBoost",
"textures/items/potion_bottle_splash_digSlowdown",
"textures/items/potion_bottle_splash_digSpeed",
"textures/items/potion_bottle_splash_fireResistance",
"textures/items/potion_bottle_splash_harm",
"textures/items/potion_bottle_splash_heal",
"textures/items/potion_bottle_splash_healthBoost",
"textures/items/potion_bottle_splash_hunger",
"textures/items/potion_bottle_splash_invisibility",
"textures/items/potion_bottle_splash_jump",
"textures/items/potion_bottle_splash_levitation",
"textures/items/potion_bottle_splash_moveSlowdown",
"textures/items/potion_bottle_splash_moveSpeed",
"textures/items/potion_bottle_splash_nightVision",
"textures/items/potion_bottle_splash_poison",
"textures/items/potion_bottle_splash_regeneration",
"textures/items/potion_bottle_splash_resistance",
"textures/items/potion_bottle_splash_saturation",
"textures/items/potion_bottle_splash_slowFall",
"textures/items/potion_bottle_splash_turtleMaster",
"textures/items/potion_bottle_splash_waterBreathing",
"textures/items/potion_bottle_splash_weakness",
"textures/items/potion_bottle_splash_wither",
"textures/items/potion_bottle_turtleMaster",
"textures/items/potion_bottle_waterBreathing",
"textures/items/potion_bottle_weakness",
"textures/items/potion_bottle_wither",
"textures/items/potion_overlay",
"textures/items/prismarine_crystals",
"textures/items/prismarine_shard",
"textures/items/pumpkin_pie",
"textures/items/quartz",
"textures/items/quiver",
"textures/items/rabbit_cooked",
"textures/items/rabbit_foot",
"textures/items/rabbit_hide",
"textures/items/rabbit_raw",
"textures/items/rabbit_stew",
"textures/items/record_11",
"textures/items/record_13",
"textures/items/record_blocks",
"textures/items/record_cat",
"textures/items/record_chirp",
"textures/items/record_far",
"textures/items/record_mall",
"textures/items/record_mellohi",
"textures/items/record_stal",
"textures/items/record_strad",
"textures/items/record_wait",
"textures/items/record_ward",
"textures/items/redstone_dust",
"textures/items/reeds",
"textures/items/repeater",
"textures/items/rotten_flesh",
"textures/items/ruby",
"textures/items/saddle",
"textures/items/sea_pickle",
"textures/items/seeds_beetroot",
"textures/items/seeds_melon",
"textures/items/seeds_pumpkin",
"textures/items/seeds_wheat",
"textures/items/shears",
"textures/items/shulker_shell",
"textures/items/sign",
"textures/items/sign_acacia",
"textures/items/sign_birch",
"textures/items/sign_darkoak",
"textures/items/sign_jungle",
"textures/items/sign_spruce",
"textures/items/slimeball",
"textures/items/snowball",
"textures/items/spawn_egg",
"textures/items/spawn_egg_overlay",
"textures/items/spider_eye",
"textures/items/spider_eye_fermented",
"textures/items/stick",
"textures/items/stone_axe",
"textures/items/stone_hoe",
"textures/items/stone_pickaxe",
"textures/items/stone_shovel",
"textures/items/stone_sword",
"textures/items/string",
"textures/items/sugar",
"textures/items/suspicious_stew",
"textures/items/sweet_berries",
"textures/items/tipped_arrow",
"textures/items/tipped_arrow_base",
"textures/items/tipped_arrow_fireres",
"textures/items/tipped_arrow_harm",
"textures/items/tipped_arrow_head",
"textures/items/tipped_arrow_healing",
"textures/items/tipped_arrow_invisibility",
"textures/items/tipped_arrow_leaping",
"textures/items/tipped_arrow_luck",
"textures/items/tipped_arrow_nightvision",
"textures/items/tipped_arrow_poison",
"textures/items/tipped_arrow_regen",
"textures/items/tipped_arrow_slow",
"textures/items/tipped_arrow_strength",
"textures/items/tipped_arrow_swift",
"textures/items/tipped_arrow_slowfalling",
"textures/items/tipped_arrow_turtlemaster",
"textures/items/tipped_arrow_waterbreathing",
"textures/items/tipped_arrow_weakness",
"textures/items/tipped_arrow_wither",
"textures/items/trident",
"textures/items/turtle_egg",
"textures/items/turtle_shell_piece",
"textures/items/turtle_helmet",
"textures/items/totem",
"textures/items/watch_atlas",
"textures/items/wheat",
"textures/items/wood_axe",
"textures/items/wood_hoe",
"textures/items/wood_pickaxe",
"textures/items/wood_shovel",
"textures/items/wood_sword",
"textures/map/map_background",
"textures/map/map_icons",
"textures/map/player_icon_background",
"textures/misc/enchanted_item_glint",
"textures/misc/missing_texture",
"textures/misc/pumpkinblur",
"textures/models/armor/chain_1",
"textures/models/armor/chain_2",
"textures/models/armor/cloth_1",
"textures/models/armor/cloth_2",
"textures/models/armor/diamond_1",
"textures/models/armor/diamond_2",
"textures/models/armor/elytra",
"textures/models/armor/gold_1",
"textures/models/armor/gold_2",
"textures/models/armor/iron_1",
"textures/models/armor/iron_2",
"textures/models/armor/leather_1",
"textures/models/armor/leather_2",
"textures/models/armor/turtle_1",
"textures/painting/kz",
"textures/particle/campfire_smoke",
"textures/persona_thumbnails/70s_hair_Thumbnail_0.png",
"textures/persona_thumbnails/70s_pants_Thumbnail_0.png",
"textures/persona_thumbnails/70s_Shirt_Thumbnail_0.png",
"textures/persona_thumbnails/70s_shoes_Thumbnail_0.png",
"textures/persona_thumbnails/70s_skin_Thumbnail_0.png",
"textures/persona_thumbnails/alex_hair_Thumbnail_0.png",
"textures/persona_thumbnails/alex_hair_thumbnail_OLD.png",
"textures/persona_thumbnails/alex_pants_Thumbnail_0.png",
"textures/persona_thumbnails/alex_pants_thumbnail_OLD.png",
"textures/persona_thumbnails/alex_shirt_Thumbnail_0.png",
"textures/persona_thumbnails/alex_shirt_thumbnail_OLD.png",
"textures/persona_thumbnails/alex_shoes_Thumbnail_0.png",
"textures/persona_thumbnails/alex_shoes_thumbnail_OLD.png",
"textures/persona_thumbnails/alex_skin_Thumbnail_0.png",
"textures/persona_thumbnails/business_blouse_Thumbnail_0.png",
"textures/persona_thumbnails/business_boots_Thumbnail_0.png",
"textures/persona_thumbnails/business_cardigan_Thumbnail_0.png",
"textures/persona_thumbnails/business_earring_Thumbnail_0.png",
"textures/persona_thumbnails/business_hair_Thumbnail_0.png",
"textures/persona_thumbnails/business_jewelry_Thumbnail_0.png",
"textures/persona_thumbnails/business_skin_Thumbnail_0.png",
"textures/persona_thumbnails/business_skirt_Thumbnail_0.png",
"textures/persona_thumbnails/citykid_dress_Thumbnail_0.png",
"textures/persona_thumbnails/citykid_jacket_Thumbnail_0.png",
"textures/persona_thumbnails/citykid_shoes_Thumbnail_0.png",
"textures/persona_thumbnails/city_kid_hair_Thumbnail_0.png",
"textures/persona_thumbnails/city_kid_skin_Thumbnail_0.png",
"textures/persona_thumbnails/fall_hair_Thumbnail_0.png",
"textures/persona_thumbnails/fall_pants_Thumbnail_0.png",
"textures/persona_thumbnails/fall_shirt_Thumbnail_0.png",
"textures/persona_thumbnails/fall_shoes_Thumbnail_0.png",
"textures/persona_thumbnails/fall_skin_Thumbnail_0.png",
"textures/persona_thumbnails/farmer_hair_Thumbnail_0.png",
"textures/persona_thumbnails/farmer_pants_Thumbnail_0.png",
"textures/persona_thumbnails/farmer_shirt_Thumbnail_0.png",
"textures/persona_thumbnails/farmer_shoes_Thumbnail_0.png",
"textures/persona_thumbnails/farmer_skin_Thumbnail_0.png",
"textures/persona_thumbnails/plain_eyes_thumbnail_OLD.png",
"textures/persona_thumbnails/plain_mouth_thumbnail_OLD.png",
"textures/persona_thumbnails/ranger_hair_Thumbnail_0.png",
"textures/persona_thumbnails/ranger_jacket_Thumbnail_0.png",
"textures/persona_thumbnails/ranger_pants_Thumbnail_0.png",
"textures/persona_thumbnails/ranger_shirt_Thumbnail_0.png",
"textures/persona_thumbnails/ranger_shoes_Thumbnail_0.png",
"textures/persona_thumbnails/ranger_skin_Thumbnail_0.png",
"textures/persona_thumbnails/rural_flannel_Thumbnail_0.png",
"textures/persona_thumbnails/rural_hair_Thumbnail_0.png",
"textures/persona_thumbnails/rural_pants_Thumbnail_0.png",
"textures/persona_thumbnails/rural_shoes_Thumbnail_0.png",
"textures/persona_thumbnails/rural_skin_Thumbnail_0.png",
"textures/persona_thumbnails/skin_alex_thumbnail_OLD.png",
"textures/persona_thumbnails/skin_steve_thumbnail_OLD.png",
"textures/persona_thumbnails/standard_eyes_thumbnail_0.png",
"textures/persona_thumbnails/standard_mouth_thumbnail_0.png",
"textures/persona_thumbnails/steve_beard_Thumbnail_0.png",
"textures/persona_thumbnails/steve_hair_thumbnail_0.png",
"textures/persona_thumbnails/steve_hair_thumbnail_OLD.png",
"textures/persona_thumbnails/steve_mouth_Thumbnail_0.png",
"textures/persona_thumbnails/steve_pants_Thumbnail_0.png",
"textures/persona_thumbnails/steve_pants_thumbnail_OLD.png",
"textures/persona_thumbnails/steve_shirt_Thumbnail_0.png",
"textures/persona_thumbnails/steve_shirt_thumbnail_OLD.png",
"textures/persona_thumbnails/steve_shoes_Thumbnail_0.png",
"textures/persona_thumbnails/steve_shoes_thumbnail_OLD.png",
"textures/persona_thumbnails/steve_skin_Thumbnail_0.png",
"textures/persona_thumbnails/straight_thumbnail_0.png",
"textures/ui/5stars_empty",
"textures/ui/5stars_full",
"textures/ui/absorption_effect",
"textures/ui/absorption_heart",
"textures/ui/absorption_heart_half",
"textures/ui/achievements",
"textures/ui/achievements_g",
"textures/ui/achievement_locked_icon",
"textures/ui/addServer",
"textures/ui/anvil-plus",
"textures/ui/anvil_icon",
"textures/ui/armor_empty",
"textures/ui/armor_full",
"textures/ui/armor_half",
"textures/ui/arrow",
"textures/ui/arrow_down",
"textures/ui/arrow_down_small",
"textures/ui/arrowDown",
"textures/ui/arrowRight",
"textures/ui/arrow_active",
"textures/ui/arrow_icon",
"textures/ui/arrow_inactive",
"textures/ui/arrow_large",
"textures/ui/arrow_l_default",
"textures/ui/arrow_l_hover",
"textures/ui/arrow_l_pressed",
"textures/ui/arrow_left_white",
"textures/ui/arrow_r_default",
"textures/ui/arrow_r_hover",
"textures/ui/arrow_r_pressed",
"textures/ui/arrow_right_white",
"textures/ui/back_button_default",
"textures/ui/back_button_hover",
"textures/ui/back_button_pressed",
"textures/ui/background",
"textures/ui/background_image",
"textures/ui/background_indent_no_top",
"textures/ui/background_panel",
"textures/ui/background_with_border",
"textures/ui/bad_omen_effect",
"textures/ui/Banners",
"textures/ui/BannersLight",
"textures/ui/banners_dark",
"textures/gui/newgui/beacon/beacon_background_pocket",
"textures/ui/banners_no_border",
"textures/ui/banners_no_border_dark_hover",
"textures/ui/BannersTransparent",
"textures/ui/beacon_button_default",
"textures/ui/beacon_button_hover",
"textures/ui/beacon_button_locked",
"textures/ui/beacon_button_pressed",
"textures/ui/beacon_default_button_pocket",
"textures/ui/beacon_item_seperator_pocket",
"textures/ui/beacon_selected_button_pocket",
"textures/ui/bg32",
"textures/ui/Black",
"textures/ui/blackline",
"textures/ui/black-arrow",
"textures/ui/black_border",
"textures/ui/blindness_effect",
"textures/ui/book_binding",
"textures/ui/book_frame",
"textures/ui/book_spine",
"textures/ui/bookshelf_flat",
"textures/ui/bookshelf_flat_border",
"textures/ui/bottle_empty",
"textures/ui/bottle_empty_pocket",
"textures/ui/box_number_grey",
"textures/ui/break",
"textures/ui/brewing_arrow_empty",
"textures/ui/brewing_arrow_full",
"textures/ui/brewing_arrow_large_empty",
"textures/ui/brewing_arrow_large_full",
"textures/ui/brewing_fuel_bar_empty",
"textures/ui/brewing_fuel_bar_full",
"textures/ui/brewing_fuel_empty",
"textures/ui/brewing_fuel_pipes",
"textures/ui/brewing_fuel_pipes_pocket",
"textures/ui/brewing_pipes",
"textures/ui/brewing_pipes_large",
"textures/ui/bubble",
"textures/ui/bubbles_empty",
"textures/ui/bubbles_empty_pocket",
"textures/ui/bubbles_full",
"textures/ui/bubbles_full_pocket",
"textures/ui/bubble_pop",
"textures/ui/button_borderless_dark",
"textures/ui/button_borderless_darkhover",
"textures/ui/button_borderless_darkpressed",
"textures/ui/button_borderless_darkpressednohover",
"textures/ui/button_borderless_imagelesshoverbg",
"textures/ui/button_borderless_light",
"textures/ui/button_borderless_lighthover",
"textures/ui/button_borderless_lightpressed",
"textures/ui/button_borderless_lightpressednohover",
"textures/ui/button_border_dark",
"textures/ui/button_border_light",
"textures/ui/button_border_light_bottom_right",
"textures/ui/button_inside_dark",
"textures/ui/button_purple",
"textures/ui/button_red",
"textures/ui/button_red_pressed",
"textures/ui/button_trade_red",
"textures/ui/button_trade_red_pressed",
"textures/ui/buy_now_hover",
"textures/ui/buy_now_normal",
"textures/ui/buy_now_pressed",
"textures/ui/camera-yo",
"textures/ui/cancel",
"textures/ui/Caution",
"textures/ui/cell_image",
"textures/ui/cell_image_lock",
"textures/ui/comment",
"textures/ui/ChainSquare",
"textures/ui/chat_down_arrow",
"textures/ui/chat_keyboard",
"textures/ui/chat_keyboard_hover",
"textures/ui/chat_send",
"textures/ui/checkboxFilledYellow",
"textures/ui/checkboxUnFilled",
"textures/ui/checkbox_check",
"textures/ui/checkbox_checkDisabled",
"textures/ui/checkbox_checkHover",
"textures/ui/checkbox_check_locked",
"textures/ui/checkbox_filled",
"textures/ui/checkbox_filled_disabled",
"textures/ui/checkbox_filled_hover",
"textures/ui/checkbox_space",
"textures/ui/checkbox_spaceDisabled",
"textures/ui/checkbox_spaceHover",
"textures/ui/checkbox_space_locked",
"textures/ui/chevron_left",
"textures/ui/chevron_grey_left",
"textures/ui/chevron_grey_right",
"textures/ui/chevron_new_grey_right",
"textures/ui/chevron_new_white_right",
"textures/ui/chevron_right",
"textures/ui/chevron_white_down",
"textures/ui/chevron_white_up",
"textures/ui/classic-button-hover",
"textures/ui/classic-button-pressed",
"textures/ui/classic_skin_comp",
"textures/ui/classic-button",
"textures/ui/classrooms_icon",
"textures/ui/clickable_overlay",
"textures/ui/clickable_overlay_inverse",
"textures/ui/clock",
"textures/ui/close_button_default",
"textures/ui/close_button_default_compact",
"textures/ui/close_button_hover",
"textures/ui/close_button_hover_compact",
"textures/ui/close_button_pressed",
"textures/ui/close_button_pressed_compact",
"textures/ui/cloud_only_storage",
"textures/ui/color_plus",
"textures/ui/common-classic_hover",
"textures/ui/common-classic_hover_1",
"textures/ui/common-classic_toggle_checked_state",
"textures/ui/common-classic_toggle_unchecked_state",
"textures/ui/confirm",
"textures/ui/control",
"textures/ui/control_gray",
"textures/ui/control_white",
"textures/ui/controller_glyph",
"textures/ui/controller_glyph_color",
"textures/ui/controller_glyph_switch",
"textures/ui/controller_glyph_color_switch",
"textures/ui/copy",
"textures/ui/craft_toggle_off",
"textures/ui/craft_toggle_on",
"textures/ui/craft_toggle_off_hover",
"textures/ui/craft_toggle_on_hover",
"textures/ui/CreateNewProject",
"textures/ui/CreateNewWorld",
"textures/ui/CreateNewProject",
"textures/ui/crossout",
"textures/ui/cross_hair",
"textures/ui/csb_purchase_error",
"textures/ui/csb_purchase_amazondevicewarning",
"textures/ui/csb_purchase_warning",
"textures/ui/csb_subscribe_banner",
"textures/ui/csb_welcome",
"textures/ui/cursor",
"textures/ui/cursor_gamecore",
"textures/ui/cursor_pc",
"textures/ui/DarkBannerNoBorder",
"textures/ui/dark_bg",
"textures/ui/dark_minus",
"textures/ui/dark_plus",
"textures/ui/debug_glyph",
"textures/ui/debug_glyph_color",
"textures/ui/default_indent",
"textures/ui/default_world",
"textures/ui/deop",
"textures/ui/dev_glyph",
"textures/ui/dev_glyph_color",
"textures/ui/dialog_background_hollow_1",
"textures/ui/dialog_background_hollow_2",
"textures/ui/dialog_background_hollow_3",
"textures/ui/dialog_background_hollow_4",
"textures/ui/dialog_background_hollow_4_thin",
"textures/ui/dialog_background_hollow_5",
"textures/ui/dialog_background_hollow_6",
"textures/ui/dialog_background_hollow_7",
"textures/ui/dialog_background_hollow_8",
"textures/ui/dialog_background_opaque",
"textures/ui/dialog_bubble",
"textures/ui/dialog_bubble_point",
"textures/ui/dialog_divider",
"textures/ui/disabledButton",
"textures/ui/divider",
"textures/ui/divider2",
"textures/ui/disabledButtonNoBorder",
"textures/ui/down_arrow",
"textures/ui/dressing_room_banner",
"textures/ui/dressing_room_customization",
"textures/ui/dressing_room_skins",
"textures/ui/dropdown_background",
"textures/ui/dropdown_chevron",
"textures/ui/dropDownHoverBG",
"textures/ui/dropDownSelectBG",
"textures/ui/dust_selectable_1",
"textures/ui/dust_selectable_2",
"textures/ui/dust_selectable_3",
"textures/ui/dust_unselectable_1",
"textures/ui/dust_unselectable_2",
"textures/ui/dust_unselectable_3",
"textures/ui/editIcon",
"textures/ui/edit_box_indent",
"textures/ui/edit_box_indent_hover",
"textures/ui/effect_background",
"textures/ui/elipses",
"textures/ui/emote_empty_0",
"textures/ui/emote_empty_1",
"textures/ui/emote_empty_2",
"textures/ui/emote_empty_3",
"textures/ui/emote_empty_4",
"textures/ui/emote_empty_5",
"textures/ui/emote_wheel_updated_base",
"textures/ui/emote_wheel_updated_select_0",
"textures/ui/emote_wheel_updated_select_1",
"textures/ui/emote_wheel_updated_select_2",
"textures/ui/emote_wheel_updated_select_3",
"textures/ui/emote_wheel_base",
"textures/ui/emote_wheel_select_0",
"textures/ui/emote_wheel_select_1",
"textures/ui/emote_wheel_select_2",
"textures/ui/emote_wheel_select_3",
"textures/ui/emote_wheel_select_4",
"textures/ui/emote_wheel_select_5",
"textures/ui/empty_armor_slot_boots",
"textures/ui/empty_armor_slot_chestplate",
"textures/ui/empty_armor_slot_helmet",
"textures/ui/empty_armor_slot_leggings",
"textures/ui/empty_armor_slot_shield",
"textures/ui/empty_horse_slot_armor",
"textures/ui/empty_horse_slot_saddle",
"textures/ui/empty_llama_slot_carpet",
"textures/ui/empty_progress_bar",
"textures/ui/enchanting_active_background",
"textures/ui/enchanting_active_background_with_hover_text",
"textures/ui/enchanting_dark_background",
"textures/ui/equipped_item_border",
"textures/ui/ErrorGlyph",
"textures/ui/ErrorGlyph_small_hover",
"textures/ui/experience_bar_empty_blue",
"textures/ui/experience_bar_full_blue",
"textures/ui/experience_bar_full_white",
"textures/ui/experience_bar_nub_blue",
"textures/ui/experiencebarempty",
"textures/ui/experiencebarfull",
"textures/ui/experiencenub",
"textures/ui/Feedback",
"textures/ui/feed_background",
"textures/ui/filled_progress_bar",
"textures/ui/fire_resistance_effect",
"textures/ui/first_of_three",
"textures/ui/second_of_three",
"textures/ui/third_of_three",
"textures/ui/first_of_two",
"textures/ui/second_of_two",
"textures/ui/subcategory_icons/arms",
"textures/ui/subcategory_icons/back_accessory",
"textures/ui/subcategory_icons/body_size",
"textures/ui/subcategory_icons/bottoms",
"textures/ui/subcategory_icons/capes",
"textures/ui/subcategory_icons/emotes",
"textures/ui/subcategory_icons/eyes",
"textures/ui/subcategory_icons/face_accessory",
"textures/ui/subcategory_icons/facial_hair",
"textures/ui/subcategory_icons/feet",
"textures/ui/subcategory_icons/hair",
"textures/ui/subcategory_icons/hands",
"textures/ui/subcategory_icons/head",
"textures/ui/subcategory_icons/legs",
"textures/ui/subcategory_icons/mouth",
"textures/ui/subcategory_icons/outerwear",
"textures/ui/subcategory_icons/skin_texture",
"textures/ui/subcategory_icons/tops",
"textures/ui/flame_empty_image",
"textures/ui/flame_full_image",
"textures/ui/focus_border_white",
"textures/ui/focus_border_selected",
"textures/ui/free_download_symbol",
"textures/ui/Friend1",
"textures/ui/friend1_black_outline",
"textures/ui/friend1_black_outline_2x",
"textures/ui/Friend2",
"textures/ui/FriendsDiversity",
"textures/ui/friend_glyph",
"textures/ui/friend_glyph_desaturated",
"textures/ui/FriendsIcon",
"textures/ui/gamepad_icon_button",
"textures/ui/gamepad_icon_dpad",
"textures/ui/gamepad_icon_left_bumper",
"textures/ui/gamepad_icon_left_trigger",
"textures/ui/gamepad_icon_right_bumper",
"textures/ui/gamepad_icon_right_trigger",
"textures/ui/gamepad_icon_thumbstick",
"textures/ui/gamerpic",
"textures/ui/gamerscore",
"textures/ui/Gray",
"textures/ui/Grey",
"textures/ui/greyBorder",
"textures/ui/hammer_l",
"textures/ui/hammer_l_disabled",
"textures/ui/hammer_r",
"textures/ui/hammer_r_disabled",
"textures/ui/horizontal_divider",
"textures/ui/horizontalbreak",
"textures/ui/gamerpic_bevel",
"textures/ui/gear",
"textures/ui/generic_bumper_left",
"textures/ui/generic_bumper_right",
"textures/ui/generic_dpad",
"textures/ui/generic_dpad_down",
"textures/ui/generic_dpad_left",
"textures/ui/generic_dpad_right",
"textures/ui/generic_dpad_up",
"textures/ui/generic_face_button_down",
"textures/ui/generic_face_button_left",
"textures/ui/generic_face_button_right",
"textures/ui/generic_face_button_up",
"textures/ui/generic_left_trigger",
"textures/ui/generic_right_trigger",
"textures/ui/generic_select_button",
"textures/ui/generic_start_button",
"textures/ui/generic_stick_left",
"textures/ui/generic_stick_right",
"textures/ui/generic_touchpad",
"textures/ui/glyph_addon_pack_small",
"textures/ui/glyph_mashup_pack_small",
"textures/ui/glyph_persona_pack_small",
"textures/ui/glyph_resource_pack_small",
"textures/ui/glyph_skin_pack_small",
"textures/ui/glyph_skin_world_small",
"textures/ui/glyph_all_pack_small",
"textures/ui/grey_gamepad_icon_button",
"textures/ui/hangar",
"textures/ui/haste_effect",
"textures/ui/header_bar",
"textures/ui/header_bar_2",
"textures/ui/health_boost_effect",
"textures/ui/heart",
"textures/ui/heart_background",
"textures/ui/heart_blink",
"textures/ui/heart_flash",
"textures/ui/heart_flash_half",
"textures/ui/heart_half",
"textures/ui/heart_new",
"textures/ui/highlight_slot",
"textures/ui/hollowbanner",
"textures/ui/horse_heart",
"textures/ui/horse_heart_flash",
"textures/ui/horse_heart_flash_half",
"textures/ui/horse_heart_half",
"textures/ui/horse_jump_empty",
"textures/ui/horse_jump_full",
"textures/ui/hotbar_0",
"textures/ui/hotbar_1",
"textures/ui/hotbar_2",
"textures/ui/hotbar_3",
"textures/ui/hotbar_4",
"textures/ui/hotbar_5",
"textures/ui/hotbar_6",
"textures/ui/hotbar_7",
"textures/ui/hotbar_8",
"textures/ui/hotbar_end_cap",
"textures/ui/hotbar_start_cap",
"textures/ui/HowToPlayDivider",
"textures/ui/how_to_play_button_default",
"textures/ui/how_to_play_button_hover",
"textures/ui/how_to_play_button_pressed",
"textures/ui/hud_mob_effect_background",
"textures/ui/hunger_background",
"textures/ui/hunger_blink",
"textures/ui/hunger_effect",
"textures/ui/hunger_effect_background",
"textures/ui/hunger_effect_flash_full",
"textures/ui/hunger_effect_flash_half",
"textures/ui/hunger_effect_full",
"textures/ui/hunger_effect_half",
"textures/ui/hunger_flash_full",
"textures/ui/hunger_flash_half",
"textures/ui/hunger_full",
"textures/ui/hunger_half",
"textures/ui/icon_best3",
"textures/ui/icon_bookshelf",
"textures/ui/icon_blackfriday",
"textures/ui/icon_deals",
"textures/ui/icon_fall",
"textures/ui/icon_hangar",
"textures/ui/icon_import",
"textures/ui/icon_lock",
"textures/ui/icon_minecoin_9x9",
"textures/ui/icon_multiplayer",
"textures/ui/icon_new",
"textures/ui/icon_none",
"textures/ui/icon_overlay_bg",
"textures/ui/icon_recipe_construction",
"textures/ui/icon_recipe_equipment",
"textures/ui/icon_recipe_item",
"textures/ui/icon_recipe_nature",
"textures/ui/icon_saleribbon",
"textures/ui/icon_spring",
"textures/ui/icon_staffpicks",
"textures/ui/icon_summer",
"textures/ui/icon_random",
"textures/ui/icon_setting",
"textures/ui/icon_timer",
"textures/ui/icon_trailer",
"textures/ui/icon_trash",
"textures/ui/icon_trending",
"textures/ui/icon_winter",
"textures/ui/icon_agent",
"textures/ui/icon_alex",
"textures/ui/icon_apple",
"textures/ui/icon_balloon",
"textures/ui/icon_book_writable",
"textures/ui/icon_cake",
"textures/ui/icon_carrot",
"textures/ui/icon_cookie",
"textures/ui/icon_fish_clownfish_raw",
"textures/ui/icon_iron_pickaxe",
"textures/ui/icon_llama",
"textures/ui/icon_map",
"textures/ui/icon_panda",
"textures/ui/icon_potion",
"textures/ui/icon_rail_normal",
"textures/ui/icon_sign",
"textures/ui/icon_steve",
"textures/ui/icon_water_bucket",
"textures/ui/imagetaggedcorner",
"textures/ui/imagetaggedcornerborder",
"textures/ui/imagetaggedcornergreen",
"textures/ui/imagetaggedcornergreenhover",
"textures/ui/imagetaggedcornergreenpressed",
"textures/ui/import",
"textures/ui/immersive_reader",
"textures/ui/ImpulseSquare",
"textures/ui/infobulb",
"textures/ui/infobulb_darkborder_small",
"textures/ui/ingot_image",
"textures/ui/InvalidWorldDemoScreen",
"textures/ui/inventory_warning_xbox",
"textures/ui/invertedmultiselecticon",
"textures/ui/invisibility_effect",
"textures/ui/invite_base",
"textures/ui/invite_number_background",
"textures/ui/item_cell",
"textures/ui/item_lock_red",
"textures/ui/item_lock_yellow",
"textures/ui/item_seperator",
"textures/ui/joincode_button_background",
"textures/ui/jump_boost_effect",
"textures/ui/keyboard_and_mouse_glyph",
"textures/ui/keyboard_and_mouse_glyph_color",
"textures/ui/keyboard_tooltip_background",
"textures/ui/keyboard_tooltip_icon",
"textures/ui/language_glyph",
"textures/ui/language_glyph_color",
"textures/ui/lan_icon",
"textures/ui/lapis",
"textures/ui/lapis_image",
"textures/ui/large_fish_bevel",
"textures/ui/lava",
"textures/ui/legacybanner",
"textures/ui/legacy_pocket_close_button_default",
"textures/ui/legacy_pocket_close_button_pressed",
"textures/ui/levitation_effect",
"textures/ui/lightgreybars",
"textures/ui/like_default",
"textures/ui/listcheck",
"textures/ui/listcheck_smaller",
"textures/ui/list_item_divider_line_light",
"textures/ui/listx",
"textures/ui/LoadingWorldDemoScreen",
"textures/ui/loading_bar",
"textures/ui/loading_spin",
"textures/ui/local_and_cloud_storage",
"textures/ui/local_only_storage",
"textures/ui/lock",
"textures/ui/loom_banner_empty",
"textures/ui/loom_dye_empty",
"textures/ui/loom_pattern_item_empty",
"textures/ui/magnifyingGlass",
"textures/ui/mail_icon",
"textures/ui/mainbanners",
"textures/ui/mainbanners_transparency",
"textures/ui/MainBannersHover",
"textures/ui/MashupIcon",
"textures/ui/mashup_hangar",
"textures/ui/mashup_PaintBrush",
"textures/ui/mashup_world",
"textures/ui/massive_servers",
"textures/ui/MCoin",
"textures/ui/menubackground",
"textures/ui/message",
"textures/ui/middle_strip",
"textures/ui/minimize",
"textures/ui/minimizeHover",
"textures/ui/minimizePress",
"textures/ui/mining_fatigue_effect",
"textures/ui/minus",
"textures/ui/missing_pack_icon",
"textures/ui/mob_effect_background",
"textures/ui/mobile_data_icon_android",
"textures/ui/mobile_data_icon_ios",
"textures/ui/more_dots",
"textures/ui/move",
"textures/ui/multiplayer_glyph",
"textures/ui/multiplayer_glyph_color",
"textures/ui/multiselection",
"textures/ui/mute_off",
"textures/ui/mute_on",
"textures/ui/nausea_effect",
"textures/ui/navy_blue",
"textures/ui/newOffersIcon",
"textures/ui/New_confirm_Hover",
"textures/ui/new_offer_symbol",
"textures/ui/newTouchScrollBox",
"textures/ui/night_vision_effect",
"textures/ui/normal_hover",
"textures/ui/normal_normal",
"textures/ui/normal_pressed",
"textures/ui/NormalButtonNoStroke",
"textures/ui/NormalButtonStroke",
"textures/ui/NormalButtonThin",
"textures/ui/NormalButtonThinStroke",
"textures/ui/normal_stroke_button",
"textures/ui/numberBGBack",
"textures/ui/numberBGFront",
"textures/ui/offline",
"textures/ui/online",
"textures/ui/onlineLight",
"textures/ui/op",
"textures/ui/packs_border",
"textures/ui/packs_middle",
"textures/ui/panel_outline",
"textures/ui/panorama_0",
"textures/ui/panorama_1",
"textures/ui/panorama_2",
"textures/ui/panorama_3",
"textures/ui/panorama_4",
"textures/ui/panorama_5",
"textures/ui/panorama_overlay",
"textures/ui/particles",
"textures/ui/particles2",
"textures/ui/paste",
"textures/ui/pause_screen_border",
"textures/ui/pencil_edit_icon",
"textures/ui/permissions_player_fade_overlay",
"textures/ui/photo_corner_bl",
"textures/ui/photo_corner_br",
"textures/ui/photo_corner_tl",
"textures/ui/photo_corner_tr",
"textures/ui/realms_button_borderless_default",
"textures/ui/realms_button_borderless_hover",
"textures/ui/realms_button_borderless_hover_pressed",
"textures/ui/realms_button_borderless_lighthoverflag",
"textures/ui/realms_button_borderless_lightpressedflag",
"textures/ui/realms_button_borderless_no_hover_pressed",
"textures/ui/pinksquare",
"textures/ui/pinktriangle",
"textures/ui/PlaceholderStore",
"textures/ui/player_offline_icon",
"textures/ui/player_online_icon",
"textures/ui/player_preview_border",
"textures/ui/plus",
"textures/ui/pocket_button_default",
"textures/ui/pocket_button_hover",
"textures/ui/pocket_button_pressed",
"textures/ui/pocket_tab_left_side",
"textures/ui/pocket_tab_right_side",
"textures/ui/pocket_ui_highlight_selected_slot",
"textures/ui/pocket_ui_highlight_slot",
"textures/ui/pointer",
"textures/ui/poison_effect",
"textures/ui/poison_heart",
"textures/ui/poison_heart_flash",
"textures/ui/poison_heart_flash_half",
"textures/ui/poison_heart_half",
"textures/ui/postGradientSolid",
"textures/ui/portalBg",
"textures/ui/profile_bg",
"textures/ui/profile_glyph",
"textures/ui/profile_glyph_color",
"textures/ui/profile_new_look",
"textures/ui/profile_new_look_small",
"textures/ui/promo_corner_left",
"textures/ui/promo_corner_right",
"textures/ui/promo_gift_big",
"textures/ui/promo_gift_small_yellow",
"textures/ui/promo_gift_small_pink",
"textures/ui/promo_gift_small_green",
"textures/ui/promo_gift_small_blue",
"textures/ui/progress_bar_simple",
"textures/ui/promotion_slot",
"textures/ui/ps4_bumper_left",
"textures/ui/ps4_bumper_right",
"textures/ui/ps4_dpad_down",
"textures/ui/ps4_dpad_left",
"textures/ui/ps4_dpad_right",
"textures/ui/ps4_dpad_up",
"textures/ui/ps4_face_button_down",
"textures/ui/ps4_face_button_left",
"textures/ui/ps4_face_button_right",
"textures/ui/ps4_face_button_up",
"textures/ui/ps4_left_trigger",
"textures/ui/ps4_right_trigger",
"textures/ui/ps4_stick_left",
"textures/ui/ps4_stick_right",
"textures/ui/ps4_touchpad",
"textures/ui/purpleBorder",
"textures/ui/purtle",
"textures/ui/pyramid_level_1",
"textures/ui/pyramid_level_2",
"textures/ui/pyramid_level_3",
"textures/ui/pyramid_level_4",
"textures/ui/radio_checked",
"textures/ui/qr_code_bees",
"textures/ui/radio_checked_hover",
"textures/ui/radio_off",
"textures/ui/radio_off_hover",
"textures/ui/radio_on",
"textures/ui/radio_on_hover",
"textures/ui/radiobox_filled",
"textures/ui/radiobox_unfilled",
"textures/ui/rarity_common",
"textures/ui/rarity_epic",
"textures/ui/rarity_legendary",
"textures/ui/rarity_rare",
"textures/ui/rarity_uncommon",
"textures/ui/ratings_fullstar",
"textures/ui/ratings_nostar",
"textures/ui/RealmDemoScreen",
"textures/ui/realmflagSmooth",
"textures/ui/realmflagtriangleSmooth",
"textures/ui/realmPortalSmall",
"textures/ui/realmsparkle1",
"textures/ui/realmsIcon",
"textures/ui/realms_art_icon",
"textures/ui/realms_gradient_top",
"textures/ui/realms_green_check",
"textures/ui/realms_header_art",
"textures/ui/realms_poster_art_with_logo",
"textures/ui/realms_purchase_warning",
"textures/ui/realms_red_x",
"textures/ui/realms_text_background",
"textures/ui/realms_title",
"textures/ui/recap_glyph_2x",
"textures/ui/recap_glyph_color_2x",
"textures/ui/recap_glyph_desaturated",
"textures/ui/recipe_back_panel",
"textures/ui/recipe_book_collapse_icon",
"textures/ui/recipe_book_expand_icon",
"textures/ui/recipe_book_group_bg",
"textures/ui/recipe_book_group_collapsed",
"textures/ui/recipe_book_group_expanded",
"textures/ui/recipe_book_item_bg",
"textures/ui/recipe_book_pane_bg",
"textures/ui/recipe_book_red",
"textures/ui/recipe_book_touch_cell_selected",
"textures/ui/recipe_book_dark_button",
"textures/ui/recipe_book_dark_button_pressed",
"textures/ui/recipe_book_expand_dots_in",
"textures/ui/recipe_book_expand_dots_out",
"textures/ui/recipe_book_expand_dots_in_hover",
"textures/ui/recipe_book_expand_dots_out_hover",
"textures/ui/recipe_book_light_button",
"textures/ui/recipe_book_light_button_pressed",
"textures/ui/recipe_book_red_button",
"textures/ui/recipe_book_red_button_pressed",
"textures/ui/recipe_book_side_toggle_dark",
"textures/ui/recipe_book_side_toggle_dark_hover",
"textures/ui/recolorable_background",
"textures/ui/red_slash",
"textures/ui/redX1",
"textures/ui/refresh",
"textures/ui/refresh_hover",
"textures/ui/refresh_light",
"textures/ui/regeneration_effect",
"textures/ui/RepeatSquare",
"textures/ui/resistance_effect",
"textures/ui/Rotate",
"textures/ui/RTX_Label.png",
"textures/ui/RTX_Sparkle.png",
"textures/ui/saleflag",
"textures/ui/saleflagtriangle",
"textures/ui/saleflagtrianglebeveldefault",
"textures/ui/saleflagtrianglebeveldefault_large",
"textures/ui/saleflagtrianglebevelpress",
"textures/ui/saleflagtrianglebevelpress_large",
"textures/ui/saleribbon",
"textures/ui/sale_button_borderless_lighthover",
"textures/ui/sale_button_borderless_lighthoverflag",
"textures/ui/sale_button_borderless_lightpressed",
"textures/ui/sale_button_borderless_lightpressedflag",
"textures/ui/screenshot_frame",
"textures/ui/screen_background",
"textures/ui/screen_realms_plus_background",
"textures/ui/ScrollBox",
"textures/ui/ScrollGutterWithBG",
"textures/ui/ScrollHandle",
"textures/ui/ScrollRail",
"textures/ui/seeds",
"textures/ui/selected_hotbar_slot",
"textures/ui/send_icon",
"textures/ui/settings_glyph_2x",
"textures/ui/settings_glyph_color_2x",
"textures/ui/share_apple",
"textures/ui/share_google",
"textures/ui/share_google_glyph",
"textures/ui/share_google_glyph_color",
"textures/ui/share_microsoft",
"textures/ui/sidebar_icons/AdventureTime_packicon",
"textures/ui/sidebar_icons/Ben10_packicon_0",
"textures/ui/sidebar_icons/blueheart",
"textures/ui/sidebar_icons/bookmark",
"textures/ui/sidebar_icons/button_panel",
"textures/ui/sidebar_icons/capes",
"textures/ui/sidebar_icons/categories",
"textures/ui/sidebar_icons/character_creator",
"textures/ui/sidebar_icons/classic_skins",
"textures/ui/sidebar_icons/csb_sidebar_icon",
"textures/ui/sidebar_icons/dressing_room_animation",
"textures/ui/sidebar_icons/dressing_room_capes",
"textures/ui/sidebar_icons/dressing_room_customization",
"textures/ui/sidebar_icons/dressing_room_skins",
"textures/ui/sidebar_icons/emotes",
"textures/ui/sidebar_icons/featured",
"textures/ui/sidebar_icons/genre",
"textures/ui/sidebar_icons/Jurassic_packicon_0",
"textures/ui/sidebar_icons/Lightyear_packicon_0",
"textures/ui/sidebar_icons/marketplace",
"textures/ui/sidebar_icons/menu_threebars",
"textures/ui/sidebar_icons/Minions_packicon_0",
"textures/ui/sidebar_icons/my_characters",
"textures/ui/sidebar_icons/my_content",
"textures/ui/sidebar_icons/owned_skins_icon",
"textures/ui/sidebar_icons/profile_screen_icon",
"textures/ui/sidebar_icons/promotag",
"textures/ui/sidebar_icons/realms",
"textures/ui/sidebar_icons/realms_plus_skins_icon",
"textures/ui/sidebar_icons/redheart",
"textures/ui/sidebar_icons/rounddonut",
"textures/ui/sidebar_icons/side_drawer_button_hover_focused",
"textures/ui/sidebar_icons/side_drawer_button_selected",
"textures/ui/sidebar_icons/side_drawer_left_panel",
"textures/ui/sidebar_icons/side_panel_button_hover_focused",
"textures/ui/sidebar_icons/side_panel_button_selected",
"textures/ui/sidebar_icons/side_panel_divider",
"textures/ui/sidebar_icons/Sonic_packicon",
"textures/ui/sidebar_icons/squaredonut",
"textures/ui/sidebar_icons/star",
"textures/ui/sidebar_icons/Star_Wars_packicon_0",
"textures/ui/sidebar_icons/unowned_skins_icon",
"textures/ui/sidebar_icons/WDW-Magic-Kingdom-Adventure_packicon_0",
"textures/ui/sidebar_icons/wish_list",
"textures/ui/sign",
"textures/ui/sign_acacia",
"textures/ui/sign_birch",
"textures/ui/sign_darkoak",
"textures/ui/sign_jungle",
"textures/ui/sign_spruce",
"textures/ui/slider_background",
"textures/ui/slider_background_hover",
"textures/ui/slider_border",
"textures/ui/slider_button_default",
"textures/ui/slider_button_hover",
"textures/ui/slider_button_locked",
"textures/ui/slider_button_indent",
"textures/ui/slider_locked_transparent_fade",
"textures/ui/slider_progress",
"textures/ui/slider_progress_hover",
"textures/ui/slider_step_background",
"textures/ui/slider_step_background_hover",
"textures/ui/slider_step_progress",
"textures/ui/slider_step_progress_hover",
"textures/ui/slots_bg",
"textures/ui/slot_sale",
"textures/ui/slow_falling_effect",
"textures/ui/slowness_effect",
"textures/ui/small_fish_bevel",
"textures/ui/smithing_icon",
"textures/ui/snowy",
"textures/ui/sound_glyph",
"textures/ui/sound_glyph_color",
"textures/ui/sound_glyph_2x",
"textures/ui/sound_glyph_color_2x",
"textures/ui/speed_effect",
"textures/ui/spyglass_flat",
"textures/ui/square_image_border_white",
"textures/ui/stack_progress_bar_down_arrow",
"textures/ui/stack_progress_bar_up_arrow",
"textures/ui/stack_progress_bar_fill",
"textures/ui/stack_progress_bar_left_side_arrow",
"textures/ui/stack_progress_bar_right_side_arrow",
"textures/ui/storageIcon",
"textures/ui/storageIconColor",
"textures/ui/store_banner_no_border",
"textures/ui/store_background",
"textures/ui/store_filter_icon",
"textures/ui/store_home_icon",
"textures/ui/store_play_button",
"textures/ui/store_play_button_mask",
"textures/ui/store_sort_icon",
"textures/ui/StoreTopBar",
"textures/ui/StoreTopBarFiller",
"textures/ui/storexblsignin",
"textures/ui/strength_effect",
"textures/ui/structure_block",
"textures/ui/structure_block_corner",
"textures/ui/structure_block_data",
"textures/ui/structure_block_export",
"textures/ui/structure_block_load",
"textures/ui/structure_block_save",
"textures/ui/subscription_glyph",
"textures/ui/subscription_glyph_color",
"textures/ui/sunset_keyart",
"textures/ui/sunset_pending_keyart",
"textures/ui/conduit_power_effect",
"textures/ui/switch_accounts",
"textures/ui/switch_bumper_left",
"textures/ui/switch_bumper_right",
"textures/ui/switch_circle_button",
"textures/ui/switch_dpad_down",
"textures/ui/switch_dpad_left",
"textures/ui/switch_dpad_right",
"textures/ui/switch_dpad_up",
"textures/ui/switch_face_button_down",
"textures/ui/switch_face_button_left",
"textures/ui/switch_face_button_right",
"textures/ui/switch_face_button_up",
"textures/ui/switch_home_button",
"textures/ui/switch_left_trigger",
"textures/ui/switch_select_button",
"textures/ui/switch_start_button",
"textures/ui/switch_right_trigger",
"textures/ui/switch_sl_button",
"textures/ui/switch_sr_button",
"textures/ui/switch_stick_left",
"textures/ui/switch_stick_right",
"textures/ui/switch_touchpad",
"textures/ui/sword",
"textures/ui/TabTopBack",
"textures/ui/TabTopBackLeftMost",
"textures/ui/TabTopBackRightMost",
"textures/ui/TabTopBackRightMostDark",
"textures/ui/TabTopFront",
"textures/ui/TabTopFrontLeftMost",
"textures/ui/TabTopFrontRightMost",
"textures/ui/TabLeftBack",
"textures/ui/TabLeftBackBottomMost",
"textures/ui/TabLeftBackTopMost",
"textures/ui/TabLeftFront",
"textures/ui/TabLeftFrontBottomMost",
"textures/ui/TabLeftFrontTopMost",
"textures/ui/TabRightBack",
"textures/ui/TabRightBackBottomMost",
"textures/ui/TabRightBackTopMost",
"textures/ui/TabRightFront",
"textures/ui/TabRightFrontBottomMost",
"textures/ui/TabRightFrontTopMost",
"textures/ui/TabTopBackHover",
"textures/ui/TabTopBackLeftMostHover",
"textures/ui/TabTopBackRightMostHover",
"textures/ui/TabTopBackRightMostDarkHover",
"textures/ui/TabTopFrontHover",
"textures/ui/TabTopFrontLeftMostHover",
"textures/ui/TabTopFrontRightMostHover",
"textures/ui/TabLeftBackHover",
"textures/ui/TabLeftBackBottomMostHover",
"textures/ui/TabLeftBackTopMostHover",
"textures/ui/TabLeftFrontHover",
"textures/ui/TabLeftFrontBottomMostHover",
"textures/ui/TabLeftFrontTopMostHover",
"textures/ui/TabRightBackHover",
"textures/ui/TabRightBackBottomMostHover",
"textures/ui/TabRightBackTopMostHover",
"textures/ui/TabRightFrontHover",
"textures/ui/TabRightFrontBottomMostHover",
"textures/ui/TabRightFrontTopMostHover",
"textures/ui/teams_icon",
"textures/ui/text_edit_base",
"textures/ui/text_edit_hover",
"textures/ui/text_color_paintbrush",
"textures/ui/text_color_paintbrush_overlay",
"textures/ui/text_label_box",
"textures/ui/ThinPlus",
"textures/ui/time_1sunrise",
"textures/ui/title",
"textures/ui/time_2day",
"textures/ui/time_3noon",
"textures/ui/time_4sunset",
"textures/ui/time_5night",
"textures/ui/time_6midnight",
"textures/ui/tip_arrows_left",
"textures/ui/tip_arrows_right",
"textures/ui/tip_panel",
"textures/ui/toggle_off",
"textures/ui/toggle_off_hover",
"textures/ui/toggle_on",
"textures/ui/toggle_on_hover",
"textures/ui/toolbar_background",
"textures/ui/tooltip_default_chevron",
"textures/ui/tooltip_inverted_chevron",
"textures/ui/tooltip_default_background",
"textures/ui/tooltip_notification_default_background",
"textures/ui/topbar_off_point",
"textures/ui/topbar_on_point",
"textures/ui/touchScrollBox",
"textures/ui/touch_glyph",
"textures/ui/touch_glyph_color",
"textures/ui/train",
"textures/ui/trash",
"textures/ui/trash_default",
"textures/ui/trash_hover",
"textures/ui/trash_light",
"textures/ui/trash_pressed",
"textures/ui/trophy",
"textures/ui/ui_debug_glyph",
"textures/ui/ui_debug_glyph_color",
"textures/ui/undoArrow",
"textures/ui/unLock",
"textures/ui/update",
"textures/ui/UpdateGlyph",
"textures/ui/up_arrow",
"textures/ui/up_chevron",
"textures/ui/user_icon",
"textures/ui/vertical_divider",
"textures/ui/verticalgradient",
"textures/ui/video_glyph",
"textures/ui/video_glyph_color",
"textures/ui/video_glyph_2x",
"textures/ui/video_glyph_color_2x",
"textures/ui/village_hero_effect",
"textures/ui/vr_glyph",
"textures/ui/vr_glyph_color",
"textures/ui/warning_alex",
"textures/ui/WarningGlyph",
"textures/ui/WarningGlyph_small_hover",
"textures/ui/water_breathing_effect",
"textures/ui/weakness_effect",
"textures/ui/weather_clear",
"textures/ui/weather_rain",
"textures/ui/weather_thunderstorm",
"textures/ui/White",
"textures/ui/white_background",
"textures/ui/whiteline",
"textures/ui/white_pixel_chevron_down",
"textures/ui/white_pixel_chevron_right",
"textures/ui/wither_effect",
"textures/ui/wither_heart",
"textures/ui/wither_heart_flash",
"textures/ui/wither_heart_flash_half",
"textures/ui/wither_heart_half",
"textures/ui/World",
"textures/ui/WorldDemoScreen",
"textures/ui/WorldDemoScreen_Big",
"textures/ui/WorldDemoScreen_Big_Grayscale",
"textures/ui/worldsIcon",
"textures/ui/world_download",
"textures/ui/world_download_default",
"textures/ui/world_download_hover",
"textures/ui/world_download_pressed",
"textures/ui/world_glyph",
"textures/ui/world_glyph_desaturated",
"textures/ui/world_glyph_color",
"textures/ui/world_glyph_color_2x",
"textures/ui/world_glyph_color_2x_black_outline",
"textures/ui/world_screenshot_focus_border",
"textures/ui/Wrenches1",
"textures/ui/xbox4",
"textures/ui/xboxconversionkeyart",
"textures/ui/xbox_bumper_left",
"textures/ui/xbox_bumper_right",
"textures/ui/xbox_dpad",
"textures/ui/xbox_dpad_down",
"textures/ui/xbox_dpad_left",
"textures/ui/xbox_dpad_right",
"textures/ui/xbox_dpad_up",
"textures/ui/xbox_face_button_down",
"textures/ui/xbox_face_button_left",
"textures/ui/xbox_face_button_right",
"textures/ui/xbox_face_button_up",
"textures/ui/xbox_left_trigger",
"textures/ui/xbox_right_trigger",
"textures/ui/xbox_select_button",
"textures/ui/xbox_start_button",
"textures/ui/xbox_stick_left",
"textures/ui/xbox_stick_right",
"textures/ui/xbox_touchpad",
"textures/ui/XTab",
"textures/ui/xyz_axis",
"textures/ui/x_default",
"textures/ui/x_hover",
"textures/ui/x_pressed",
"textures/ui/x_dropdown_default",
"textures/ui/x_dropdown_hover",
"textures/ui/yellow_banner"
]
注意的是,为什么说可能是你的噩梦呢,因为不管材质错不错误,你都要填进去,甚至夸张一点说,包里面任何图片的路径都要填进去,所以是大后期的噩梦(包括我) 为什么我的出现了手持正常显示,但是在物品栏中无法正常显示? 第二点和第三点我有点看法。我自己写的 Addon 也好,改出来的 oCd 也好,都不需要移除废弃的贴图,也不需要搞什么“textures_list.json”然后把里面的材质文件路径写上去。虽然原版包确实有那么的“textures_list.json”文件,但是似乎删掉了也没什么影响,可以正常运行(至少在我用过的3台不同设备上)。当然,不排除设备和客户端版本差异导致的差异。 Sakarwei 发表于 2024-6-23 06:24
第二点和第三点我有点看法。我自己写的 Addon 也好,改出来的 oCd 也好,都不需要移除废弃的贴图,也不需要 ...
你需要了解更多,渲染龙下实际上材质数量有限制,你如果一次性添加几千个物品你会赞同我的 呼啸泰坦 发表于 2024-6-24 02:07
你需要了解更多,渲染龙下实际上材质数量有限制,你如果一次性添加几千个物品你会赞同我的 ...
不清楚。自测 3000 物品(实际3002物品贴图含1无关,1改原版,另加1方块贴图)且不带 textures_list.json 、不删减无关贴图。未见异常。
(这些贴图看起来一样,实际上是3000份不同的贴图文件,每一文件末尾被写入不同内容,排除 MC 根据文件摘要值判断为同一贴图的可能)
页: [1]