starry / backend /libs /three /animation /tracks /NumberKeyframeTrack.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 numeric keyframe values.
*/
class NumberKeyframeTrack extends KeyframeTrack {}
NumberKeyframeTrack.prototype.ValueTypeName = 'number';
// ValueBufferType is inherited
// DefaultInterpolation is inherited
export { NumberKeyframeTrack };