-
Notifications
You must be signed in to change notification settings - Fork 23
/
index.html
44 lines (39 loc) · 2.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Examples</title>
<link type="text/css" rel="stylesheet" href="packages/examples/main.css" />
</head>
<body>
<div style="padding: 5px">
<h1>Examples</h1>
Please execute <b>npm run dev</b> to launch the vite dev server.<br>
Please execute <b>npm run verify</b> to serve the static examples.
<h2>OBJLoader2 / OBJLoader2Parallel</h2>
<b>OBJLoader2 basic:</b> [<a href="packages/examples/obj2_basic.html">vite</a>] [<a href="http://localhost:20001/verify_obj2_basic.html">static</a>]
<br>
<b>OBJLoader2 basic (Offscreen):</b> [<a href="packages/examples/obj2_basic_offscreen.html">vite</a>] [<a href="http://localhost:20001/verify_obj2_basic_offscreen.html">static</a>]
<br>
<b>OBJLoader2Parallel basic:</b> [<a href="packages/examples/obj2parallel_basic.html">vite</a>] [<a href="http://localhost:20001/verify_obj2parallel_basic.html">static</a>]
<br>
<b>OBJLoader2 usage options:</b> [<a href="packages/examples/obj2_options.html">vite</a>] [<a href="http://localhost:20001/verify_obj2_options.html">static</a>]
<br>
<h2>AssetPipeline</h2>
<b>Asset Pipeline Test:</b> [<a href="packages/examples/assetpipeline.html">vite</a>] [<a href="http://localhost:20001/verify_assetpipeline.html">static</a>]
<br>
<b>OBJLoader2 Stage (requires extra models):</b> [<a href="packages/examples/assetpipeline_obj_stage.html">vite</a>] [<a href="http://localhost:20001/verify_assetpipeline_obj_stage.html">static</a>]
<br>
<h2>OBJLoader2 Implementation Verification</h2>
<b>OBJLoader2 / OBJLoader parser capability comparison:</b> [<a href="packages/examples/obj2_obj_compare.html">vite</a>]
<br>
<b>OBJLoader2 Bug Verification (requires private model files):</b> [<a href="packages/examples/obj2_bugverify.html">vite</a>]
<br>
<h2>OBJLoader2 with @react-three/fiber</h2>
<b>OBJLoader2 in react with a .jpg texture:</b> [<a href="packages/examples/obj2_react.html">vite</a>]
<br />
<b>OBJLoader2 in react with a .mtl material:</b> [<a href="packages/examples/obj2_react_mtl.html">vite</a>]
</div>
</body>
</html>