This repository has been archived by the owner on Dec 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
114 lines (104 loc) · 4.58 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Helix - A WebGL 3D game engine</title>
<meta name="description" content="A 3D game engine for the web." />
<meta name="keywords" content="javascript,webgl,engine,game,3D" />
<meta name="author" content="David Lenaerts (derschmale)" />
<style type="text/css">
body {
background-color: white;
font-family: Helvetica, Arial, FreeSans, sans-serif;
color: black;
margin: 0px;
}
a {
color: #0c84e4;
}
a:visited {
color: #1ca4ff;
}
a:hover {
color: #00dba3;
}
.subheader {
color: #0c84e4;
font-style: italic;
font-size: 100%;
}
h1 {
color: #0c84e4;
margin-bottom: 5px;
}
h2 {
color: #003484;
}
ul {
line-height: 200%;
margin-top: -1em;
}
.container {
margin: 5px auto;
padding: 30px 30px;
max-width: 650px;
box-shadow: 5px 5px 20px;
}
#logo {
float: right;
margin-top: -10px;
}
#exampleContainer img {
box-shadow: 2px 2px 5px #000;
margin-right: 8px;
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="container">
<div id="header">
<img id="logo" width="200" src="https://camo.githubusercontent.com/220a173fec3e9ce64958554184dbe92e37e966a7/687474703a2f2f6465727363686d616c652e636f6d2f68656c69782f68656c69782d6c6f676f2d3330302e6a7067" alt="Helix">
<h1>Welcome to Helix!</h1>
<div class="subheader">A Javascript/WebGL 3D game engine</div>
</div>
<h2>Code:</h2>
<p>
<ul>
<li><a href="https://github.com/DerSchmale/helixjs/">GIT repository</a></li>
<li><a href="https://github.com/DerSchmale/helixjs/archive/master.zip">ZIP file</a></li>
</ul>
</p>
<h2>Documentation:</h2>
<p>
<ul>
<li><a href="https://github.com/DerSchmale/helixjs/wiki">Github WIKI</a></li>
<li><a href="https://derschmale.github.io/helixjs/docs/helix-core/">Core class reference</a></li>
<li><a href="https://derschmale.github.io/helixjs/docs/helix-io/">IO module class reference</a></li>
<li><a href="https://derschmale.github.io/helixjs/docs/helix-physics/">Physics module class reference</a></li>
</ul>
</p>
<h2>Examples:</h2>
<div id="exampleContainer">
<a href="examples/primitives/index.html"><img src="examples/primitives/thumb.jpg" alt="Primitives"></a>
<a href="examples/transparency/index.html"><img src="examples/transparency/thumb.jpg" alt="Transparency"></a>
<a href="examples/io-hx-animation-blending/index.html"><img src="examples/io-hx-animation-blending/thumb.jpg" alt="HX Loading with animation blending"></a>
<a href="examples/io-gltf/index.html"><img src="examples/io-gltf/thumb.jpg" alt="GLTF"></a>
<a href="examples/io-gltf-2/index.html"><img src="examples/io-gltf-2/thumb.jpg" alt="GLTF"></a>
<a href="examples/ambient-occlusion/index.html"><img src="examples/ambient-occlusion/thumb.jpg" alt="Ambient occlusion"></a>
<a href="examples/sibenik-obj/index.html"><img src="examples/sibenik-obj/thumb.jpg" alt="Spotlight shadows"></a>
<a href="examples/audio/index.html"><img src="examples/audio/thumb.jpg" alt="Spatial Audio"></a>
<a href="examples/physics-basic/index.html"><img src="examples/physics-basic/thumb.jpg" alt="Basic physics"></a>
<a href="examples/specular-properties/index.html"><img src="examples/specular-properties/thumb.jpg" alt="Specular properties"></a>
<a href="examples/taa/index.html"><img src="examples/taa/thumb.jpg" alt="Temporal Anti-Aliasing"></a>
<a href="examples/env-map-equirectangular/index.html"><img src="examples/env-map-equirectangular/thumb.jpg" alt="Glossy reflections"></a>
<a href="examples/multiple-sh-probes/index.html"><img src="examples/multiple-sh-probes/thumb.jpg" alt="Spherical Harmonics"></a>
<a href="examples/motion-blur/index.html"><img src="examples/motion-blur/thumb.jpg" alt="Motion Blur"></a>
<a href="examples/blue-marble/index.html"><img src="examples/blue-marble/thumb.jpg" alt="Atmospheric scattering"></a>
<a href="examples/terrain/index.html"><img src="examples/terrain/thumb.jpg" alt="Terrain"></a>
<a href="examples/webvr/index.html"><img src="examples/webvr/thumb.jpg" alt="WebVR"></a>
<a href="examples/webvr-interaction/index.html"><img src="examples/webvr-interaction/thumb.jpg" alt="WebVR + 3D Audio"></a>
</div>
</div>
</body>
</html>