소스 검색

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