动画轨道信息接口

Animation track information interface

interface ITrackEntry {
    animation: {
        duration: number;
    };
    animationEnd: number;
    animationStart: number;
    loop: boolean;
    trackIndex: number;
}

属性

animation: {
    duration: number;
}
animationEnd: number
animationStart: number
loop: boolean
trackIndex: number