Type Alias TImageState

TImageState: {
    flipImagesToFaceCamera: boolean;
    height: number;
    opacity: number;
    position: Coordinate;
    rotation: number;
    type: "image3d";
    verticalOffset: number;
    visible: boolean;
    width: number;
}

Type declaration

  • flipImagesToFaceCamera: boolean

    Attempt to keep the image facing the camera as much as possible

    false
    
  • height: number

    Height of the image in meters.

    1
    
  • opacity: number

    Opacity of the image.

    1
    
  • position: Coordinate

    Coordinate position of the image.

  • rotation: number

    Rotation of the image in degrees clockwise from North. 0 degrees is North, 90 degrees is East, 180 degrees is South, and 270 degrees is West.

    0
    
  • type: "image3d"
  • verticalOffset: number

    Vertical offset of the image in meters.

    0
    
  • visible: boolean

    Whether the image is visible.

    true
    
  • width: number

    Width of the image in meters.

    1