Protected
constructorReadonly
typeThe BlockType that the permutation has.
A copy of the permutation.
Creates a copy of this permutation.
Returns the list of all of the properties that the permutation has.
Returns the property if the permutation has it, else null
.
Gets a property for the permutation.
This function can throw errors.
Returns true
if the permutation has the tag, else false
.
Checks to see if the permutation has a specific tag.
check_block_tags.js
import { world, BlockLocation } from "mojang-minecraft";
// 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")}`);
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.