#non-full block culling terrain below.

11 messages · Page 1 of 1 (latest)

onyx moon
#

I made 2 custom blocks that use the vanilla minecraft template anvil model and for some reason the block below it is hidden. Does anyone know how to deal with this issue?

StartupEvents.registry('block', event => {
    event.create("copper_anvil")
    .requiresTool(true)
    .hardness(5)
    .resistance(5)
    .fullBlock(false)

    event.create("iron_anvil")
    .requiresTool(true)
    .hardness(5)
    .resistance(5)
    .fullBlock(false)
})
primal swallowBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

hard tinsel
#

Add .defaultCutout() to the block builder

#

If i remember correctly

onyx moon
hard tinsel
#

hmm

#

try .defaultTranslucent() hmmm

stray ether
onyx moon
stray ether
#

My bad, I didn't see .fullblock() in your orignal message. Sorry about that 😅

thick ginkgo
#

It's been a hot minute since I last made some non-standard cubic blocks, but the ones I do have all use

.notSolid()
.fullBlock(false)
.renderType("cutout")

It's odd though, Lexxie's suggestion of the defaultTranslucent calls defaultCutOut which also sets notSolid() which is the only not-yet-attempted suggestion