UNPKG

threepipe

Version:

A 3D viewer framework built on top of three.js in TypeScript with a focus on quality rendering, modularity and extensibility.

28 lines (27 loc) 1.03 kB
import { _testFinish, LoadingScreenPlugin, PLYLoadPlugin, ThreeViewer } from 'threepipe'; async function init() { const viewer = new ThreeViewer({ canvas: document.getElementById('mcanvas'), msaa: true, dropzone: { allowedExtensions: ['ply', 'hdr'], addOptions: { disposeSceneObjects: true, autoSetEnvironment: true, // when hdr is dropped autoSetBackground: true, }, }, plugins: [LoadingScreenPlugin], }); viewer.addPluginSync(PLYLoadPlugin); const options = { autoCenter: true, autoScale: true, }; await Promise.all([ viewer.setEnvironmentMap('https://threejs.org/examples/textures/equirectangular/venice_sunset_1k.hdr'), viewer.load('https://threejs.org/examples/models/ply/ascii/dolphins_colored.ply', options), viewer.load('https://threejs.org/examples/models/ply/binary/Lucy100k.ply', options), ]); } init().finally(_testFinish);