@minecraft/server
    Preparing search index...

    Interface DimensionLocationBeta

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

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

    Properties

    Properties

    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.