starry / backend /libs /three /animation /tracks /VectorKeyframeTrack.js
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
import { KeyframeTrack } from '../KeyframeTrack.js';
/**
* A Track of vectored keyframe values.
*/
class VectorKeyframeTrack extends KeyframeTrack {}
VectorKeyframeTrack.prototype.ValueTypeName = 'vector';
// ValueBufferType is inherited
// DefaultInterpolation is inherited
export { VectorKeyframeTrack };