mirror of
https://github.com/SamEyeBam/animate.git
synced 2026-02-05 18:00:05 +00:00
13 lines
311 B
JavaScript
13 lines
311 B
JavaScript
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 };
|