threepipe
Version:
A 3D viewer framework built on top of three.js in TypeScript with a focus on quality rendering, modularity and extensibility.
69 lines (59 loc) • 1.91 kB
text/typescript
import {
_testFinish,
IObject3D,
LoadingScreenPlugin,
PhysicalMaterial,
ProgressivePlugin,
SSAAPlugin,
ThreeViewer,
} from 'threepipe'
import {TweakpaneUiPlugin} from '@threepipe/plugin-tweakpane'
async function init() {
const viewer = new ThreeViewer({
canvas: document.getElementById('mcanvas') as HTMLCanvasElement,
debug: true,
msaa: false,
rgbm: true,
renderScale: 1,
dropzone: {
addOptions: {
disposeSceneObjects: true,
importConfig: true,
},
},
plugins: [LoadingScreenPlugin],
})
viewer.addPluginSync(new SSAAPlugin())
await Promise.all([
viewer.setEnvironmentMap('https://threejs.org/examples/textures/equirectangular/venice_sunset_1k.hdr'),
// viewer.load<IObject3D>('https://threejs.org/examples/models/gltf/IridescenceLamp.glb', {
// autoCenter: true,
// autoScale: true,
// }),
viewer.load<IObject3D>('https://threejs.org/examples/models/gltf/LittlestTokyo.glb', {
autoCenter: true,
autoScale: true,
}),
])
viewer.renderManager.renderPass.overrideMaterial = new PhysicalMaterial({
color: 'white',
roughness: 1,
metalness: 0,
wireframe: true,
})
viewer.scene.mainCamera.position.set(0, 0, 3.5)
const ui = viewer.addPluginSync(new TweakpaneUiPlugin(true))
ui.appendChild({
type: 'toggle',
label: 'Auto Rotate',
property: [viewer.scene.mainCamera.controls, 'autoRotate'],
})
ui.setupPluginUi(SSAAPlugin, {
expanded: true,
})
ui.setupPlugins(ProgressivePlugin)
ui.appendChild(viewer.renderManager.uiConfig)
await viewer.getPlugin(ProgressivePlugin)?.convergedPromise
console.log('converged')
}
init().finally(_testFinish)