Private
Static
This function can be called in early-execution mode.
import { DimensionTypes, world } from "@minecraft/server";const dimensions = DimensionTypes.getAll();for (const dimensionType of dimensions) {world.sendMessage(dimensionType.typeId);}// minecraft:overworld// minecraft:nether// minecraft:the_end Copy
import { DimensionTypes, world } from "@minecraft/server";const dimensions = DimensionTypes.getAll();for (const dimensionType of dimensions) {world.sendMessage(dimensionType.typeId);}// minecraft:overworld// minecraft:nether// minecraft:the_end
Remarks
This function can be called in early-execution mode.