admin管理员组文章数量:1345320
When i try to import OrbitControls.js the following:
I get the Cannot use import statement outside a module
error
So, I use :
<script type="module" src="OrbitControls.js"></script
>
but this time I get:
ReferenceError: OrbitControls is not defined
HTML body:
<body>
<div id="page-wrapper">
<h1>Open Spaceport Container (.drc):</h1>
<div>
<input type="file" id="fileInput">
</div>
</div>
<div>
<pre id="decoderType"><pre>
</div>
<div>
<pre id="fileDisplayArea"><pre>
</div>
<script src=".js/dev/build/three.min.js"></script>
<script src="DRACOLoader.js"></script>
<script src="geometry_helper.js"></script>
<script type="module" src="OrbitControls.js"></script>
<script>
"use strict"
// Configure decoder and create loader.
var textureLoader = new THREE.TextureLoader();
const loadManager = new THREE.LoadingManager();
...
When i try to import OrbitControls.js the following:
I get the Cannot use import statement outside a module
error
So, I use :
<script type="module" src="OrbitControls.js"></script
>
but this time I get:
ReferenceError: OrbitControls is not defined
HTML body:
<body>
<div id="page-wrapper">
<h1>Open Spaceport Container (.drc):</h1>
<div>
<input type="file" id="fileInput">
</div>
</div>
<div>
<pre id="decoderType"><pre>
</div>
<div>
<pre id="fileDisplayArea"><pre>
</div>
<script src="https://cdn.rawgit./mrdoob/three.js/dev/build/three.min.js"></script>
<script src="DRACOLoader.js"></script>
<script src="geometry_helper.js"></script>
<script type="module" src="OrbitControls.js"></script>
<script>
"use strict"
// Configure decoder and create loader.
var textureLoader = new THREE.TextureLoader();
const loadManager = new THREE.LoadingManager();
...
Share
Improve this question
asked Oct 1, 2020 at 12:27
badcodebadcode
6103 gold badges10 silver badges32 bronze badges
1 Answer
Reset to default 9You are mixing ES6 module with non-module code which is not valid. Do it like so:
<script type="module">
import * as THREE from 'https://cdn.jsdelivr/npm/[email protected]/build/three.module.js';
import { DRACOLoader } from 'https://cdn.jsdelivr/npm/[email protected]/examples/jsm/loaders/DRACOLoader.js';
import { OrbitControls } from 'https://cdn.jsdelivr/npm/[email protected]/examples/jsm/controls/OrbitControls.js';
// your actual app code
// Configure decoder and create loader.
const manager = new THREE.LoadingManager();
const textureLoader = new THREE.TextureLoader(manager);
</script>
I suggest you convert your custom geometry_helper.js
to a ES6 module, too.
本文标签: javascriptthreejsOrbitControls is not definedStack Overflow
版权声明:本文标题:javascript - three.jsOrbitControls is not defined - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743778547a2537427.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论