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

    介面 TimeEventProperty

    時間事件參數。

    interface TimeEventProperty {
        end?: string | number | Date;
        onEnter?: () => void;
        onLeave?: () => void;
        onPlay?: (time: Date) => void;
        start?: string | number | Date;
    }
    索引

    屬性

    end?: string | number | Date

    事件結束時間(包含)。

    onEnter?: () => void

    進入時間範圍要執行的函式。

    onLeave?: () => void

    離開時間範圍要執行的函式。

    onPlay?: (time: Date) => void

    時間範圍內要執行的函式。

    start?: string | number | Date

    事件開始時間(包含)。