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