gpt4 book ai didi

javascript - 来自 npm : import THREE. Lut() 的 Three.js

转载 作者:行者123 更新时间:2023-11-28 04:17:36 25 4
gpt4 key购买 nike

我已经从 npm 安装了三个包,并尝试调用

lut = new THREE.Lut( colorMap, numberOfColors );

我收到“在“三”中找不到导出“Lut”(导入为“三”)

Lut.js 文件可以在 \node_modules\third\examples\js\math 中找到,但它不包含 export > 声明并需要 third.js 本身。

我尝试过 import 'third/examples/js/math/Lut'; 和其他约定,但没有成功。

最佳答案

你试过吗

import Lut from 'three/examples/js/math/Lut'

然后

let lut = new Lut(...);

想必你也可以这样做

import THREE from 'three'
let lut = new THREE.Lut(...);

编辑

看起来 Three.js 不允许您此时导入示例,您可以在本期中查看很多建议/解决方法,但它看起来并不就像它很快就会实现一样:

https://github.com/mrdoob/three.js/issues/9562

关于javascript - 来自 npm : import THREE. Lut() 的 Three.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45694033/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com