Переглянути джерело

Merge pull request #5143 from dmtaub/fixOBJLoader

handle another case of line continuation
Mr.doob 11 роки тому
батько
коміт
dd792c7eed
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      examples/js/loaders/OBJLoader.js

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

@@ -192,7 +192,7 @@ THREE.OBJLoader.prototype = {
 
 		// fixes
 
-		text = text.replace( /\\\r\n/g, '' ); // handles line continuations \
+		text = text.replace( /\\\r?\n/g, '' ); // handles line continuations \
 
 		var lines = text.split( '\n' );