Type Alias TImageUpdateState

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

Type declaration

  • OptionalflipImagesToFaceCamera?: boolean

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

    false
    
  • Optionalheight?: number

    Height of the image in meters.

    1
    
  • Optionalopacity?: number

    Opacity of the image.

    1
    
  • Optionalposition?: Coordinate

    Coordinate position of the image.

  • Optionalrotation?: 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
    
  • Optionaltype?: "image3d"
  • OptionalverticalOffset?: number

    Vertical offset of the image in meters.

    0
    
  • Optionalvisible?: boolean

    Whether the image is visible.

    true
    
  • Optionalwidth?: number

    Width of the image in meters.

    1