forked from dataarts/dat.guiVR
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
96 lines (81 loc) · 2.64 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>dat.GUI VR</title>
<meta name="author" content="Google Data Arts Team">
<link href='https://fonts.googleapis.com/css?family=Alegreya+Sans:300,400,400italic,700' rel='stylesheet' type='text/css'>
<style>
body {
font-family: 'Alegreya Sans';
color: #555;
padding:40px;
font-size: 18px;
}
h1 {
color: #333;
font-family: 'Alegreya Sans';
font-size: 54px;
font-weight: 300;
line-height: 60px;
letter-spacing: -0.015em;
margin-bottom: 48px;
max-width: 600px;
}
p {
font-weight: 400;
line-height: 36px;
text-indent: 36px;
max-width: 600px;
}
a {
color: #3c5fb7;
font-family: 'Alegreya Sans';
text-decoration: none;
}
a:hover {
color: #333;
}
li {
line-height: 22px;
}
</style>
</head>
<body>
<h1>dat.GUI for VR</h1>
<h2>Documentation:</h2>
<p>
<ul>
<li><a href="https://github.com/dataarts/dat.guiVR">Project overview</a></li>
<li><a href="https://workshop.chromeexperiments.com/examples/guiVR/">Tutorials</a></li>
<li><a href="https://github.com/dataarts/dat.guiVR/wiki/API-and-Examples">API documentation</a></li>
</ul>
</p>
<h2>Examples:</h2>
<p>
<ul>
<li><a href="examples/simple.html">Simple example (no WebVR)</a></li>
<li><a href="examples/nesting.html">Nesting example (no WebVR)</a></li>
<li><a href="examples/imagebutton.html">Example of extra features in ImageButton branch (no WebVR)</a></li>
<li><a href="examples/torus.html">Vive controllers - Torus</a></li>
<li><a href="examples/blur.html">Gui blur - Torus</a></li>
<li><a href="examples/shredder.html">Vive controllers - Polygon Shredder</a></li>
<li><a href="examples/gaze.html">Gaze control</a></li>
<li><a href="examples/listen.html">Auto-update example</a></li>
<li><a href="examples/multiple.html">Multiple GUI windows</a></li>
</ul>
</p>
<h2>Integration Tests:</h2>
<ul>
<li><a href="tests/three_examples/webgl_geometry_cube.html">ThreeJS - Cube (no VR)</a></li>
<li><a href="tests/three_examples/webvr_cubes.html">ThreeJS - WebVR - Cubes</a></li>
<li><a href="tests/three_examples/webvr_shadow.html">ThreeJS - WebVR - Shadow</a></li>
<li><a href="tests/three_examples/webvr_video.html">ThreeJS - WebVR - Video</a></li>
<li><a href="tests/three_examples/webvr_vive.html">ThreeJS - WebVR - Vive </a></li>
<li><a href="tests/three_examples/webvr_vive_dragging.html">ThreeJS - WebVR - Vive with Dragging</a></li>
<li><a href="tests/webvr-boilerplate/index.html">WebVR Boilerplate</a></li>
<li><a href="tests/dat-gui/double_dat.html">dat.GuiVR + dat.GUI</a></li>
<li><a href="tests/misc/small_window.html">Render to small canvas</a></li>
</ul>
</body>
</html>