|
@@ -26,7 +26,7 @@ export class KeyframeTrack {
|
|
InterpolantFactoryMethodLinear( result: any ): LinearInterpolant;
|
|
InterpolantFactoryMethodLinear( result: any ): LinearInterpolant;
|
|
InterpolantFactoryMethodSmooth( result: any ): CubicInterpolant;
|
|
InterpolantFactoryMethodSmooth( result: any ): CubicInterpolant;
|
|
|
|
|
|
- setInterpolation( interpolation: InterpolationModes ): void;
|
|
|
|
|
|
+ setInterpolation( interpolation: InterpolationModes ): KeyframeTrack;
|
|
getInterpolation(): InterpolationModes;
|
|
getInterpolation(): InterpolationModes;
|
|
|
|
|
|
getValuesize(): number;
|
|
getValuesize(): number;
|
|
@@ -36,8 +36,8 @@ export class KeyframeTrack {
|
|
trim( startTime: number, endTime: number ): KeyframeTrack;
|
|
trim( startTime: number, endTime: number ): KeyframeTrack;
|
|
validate(): boolean;
|
|
validate(): boolean;
|
|
optimize(): KeyframeTrack;
|
|
optimize(): KeyframeTrack;
|
|
|
|
+ clone(): KeyframeTrack;
|
|
|
|
|
|
- static parse( json: any ): KeyframeTrack;
|
|
|
|
static toJSON( track: KeyframeTrack ): any;
|
|
static toJSON( track: KeyframeTrack ): any;
|
|
|
|
|
|
}
|
|
}
|