-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (33 loc) · 1.52 KB
/
index.html
File metadata and controls
41 lines (33 loc) · 1.52 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>PHY</title>
<meta charset="utf-8">
<meta name="author" content="lo-th">
<meta name="designer" content="lo-th">
<meta name="publisher" content="lo-th">
<meta name="description" content="Physics engine for three.js">
<meta name="keywords" content="worker, physics, ammo, physx, havok, oimo, artist, developer, coding, javascript, ThreeJS, Three.js">
<meta name="robots" content="index">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="shortcut icon" href="./assets/icons/favicon.ico">
<meta name="sharedArrayBuffer" description="using cross-orgiin-isolation in the web browser">
<!--<meta http-equiv="Pragma" content="no-cache">
<link rel="preload" href="/assets/fonts/Mulish-700-Bold.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="/assets/fonts/Mulish-500-Medium.woff2" as="font" type="font/woff2" crossorigin>
-->
<link type="text/css" rel="stylesheet" href="./assets/index.css">
</head>
<body style="background-color:#000; margin:0; padding:0; overflow:hidden;">
<script type="importmap">{ "imports": {
"three": "./three/build/three.module.js",
"three/webgpu": "./three/build/three.webgpu.js",
"three/tsl": "./three/build/three.tsl.js",
"three/addons/": "./three/examples/jsm/"
}}</script>
<script type="module">
import { Main } from './src/Main.js'
Main.start()
</script>
</body>
</html>