-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
55 lines (49 loc) · 2.11 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<title>XR Publisher Editor</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="editors/css/main.css">
<!-- <link rel="stylesheet" href="/styles/main.css"> -->
</head>
<body>
<script type="importmap">
{
"imports": {
"three": "/node_modules/three/build/three.module.js",
"three/addons/": "/node_modules/three/examples/jsm/",
"three/examples/": "/node_modules/three/examples/"
}
}
</script>
<!-- Base CodeMirror -->
<script src="editors/libs/codemirror/codemirror.js"></script>
<script src="editors/libs/codemirror/mode/javascript.js"></script>
<script src="editors/libs/codemirror/mode/glsl.js"></script>
<!-- Tern Dependencies -->
<script src="editors/libs/acorn/acorn.js"></script>
<script src="editors/libs/acorn/acorn_loose.js"></script>
<script src="editors/libs/acorn/walk.js"></script>
<script src="editors/libs/ternjs/polyfill.js"></script>
<script src="editors/libs/ternjs/signal.js"></script>
<script src="editors/libs/ternjs/tern.js"></script>
<script src="editors/libs/ternjs/def.js"></script>
<script src="editors/libs/ternjs/comment.js"></script>
<script src="editors/libs/ternjs/infer.js"></script>
<script src="editors/libs/ternjs/doc_comment.js"></script>
<script src="editors/libs/tern-threejs/threejs.js"></script>
<!-- CodeMirror Addons -->
<script src="editors/libs/codemirror/addon/dialog.js"></script>
<script src="editors/libs/codemirror/addon/show-hint.js"></script>
<script src="editors/libs/codemirror/addon/tern.js"></script>
<!-- Other Dependencies -->
<script src="editors/libs/esprima.js"></script>
<script src="editors/libs/jsonlint.js"></script>
<!-- UI Libraries -->
<script type="module" src="editors/libs/ui.js"></script>
<script type="module" src="editors/libs/ui.three.js"></script>
<!-- Renderer -->
<script type="module" src="renderer.js"></script>
</body>
</html>