Interface DimensionLocation

Represents a three-directional vector with an associated dimension.

interface DimensionLocation {
    dimension: "overworld" | "nether" | "the_end";
    x: number;
    y: number;
    z: number;
}

Hierarchy (View Summary)

Properties

Properties

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

Dimension that this coordinate is associated with.

x: number

X component of this vector.

y: number

Y component of this vector.

z: number

Z component of this vector.