소스 검색

USDZLoader: Handle mesh names.

Mr.doob 3 년 전
부모
커밋
8938d338bc
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      examples/jsm/loaders/USDZLoader.js

+ 7 - 0
examples/jsm/loaders/USDZLoader.js

@@ -500,6 +500,13 @@ class USDZLoader extends Loader {
 			if ( name.startsWith( 'def Xform' ) ) {
 
 				const mesh = buildMesh( root[ name ] );
+
+				if ( /def Xform "(\w+)"/.test( name ) ) {
+
+					mesh.name = /def Xform "(\w+)"/.exec( name )[ 1 ];
+
+				}
+
 				group.add( mesh );
 
 			}