UNPKG

three

Version:

JavaScript 3D library

19 lines (14 loc) 327 B
import { KeyframeTrack } from './../KeyframeTrack'; import { InterpolationModes } from '../../constants'; export class ColorKeyframeTrack extends KeyframeTrack { constructor( name: string, times: any[], values: any[], interpolation?: InterpolationModes ); /** * @default 'color' */ ValueTypeName: string; }