Photo Sphere Viewer
    Preparing search index...

    Type Alias CubemapStripe

    Object defining a cubemap as a single stripe file

    type CubemapStripe = {
        flipTopBottom?: boolean;
        order?: CubemapFaces[];
        path: string;
        type: "stripe";
    }
    Index

    Properties

    flipTopBottom?: boolean

    Set to true if the top and bottom faces are not correctly oriented

    false
    
    order?: CubemapFaces[]

    Order of the faces in the file

    'left, front, right, back, top, bottom'
    
    path: string
    type: "stripe"