Illutions Engine API - v0.26.0
    Preparing search index...

    Interface CamOrthographicCfg

    Defines the orthographic camera settings used to render the scene without perspective distortion.

    interface CamOrthographicCfg {
        bottom: number;
        far: number;
        left: number;
        lookAt: { x: number; y: number; z: number };
        near: number;
        position: { x: number; y: number; z: number };
        right: number;
        top: number;
        type: "orthographic";
    }

    Hierarchy (View Summary)

    Index
    bottom: number

    Camera frustum bottom plane.

    -1
    
    far: number

    The distance to the far clipping plane.

    1000
    
    left: number

    Camera frustum left plane.

    -1
    
    lookAt: { x: number; y: number; z: number }

    The point in 3D space the camera should look at.

    { x: 0, y: 0, z: 0 }
    
    near: number

    The distance to the near clipping plane.

    0.1
    
    position: { x: number; y: number; z: number }

    The default position of the camera in 3D space.

    { x: 0, y: 0.5, z: 0.5 }
    
    right: number

    Camera frustum right plane.

    1
    
    top: number

    Camera frustum top plane.

    1
    
    type: "orthographic"

    The camera type.

    'orthographic'