7
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

three.jsでthree.module.jsを使う場合

Last updated at Posted at 2019-07-31

import * as THREE from '../build/three.module.js';

という風に使うんですが、この時

Uncaught SyntaxError: Unexpected token * 、というエラーが出ることがあります。

このエラーを解決するには、three.jsで書いたコードを囲んでいる
<script>~</script>
      ↓
<script type="module">~</script>に変えなければいけません。

また、three.module.jsを使っている場合に

例えば、このURL(https://github.com/mrdoob/three.js/blob/master/examples/jsm/controls/OrbitControls.js)
のOrbitcontrols.jsの機能を使いたいと思った場合は、ちゃんと18行目に書いてある

from "../../../build/three.module.js";

の部分を自分がthree.module.jsを入れた場所へのパスに書き換えましょう。

参考になったと思ったら、いいねお願いします。

three.js関連のコメントも待ってます。

7
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?