import {_testFinish, HemisphereLight, ThreeViewer} from 'threepipe' const viewer = new ThreeViewer({canvas: document.getElementById('mcanvas')}) async function init() { viewer.scene.addObject(new HemisphereLight(0xffffff, 0x444444, 10)) const result = await viewer.load('https://threejs.org/examples/models/fbx/Samba Dancing.fbx', { autoCenter: true, autoScale: true, }) console.log(result) } init().finally(_testFinish)