Interface SubChunkIndexDimensionVectorXZ

Represents a two-directional vector with X and Z components and an associated dimension and a sub-chunk index.

interface SubChunkIndexDimensionVectorXZ {
    dimension: "overworld" | "nether" | "the_end";
    subChunkIndex: number;
    x: number;
    z: number;
}

Hierarchy (View Summary)

Properties

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

Dimension that this coordinate is associated with.

subChunkIndex: number

The index of this sub-chunk.

Should be between 0 and 15 (inclusive).

x: number

X component of this vector.

z: number

Z component of this vector.