-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 913 Bytes
/
Copy pathindex.html
File metadata and controls
23 lines (23 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<title>Sphere</title>
<style>canvas { width: 100%; height: 100% }</style>
</head>
<body>
<script src="lib/jquery-1.11.0.js"></script>
<script src="lib/three/build/three.js"></script>
<script src="lib/three/examples/js/postprocessing/RenderPass.js"></script>
<script src="lib/three/examples/js/postprocessing/ShaderPass.js"></script>
<script src="lib/three/examples/js/shaders/CopyShader.js"></script>
<script src="lib/three/examples/js/postprocessing/EffectComposer.js"></script>
<script src="js/FirstPersonControls.js"></script>
<script src="js/SkyBox.js"></script>
<script src="js/World.js"></script>
<script src="js/Sphere.js"></script>
<script src="js/SphereParticleSystem.js"></script>
<script src="js/Portal.js"></script>
<script src="js/PortalLocation.js"></script>
<script src="js/MainApp.js"></script>
<script src="js/main.js"></script>
</body>
</html>