12345678910111213141516171819202122 |
- import { InterpolateDiscrete } from '../../constants.js';
- import { KeyframeTrack } from '../KeyframeTrack.js';
- /**
- * A Track that interpolates Strings
- */
- class StringKeyframeTrack extends KeyframeTrack {}
- Object.assign( StringKeyframeTrack.prototype, {
- ValueTypeName: 'string',
- ValueBufferType: Array,
- DefaultInterpolation: InterpolateDiscrete,
- InterpolantFactoryMethodLinear: undefined,
- InterpolantFactoryMethodSmooth: undefined
- } );
- export { StringKeyframeTrack };
|