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 b385157a41
commit e7760eb8ba
2 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,6 @@
{ {
"parent": "minecraft:block/cross_emissive", "parent": "minecraft:block/cross_emissive",
"render_type": "minecraft:cutout",
"textures": { "textures": {
"cross": "firefly_bush_backport:block/firefly_bush", "cross": "firefly_bush_backport:block/firefly_bush",
"cross_emissive": "firefly_bush_backport:block/firefly_bush_emissive" "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") .withExistingParent(name, "block/cross_emissive")
.texture("cross", "block/" + name) .texture("cross", "block/" + name)
.texture("cross_emissive", "block/" + name + "_emissive") .texture("cross_emissive", "block/" + name + "_emissive")
.renderType("cutout")
); );
} }
} }