Beta
Protected
constructorReadonly
typeThe BlockType that the permutation has.
A copy of the permutation.
Creates a copy of this permutation.
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 } from "@minecraft/server";
// Fetch the block
const block = world.getDimension("overworld").getBlock({ x: 1, y: 2, z: 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")}`);
Static
resolveOptional
properties: Record<string, string | number | boolean>
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.