Просмотр исходного кода

Set local path like in GLTFLoader

Pascal Häusler 8 лет назад
Родитель
Сommit
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;
 		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 );
 		var loader = new THREE.FileLoader( scope.manager );
 		loader.setPath( scope.path );
 		loader.setPath( scope.path );

粤ICP备19079148号