@minecraft
    正在准备搜索索引...

    接口 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.