Type Alias TAddModel

TAddModel: {
    interactive?: boolean;
    opacity?: number;
    rotation?: [number, number, number];
    scale?: [number, number, number];
    target: Space | Door | Coordinate;
}

The target for the add model operation.

Type declaration

  • Optionalinteractive?: boolean

    Whether the should be clickable

    false
    
  • Optionalopacity?: number

    Optional. Determines the opacity of the model.

    1
    
  • Optionalrotation?: [number, number, number]

    Optional. Determines the rotation of the model, in degrees.

    [0, 0, 0]
    
  • Optionalscale?: [number, number, number]

    Optional. Determines the scale of the model.

    [1, 1, 1]
    
  • target: Space | Door | Coordinate

    The target for the model to be placed on.