我怎样才能使我用 GLTF 加载器加载的对象作为 1 个网格。当我用鼠标(拖放)移动它们时,它们作为单独的对象移动,当我试图在控制台中检查大小时......它一遍又一遍地有 100 行相同大小。
var loader = new THREE.GLTFLoader();
loader.load( `objekt.gltf`, ( gltf ) => {
this.scene.add( gltf.scene );
gltf.scene.traverse( function( object ) {
console.log(" GALDS " );
var box = new THREE.Box3().setFromObject( object );
console.log( box.getSize() );
if ( object.isMesh ) {
objects.push( object );
}
} );
});