Pārlūkot izejas kodu

FbxLoader base64 image parsing error fix update

Lewy Blue 8 gadi atpakaļ
vecāks
revīzija
027b3b0d9c
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      examples/js/loaders/FBXLoader.js

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

@@ -262,7 +262,7 @@
 		if ( typeof content === 'string' ) {
 
 			// ASCII format sometimes adds an extra character to the end of the content string
-			if ( content.slice( - 1 ) !== '=' ) {
+			if ( content.slice( - 1 ) === ',' ) {
 
 				content = content.slice( 0, - 1 );