-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrender.html
More file actions
59 lines (57 loc) · 1.34 KB
/
trender.html
File metadata and controls
59 lines (57 loc) · 1.34 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>TRender</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel='icon' href='favicon.ico'/>
</head>
<body>
<div id='fullview'></div>
<div class="container">
<h1>TRender</h1>
<div id='canvasdiv'>
<canvas width="700" height="500" id="canvas"></canvas>
</div>
<button id='fullbutton'>Fullscreen</button><br/>
<button id='tr-resetball'>Reset Ball</button><br/>
<p>
FOV: <input type="range" id="tr-fov" min="0" max="1" step='0.01'>
<br/>Faces: <input type="checkbox" id='tr-facechk'>
<br/>Verts: <input type="checkbox" id='tr-vertchk'>
<br/>Stats: <input type="checkbox" id='tr-statchk'>
</p>
<h2>CONTROLS:</h2>
<p>
W: Forward
<br/>
S: Backward
<br/>
A: Strafe Left
<br/>
D: Strafe Right
<br/>
Q: Up
<br/>
E: Down
<br/>
Space: Jump
<br/>
Left Arrow: Turn Left
<br/>
Right Arrow: Turn Right
<br/>
Up Arrow: Turn Up
<br/>
Down Arrow: Turn Down
<br/>
Click for Mouse Control
</p>
<a href='versions.html'>Versions</a>
<a href='release.html'>Release Notes</a>
<footer>Created May, 2023<br/>v1.9.1 (Nov 2025)<br/>© Frostbyte 2025 | AGPLv3</footer>
</div>
<script src="script.js"></script>
</body>
</html>