Pārlūkot izejas kodu

The PLY format starts with the ply magic word (#23018)

gero3 3 gadi atpakaļ
vecāks
revīzija
bc5bdbc8ea
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      examples/jsm/loaders/PLYLoader.js

+ 1 - 1
examples/jsm/loaders/PLYLoader.js

@@ -88,7 +88,7 @@ class PLYLoader extends Loader {
 
 		function parseHeader( data ) {
 
-			const patternHeader = /ply([\s\S]*)end_header\r?\n/;
+			const patternHeader = /^ply([\s\S]*)end_header\r?\n/;
 			let headerText = '';
 			let headerLength = 0;
 			const result = patternHeader.exec( data );