Beta
Private
constructorReadonly
Beta
typeThe BlockType that the permutation has.
Beta
A copy of the permutation.
Creates a copy of this permutation.
Beta
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")}`);
An optional set of states to compare against.
Optional
states: Record<string, string | number | boolean>Returns a boolean whether a specified permutation matches this permutation. If states is not specified, matches checks against the set of types more broadly.
Beta
Identifier of the block property.
Value of the block property.
Returns a derived BlockPermutation with a specific property set.
This function can throw errors.
Static
resolveIdentifier of the block to check.
Optional
states: Record<string, string | number | boolean>Given a type identifier and an optional set of properties, will return a BlockPermutation object that is usable in other block APIs (e.g., block.setPermutation)
This function can throw errors.
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.