| 123456789101112131415161718192021222324252627282930 |
- import {_testFinish, IObject3D, ThreeViewer} from 'threepipe'
- import {TweakpaneUiPlugin} from '@threepipe/plugin-tweakpane'
-
- async function init() {
-
- const viewer = new ThreeViewer({
- canvas: document.getElementById('mcanvas') as HTMLCanvasElement,
- msaa: true,
- })
-
- const ui = viewer.addPluginSync(new TweakpaneUiPlugin(true))
-
- await viewer.setEnvironmentMap('https://threejs.org/examples/textures/equirectangular/venice_sunset_1k.hdr', {
- setBackground: true,
- })
- const result = await viewer.load<IObject3D>('https://threejs.org/examples/models/gltf/DamagedHelmet/glTF/DamagedHelmet.gltf', {
- autoCenter: true,
- autoScale: true,
- })
- const model = result?.getObjectByName('node_damagedHelmet_-6514')
- const materials = model?.materials || []
- for (const material of materials) {
- const config = material.uiConfig
- if (!config) continue
- ui.appendChild(config)
- }
-
- }
-
- init().then(_testFinish)
|