Преглед изворни кода

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.KeyframeTrack.call( this, name, keys, interpolation );
+	THREE.KeyframeTrack.call( this, name, times, values, interpolation );
 
 };