Class BlockPermutation

Contains the combination of type BlockType and properties (also sometimes called block state) which describe a block (but does not belong to a specific Block). This type was introduced as of version 1.17.10.21.

Hierarchy

  • BlockPermutation

Constructors

Properties

Methods

Constructors

Properties

type: BlockType

The BlockType that the permutation has.

Methods

  • Returns IBlockProperty[]

    Returns the list of all of the properties that the permutation has.

    Remarks

    Returns all available properties associated with this block.

  • Parameters

    • propertyName: string

    Returns IBlockProperty

    Returns the property if the permutation has it, else null.

    Remarks

    Gets a property for the permutation.

    Throws

    This function can throw errors.

  • Returns string[]

    Remarks

    Creates a copy of the permutation.

  • Parameters

    • tag: string

    Returns boolean

    Returns true if the permutation has the tag, else false.

    Remarks

    Checks to see if the permutation has a specific tag.

    Example

    check_block_tags.js

           import { world, BlockLocation } from "@minecraft/server";

    // Fetch the block
    const block = world.getDimension("overworld").getBlock(new BlockLocation(1, 2, 3));
    const blockPerm = block.getPermutation();

    console.log(`Block is dirt: ${blockPerm.hasTag("dirt")}`);
    console.log(`Block is wood: ${blockPerm.hasTag("wood")}`);
    console.log(`Block is stone: ${blockPerm.hasTag("stone")}`);