接口 DimensionLocation实验性

An exact coordinate within the world, including its dimension and location.

interface DimensionLocation {
    dimension: Dimension;
    x: number;
    y: number;
    z: number;
}

属性

属性

dimension: Dimension

Dimension that this coordinate is associated with.

x: number

X component of this dimension-location.

y: number

Y component of this dimension-location.

z: number

Z component of this dimension-location.