質問編集履歴

1

コードを追加しました

2020/11/04 12:21

投稿

melted-snow
melted-snow

スコア22

test CHANGED
File without changes
test CHANGED
@@ -35,3 +35,51 @@
35
35
 
36
36
 
37
37
  どれもあまり関係ないような感じ…
38
+
39
+
40
+
41
+ ### コード
42
+
43
+ ```html
44
+
45
+ <!DOCTYPE html>
46
+
47
+ <html>
48
+
49
+ <head>
50
+
51
+ <meta charset="UTF-8">
52
+
53
+ <title>three.js</title>
54
+
55
+ </head>
56
+
57
+ <body>
58
+
59
+ <script type="module" src="scene00.js"></script>
60
+
61
+ </body>
62
+
63
+ </html>
64
+
65
+ ```
66
+
67
+ ```javascript
68
+
69
+ // Moduleのインポート
70
+
71
+ import * as THREE from './public/threejs-121/build/three.module.js';
72
+
73
+ import {OrbitControls} from './public/threejs-121/examples/jsm/controls/OrbitControls.js';
74
+
75
+ import {WEBGL} from './public/threejs-121/examples/jsm/WebGL.js';
76
+
77
+ if (WEBGL.isWebGL2Available() === false) {
78
+
79
+ document.body.appendChild(WEBGL.getWebGL2ErrorMessage());
80
+
81
+ // 以下略
82
+
83
+ ```
84
+
85
+ ちなみに、これらはサンプルコードを写しただけのものです