|
@@ -1,5 +1,4 @@
|
|
|
-import { KeyframeTrackPrototype } from '../KeyframeTrackPrototype.js';
|
|
|
-import { KeyframeTrackConstructor } from '../KeyframeTrackConstructor.js';
|
|
|
+import { KeyframeTrack } from '../KeyframeTrack.js';
|
|
|
|
|
|
/**
|
|
|
*
|
|
@@ -13,11 +12,11 @@ import { KeyframeTrackConstructor } from '../KeyframeTrackConstructor.js';
|
|
|
|
|
|
function VectorKeyframeTrack( name, times, values, interpolation ) {
|
|
|
|
|
|
- KeyframeTrackConstructor.call( this, name, times, values, interpolation );
|
|
|
+ KeyframeTrack.call( this, name, times, values, interpolation );
|
|
|
|
|
|
}
|
|
|
|
|
|
-VectorKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrackPrototype ), {
|
|
|
+VectorKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), {
|
|
|
|
|
|
constructor: VectorKeyframeTrack,
|
|
|
|