SW Combine SDK
    Preparing search index...

    Interface EntityCoordinates

    Coordinate set with galaxy, system, surface, and ground positions Fields are optional to guard against unpredictable API responses.

    interface EntityCoordinates {
        galaxy?: { attributes?: { x: number; y: number } | null };
        ground?: { attributes?: { x: number; y: number } | null };
        surface?: { attributes?: { x: number; y: number } | null };
        system?: { attributes?: { x: string; y: string } | null };
    }
    Index

    Properties

    galaxy?: { attributes?: { x: number; y: number } | null }
    ground?: { attributes?: { x: number; y: number } | null }
    surface?: { attributes?: { x: number; y: number } | null }
    system?: { attributes?: { x: string; y: string } | null }