1

我正在尝试使用来自@react-three/drei 的一些组件,它给了我大量的导入错误。无论我尝试从@react-three/drei 使用什么,我都会收到这些错误。例子:

ERROR in ./node_modules/three-stdlib/loaders/EXRLoader.js 1703:52-62
export 'RGBEFormat' (imported as 'RGBEFormat') was not found in 'three'

另一个例子:

export 'RGBEEncoding' (imported as 'RGBEEncoding') was not found in 'three'

这些是项目的依赖项:

    "@react-three/drei": "^8.3.1",
    "@react-three/fiber": "^7.0.24",
    "@testing-library/jest-dom": "^5.16.1",
    "@testing-library/react": "^12.1.2",
    "@testing-library/user-event": "^13.5.0",
    "react": "^17.0.2",
    "react-dom": "^17.0.2",
    "react-scripts": "5.0.0",
    "three": "^0.136.0",
    "three-stdlib": "^2.6.2",
    "web-vitals": "^2.1.2"

感谢您的帮助,并在此先感谢!

4

1 回答 1

4

Three.js迁移指南说“RGBEEncoding 和 RGBEFormat 已被删除”。从 136 开始。
尝试改用 135。

于 2021-12-25T21:23:14.903 回答