An interface that represents a saved WorldEdit selection.

interface SavedWorldEditSelection {
    dimension:
        | "minecraft:overworld"
        | "minecraft:nether"
        | "minecraft:the_end";
    pos1: Vector3;
    pos2: Vector3;
}

Properties

Properties

dimension: "minecraft:overworld" | "minecraft:nether" | "minecraft:the_end"

The dimension of the saved selection.

pos1: Vector3

The first corner of the saved selection.

pos2: Vector3

The second corner of the saved selection.