加载笔记内容...
加载笔记内容...
TS2339 is an error that occurs when a property does not exist on a type. For example, Property 'materials' does not exist on type 'GLTF'
.
You can use the gltfjsx
module to convert .glb to .tsx. You can run npx gltfjsx file.glb -t
or npx gltfjsx file.glb --types
.
Next.js: 需要设置 transpilePackages: ['@react-three/drei']
比如 useGLTF 或 自定义资源地址。
1import { useGLTF, Environment } from '@react-three/drei';
2
3const { nodes, materials } = useGLTF(
4 '/materials/banana-v1-transformed.glb',
5 '/draco/1.5.6/',
6 ) as BananaGLTFResult;
7
8<Environment files="venice_sunset_1k.hdr" path="/hdri/" />