An exact coordinate within the world, including its dimension and location.
export interface DimensionLocation { dimension: Dimension; x: number; y: number; z: number;} Copy
export interface DimensionLocation { dimension: Dimension; x: number; y: number; z: number;}
Dimension that this coordinate is associated with.
X component of this dimension-location.
Y component of this dimension-location.
Z component of this dimension-location.
An exact coordinate within the world, including its dimension and location.
Source