forked from playcanvas/supersplat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 2.19 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
<!DOCTYPE html>
<html>
<head>
<title>SuperSplat</title>
<meta charset="utf-8" />
<base href="__BASE_HREF__">
<link rel="manifest" href="./manifest.json">
<link rel="stylesheet" href="./index.css">
<link rel="shortcut icon" href="#">
<meta name="description" content="SuperSplat is an advanced browser-based editor for manipulating and optimizing 3D Gaussian Splats. It is open source and engine agnostic." />
<meta name="keywords" content="PLY, Gaussian, Splat, PlayCanvas, Editor" />
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://playcanvas.com/supersplat/editor" />
<meta property="og:title" content="SuperSplat" />
<meta property="og:description" content="SuperSplat is an advanced browser-based editor for manipulating and optimizing 3D Gaussian Splats. It is open source and engine agnostic." />
<meta property="og:image" content="https://playcanvas.com/supersplat/editor/static/images/header.webp" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://playcanvas.com/supersplat/editor" />
<meta property="twitter:title" content="SuperSplat" />
<meta property="twitter:description" content="SuperSplat is an advanced browser-based editor for manipulating and optimizing 3D Gaussian Splats. It is open source and engine agnostic." />
<meta property="twitter:image" content="https://playcanvas.com/supersplat/editor/static/images/header.webp" />
<!-- Service worker -->
<script>
const sw = navigator.serviceWorker;
if (sw) {
sw.register('./sw.js')
.then(reg => console.log('service worker registered', reg))
.catch(err => console.log('failed to register service worker', err));
}
</script>
</head>
<body>
<script type="module" src="./index.js"></script>
</body>
</html>