gpt4 book ai didi

javascript - fontloader 和 textgeometry 在 threejs 中不起作用

转载 作者:行者123 更新时间:2023-12-02 15:55:42 25 4
gpt4 key购买 nike

我需要在我的 threejs 项目中渲染一些文本,但是每次我添加模块时

import { FontLoader } from 'https://threejs.org/examples/jsm/loaders/FontLoader.js';
import { TextGeometry } from 'https://threejs.org/examples/jsm/geometries/TextGeometry.js';

抛出这个错误

Uncaught TypeError: Error resolving module specifier “three”. Relative module specifiers must start with “./”, “../” or “/”. FontLoader.js:5:7

来自 FontLoader.js。如果我不包含其中任何一个,则三个 js 渲染场景并且工作正常。在我的网络日志中,它运行完美,所有模块都是 200 OK。

最佳答案

您必须使用最新的 three.js 版本的导入映射。此外,切勿直接从 https://threejs.org 导入模块。始终使用如下 CDN:

<script async src="https://unpkg.com/es-module-shims@1.3.6/dist/es-module-shims.js"></script>

<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@0.138.3/build/three.module.js"
}
}
</script>

<script type="module">

import * as THREE from 'three';

import { FontLoader } from 'https://unpkg.com/three@0.138.3/examples/jsm/loaders/FontLoader.js';
import { TextGeometry } from 'https://unpkg.com/three@0.138.3/examples/jsm/geometries/TextGeometry.js';

Firefox 和 Safari 目前需要 polyfill es-module-shims.js

关于javascript - fontloader 和 textgeometry 在 threejs 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71557495/

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