#no hit box?

1 messages · Page 1 of 1 (latest)

short patio
#

im wanting a void block, but i can interact through the block, no way a player can interact with the block at all, almost as if it never existed, this way it can stop lava and water paths.

is this possible in the components?

#

void block i can't interact or do stuff through it.

I need a custom air block basically that stops fluids

#

and i could place a block where the block is... so it doesn't feel like its there...(ill do with script api myself)

frozen pine
#

set colllision box to false

short patio
#

awh thanks

short patio
#

or does it have to be set to false

#

oh wait, removing it allows me to interact with stuff past it

#

now i just have to find a good way to place a block in its place

#

when interacting with the block (to simulate air)

short patio
# frozen pine set colllision box to false
{
    "format_version": "1.20.60",
    "minecraft:block": {
        "description": {
            "identifier": "mrleefy:leefy_void",
            "menu_category": {
                "category": "items"
            }
        },
        "components": {
            "minecraft:material_instances": {
                "*": {
                    "render_method": "alpha_test",
                    "texture": "structure_void"
                }
            },
            "minecraft:geometry": "geometry.mrleefy"
        }
    }
}

how would i be able to walk through the block?

frozen pine
short patio
#

oh i think default value is getting set because its removed

#

ill try that next keeping it 0 instead of remove

short patio
#

any methods to place block in its place?

#

just use script with playerInteractWithBlock?

frozen pine
#

Yeah

short patio
#

ok ill do that then