kaios-types
    Preparing search index...

    Interface CameraRegion

    Represents a region of interest in the camera field of view. Coordinates are mapped to the range -1000 to 1000.

    interface CameraRegion {
        bottom?: number;
        left?: number;
        right?: number;
        top?: number;
        weight?: number;
    }
    Index

    Properties

    bottom?: number

    Bottom coordinate.

    1000
    
    left?: number

    Left coordinate.

    -1000
    
    right?: number

    Right coordinate.

    1000
    
    top?: number

    Top coordinate.

    -1000
    
    weight?: number

    Weight of the region.

    1000