-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (32 loc) · 998 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>VEngine</title>
<meta charset="UTF-8">
<script type="text/javascript">window.$ = window.jQuery = require('jquery');</script>
<script type="text/javascript" src="Libraries/three.min.js"></script>
<script type="text/javascript">
let editor = {
THREE: null,
modules: new Array(),
modulesUsage: new Array(),
defaultLayout: null,
layout: null,
filename: null,
dirname: null,
project: null,
selected: { type: "none" },
export: {
full: false,
type: null
}
};
</script>
<script src="head.js"></script>
</head>
<body>
<link rel="stylesheet" href="ResourcesStatic/css/font.css">
<link rel="stylesheet" href="ResourcesStatic/css/style.css">
<script src="loader.js"></script>
</body>
</html>