pmndrs / gltfjsx

🎮 Turns GLTFs into JSX components
https://gltf.pmnd.rs
MIT License
4.5k stars 293 forks source link

Auto import tag correction for useGLTF #67

Closed pcdependency closed 3 years ago

pcdependency commented 3 years ago

The auto-import tag is directing to the wrong directory.

Error: import { useGLTF } from "@react-three/drei/useGLTF";

Fixed: import { useGLTF } from "@react-three/drei/core/useGLTF";

The useGLTF file has been changed to inside of @react-three/drei/core

Thanks.