소스 검색

Update ColladaLoader.js

Make missing joints a console warning rather than a showstopper. Often models will still be loadable / usable.
PeanutPower 12 년 전
부모
커밋
8b762a2875
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      examples/js/loaders/ColladaLoader.js

+ 3 - 1
examples/js/loaders/ColladaLoader.js

@@ -541,7 +541,9 @@ THREE.ColladaLoader = function () {
 
 			} else {
 
-				throw 'ColladaLoader: Could not find joint \'' + bone.sid + '\'.';
+				console.log('ColladaLoader: Could not find joint \'' + bone.sid + '\'.');
+				bone.skinningMatrix = new THREE.Matrix4();
+			    	bone.weights = [];
 
 			}