瀏覽代碼

Set local path like in GLTFLoader

Pascal Häusler 7 年之前
父節點
當前提交
9be2ae09e9
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      examples/js/loaders/ColladaLoader.js

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

@@ -19,7 +19,7 @@ THREE.ColladaLoader.prototype = {
 
 		var scope = this;
 		
-                scope.path = scope.path === undefined ? THREE.Loader.prototype.extractUrlBase( url ) : scope.path; 
+                var path = scope.path === undefined ? THREE.Loader.prototype.extractUrlBase( url ) : scope.path; 
 		
 		var loader = new THREE.FileLoader( scope.manager );
 		loader.setPath( scope.path );