浏览代码

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 );
 
 };