Script API - v1.26.10.25
    Preparing search index...

    Interface WaypointTextureBoundsBeta

    Defines a texture and the distance range in which it should be displayed. Used within a WaypointTextureSelector to create distance-based texture switching.

    interface WaypointTextureBounds {
        lowerBound: number;
        texture: WaypointTexture;
        upperBound?: number;
    }
    Index

    Properties

    lowerBound: number

    The lower distance bound for this texture. The texture is displayed when the distance to the waypoint is greater than this value. Value must be greater than or equal to 0.

    Minimum Value: 0

    The WaypointTexture to display within this distance range.

    upperBound?: number

    The upper distance bound for this texture. The texture is displayed when the distance to the waypoint is less than or equal to this value. If undefined, there is no upper limit. Value must be greater than or equal to 0.

    Minimum Value: 0