Private
Public Access
1
0

WIP: Made cross emissive block use cutout render type to fix transparency.

This commit is contained in:
2025-06-05 21:07:50 +01:00
parent c96ef2bf9f
commit f2298c5f5f
2 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,6 @@
{
"parent": "minecraft:block/cross_emissive",
"render_type": "minecraft:cutout",
"textures": {
"cross": "firefly_bush_backport:block/firefly_bush",
"cross_emissive": "firefly_bush_backport:block/firefly_bush_emissive"

View File

@ -26,6 +26,7 @@ public class ModBlockStateProvider extends BlockStateProvider {
.withExistingParent(name, "block/cross_emissive")
.texture("cross", "block/" + name)
.texture("cross_emissive", "block/" + name + "_emissive")
.renderType("cutout")
);
}
}