Ver Fonte

Fixed ColorKeyframeTrack constructor.

tschw há 10 anos atrás
pai
commit
a02819aea9
1 ficheiros alterados com 1 adições e 1 exclusões
  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 );
 
 
 };
 };
 
 

粤ICP备19079148号