PilotGaea 3D O'view
    正在準備搜尋索引...

    介面 PositionTimeOutProperty

    攝影機位置參數。

    interface PositionTimeOutProperty {
        async?: boolean;
        camera: { pos: Geo3DPoint; v: Geo3DPoint; up: Geo3DPoint };
        rotTimeOut?: number;
        posTimeOut?: number;
        easing?:
            | "LINEAR"
            | "IN_QUAD"
            | "OUT_QUAD"
            | "IN_OUT_QUAD"
            | "IN_CUBIC"
            | "OUT_CUBIC"
            | "IN_OUT_CUBIC"
            | "IN_QUART"
            | "OUT_QUART"
            | "IN_OUT_QUART"
            | "IN_QUINT"
            | "OUT_QUINT"
            | "IN_OUT_QUINT";
    }
    索引

    屬性

    async?: boolean

    是否非同步。

    false
    
    camera: { pos: Geo3DPoint; v: Geo3DPoint; up: Geo3DPoint }

    攝影機。

    類型宣告

    rotTimeOut?: number

    旋轉時間(毫秒)。

    500
    
    posTimeOut?: number

    移動時間(毫秒)。

    500
    
    easing?:
        | "LINEAR"
        | "IN_QUAD"
        | "OUT_QUAD"
        | "IN_OUT_QUAD"
        | "IN_CUBIC"
        | "OUT_CUBIC"
        | "IN_OUT_CUBIC"
        | "IN_QUART"
        | "OUT_QUART"
        | "IN_OUT_QUART"
        | "IN_QUINT"
        | "OUT_QUINT"
        | "IN_OUT_QUINT"

    緩動函數。

    "LINEAR"