-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.js
36 lines (33 loc) · 913 Bytes
/
index.js
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
import {
ControllerInteraction,
HandInput,
SimpleScene,
SimpleEquirectMediaLayer,
MultipleLayers,
} from "./apps";
document.addEventListener("DOMContentLoaded", () => {
let app;
switch (window.location.pathname) {
case "/controller-interaction":
app = new ControllerInteraction();
break;
case "/hand-input":
app = new HandInput();
break;
case "/simple-scene":
app = new SimpleScene();
break;
case "/simple-equirect-layer":
app = new SimpleEquirectMediaLayer();
break;
case "/multiple-layers":
app = new MultipleLayers();
break;
default:
const indexContainer = document.querySelector(".container");
indexContainer.style.display = "";
}
if (app) {
window.app = app;
}
});