forked from erichlof/THREE.js-PathTracing-Renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Water_Rendering.html
27 lines (21 loc) · 880 Bytes
/
Water_Rendering.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>three.js PathTracing Renderer - Water Rendering</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1">
<link href="css/default.css" rel="stylesheet"/>
</head>
<body>
<div id="container"> </div>
<div id="info">three.js PathTracing Renderer - Water Rendering</div>
<div id="cameraInfo" style="position:fixed; left:3%; bottom:2%; font-family:arial; color:rgb(255,255,255);"></div>
<script src="js/three.min.js"> </script>
<script src="js/FirstPersonCameraControls.js"> </script>
<script src="js/MobileJoystickControls.js"> </script>
<script src="js/stats.min.js"> </script>
<script src="js/PathTracingCommon.js"> </script>
<script src="js/InitCommon.js"> </script>
<script src="js/Water_Rendering.js"> </script>
</body>
</html>