فهرست منبع

Fixed ColorKeyframeTrack constructor.

tschw 9 سال پیش
والد
کامیت
a02819aea9
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/animation/tracks/ColorKeyframeTrack.js

+ 1 - 1
src/animation/tracks/ColorKeyframeTrack.js

@@ -10,7 +10,7 @@
 
 
 THREE.ColorKeyframeTrack = function ( name, times, values, interpolation ) {
 THREE.ColorKeyframeTrack = function ( name, times, values, interpolation ) {
 
 
-	THREE.KeyframeTrack.call( this, name, keys, interpolation );
+	THREE.KeyframeTrack.call( this, name, times, values, interpolation );
 
 
 };
 };