31 lines
617 B
JavaScript
31 lines
617 B
JavaScript
import { KeyframeTrack } from '../KeyframeTrack.js';
|
|
|
|
/**
|
|
*
|
|
* A Track of numeric keyframe values.
|
|
*
|
|
* @author Ben Houston / http://clara.io/
|
|
* @author David Sarno / http://lighthaus.us/
|
|
* @author tschw
|
|
*/
|
|
|
|
function NumberKeyframeTrack( name, times, values, interpolation ) {
|
|
|
|
KeyframeTrack.call( this, name, times, values, interpolation );
|
|
|
|
}
|
|
|
|
NumberKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), {
|
|
|
|
constructor: NumberKeyframeTrack,
|
|
|
|
ValueTypeName: 'number'
|
|
|
|
// ValueBufferType is inherited
|
|
|
|
// DefaultInterpolation is inherited
|
|
|
|
} );
|
|
|
|
export { NumberKeyframeTrack };
|