Explorar o código

Fix for exception with 1 keyframe animations

Animations with only one key throw exception because next frame is not available.
michax %!s(int64=9) %!d(string=hai) anos
pai
achega
803a5f37ef
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      examples/js/loaders/collada/KeyFrameAnimation.js

+ 1 - 1
examples/js/loaders/collada/KeyFrameAnimation.js

@@ -84,7 +84,7 @@ THREE.KeyFrameAnimation.prototype = {
 
 				var keys = this.data.hierarchy[ h ].keys;
 
-				if ( keys.length ) {
+				if ( keys.length > 1 ) {
 
 					node.animationCache.prevKey = keys[ 0 ];
 					node.animationCache.nextKey = keys[ 1 ];