forked from skymeson/SpliceVREditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·46 lines (43 loc) · 1.78 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
<!--
SpliceVR Editor: A video editor for cinematic virtual reality
Copyright (C) 2015 Alex Meagher Grau
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
-->
<html>
<head>
<title>Splice VR Editor</title>
<meta name="mobile-web-app-capable" content="yes">
<script src="./spliceVR/editor/spliceVREditor.js"></script>
<script src="./spliceVR/editor/spliceVRInput.js"></script>
<script src="./spliceVR/editor/spliceVRFrame.js"></script>
<script src="./spliceVR/editor/spliceVRUtil.js"></script>
<script src="./spliceVR/editor/spliceVRNode.js"></script>
<script src="./spliceVR/editor/spliceVRLink.js"></script>
<script src="./spliceVR/editor/spliceVRSidebar.js"></script>
<script src="./spliceVR/editor/spliceVRBottombar.js"></script>
<script src="./spliceVR/editor/spliceVRZoom.js"></script>
<script src="./spliceVR/editor/spliceVRMenu.js"></script>
<script src="./spliceVR/editor/spliceVRAssets.js"></script>
<script src="./spliceVR/editor/spliceVRAdd.js"></script>
<script src="./spliceVR/editor/spliceVRGL.js"></script>
<script src="./spliceVR/editor/spliceVRVideos.js"></script>
<script src="./spliceVR/editor/spliceVRFile.js"></script>
</head>
<style>
body {
position: fixed;
margin: 0;
background-color:#FFFFFF;
}
</style>
<body >
<canvas id="spliceCanvas"></canvas>
</body>
</html>