浏览代码

Update ColladaLoader.js

Make missing joints a console warning rather than a showstopper. Often models will still be loadable / usable.
PeanutPower 11 年之前
父节点
当前提交
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 = [];
 
 			}