starry / backend /libs /three /animation /tracks /VectorKeyframeTrack.d.ts
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
import { KeyframeTrack } from './../KeyframeTrack';
import { InterpolationModes } from '../../constants';
export class VectorKeyframeTrack extends KeyframeTrack {
constructor(name: string, times: any[], values: any[], interpolation?: InterpolationModes);
/**
* @default 'vector'
*/
ValueTypeName: string;
}