Ver código fonte

BinaryLoader: Removed double slash.

Mr.doob 12 anos atrás
pai
commit
4d75118300
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      examples/js/loaders/BinaryLoader.js

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

@@ -69,7 +69,7 @@ THREE.BinaryLoader.prototype.loadAjaxJSON = function ( context, url, callback, t
 THREE.BinaryLoader.prototype.loadAjaxBuffers = function ( json, callback, binaryPath, texturePath, callbackProgress ) {
 
 	var xhr = new XMLHttpRequest(),
-		url = binaryPath + "/" + json.buffers;
+		url = binaryPath + json.buffers;
 
 	xhr.addEventListener( 'load', function ( event ) {
 

粤ICP备19079148号