@needle-tools/gltf-progressive 2.1.5-next.e31d8ef → 2.1.6-next.8d7f3c1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/examples/react-three-fiber/src/App.tsx +38 -0
- package/examples/react-three-fiber/src/index.tsx +12 -0
- package/examples/react-three-fiber/src/styles.css +16 -0
- package/{dist/lib → lib}/version.js +1 -1
- package/package.json +14 -17
- package/.github/workflows/publish.yml +0 -47
- package/dist/CHANGELOG.md +0 -211
- package/dist/README.md +0 -129
- package/dist/examples/modelviewer-multiple.html +0 -126
- package/dist/examples/modelviewer.html +0 -34
- package/dist/examples/react-three-fiber/.prettierrc +0 -10
- package/dist/examples/react-three-fiber/favicon.png +0 -0
- package/dist/examples/react-three-fiber/index.html +0 -24
- package/dist/examples/react-three-fiber/package-lock.json +0 -4023
- package/dist/examples/react-three-fiber/package.json +0 -34
- package/dist/examples/react-three-fiber/tsconfig.json +0 -22
- package/dist/examples/react-three-fiber/vite.config.js +0 -39
- package/dist/examples/threejs/index.html +0 -52
- package/dist/examples/threejs/main.js +0 -181
- package/dist/package.json +0 -65
- package/tsconfig.json +0 -42
- /package/{dist/gltf-progressive.js → gltf-progressive.js} +0 -0
- /package/{dist/gltf-progressive.min.js → gltf-progressive.min.js} +0 -0
- /package/{dist/gltf-progressive.umd.cjs → gltf-progressive.umd.cjs} +0 -0
- /package/{dist/lib → lib}/extension.d.ts +0 -0
- /package/{dist/lib → lib}/extension.js +0 -0
- /package/{dist/lib → lib}/index.d.ts +0 -0
- /package/{dist/lib → lib}/index.js +0 -0
- /package/{dist/lib → lib}/loaders.d.ts +0 -0
- /package/{dist/lib → lib}/loaders.js +0 -0
- /package/{dist/lib → lib}/lods_manager.d.ts +0 -0
- /package/{dist/lib → lib}/lods_manager.js +0 -0
- /package/{dist/lib → lib}/plugins/index.d.ts +0 -0
- /package/{dist/lib → lib}/plugins/index.js +0 -0
- /package/{dist/lib → lib}/plugins/modelviewer.d.ts +0 -0
- /package/{dist/lib → lib}/plugins/modelviewer.js +0 -0
- /package/{dist/lib → lib}/plugins/plugin.d.ts +0 -0
- /package/{dist/lib → lib}/plugins/plugin.js +0 -0
- /package/{dist/lib → lib}/utils.d.ts +0 -0
- /package/{dist/lib → lib}/utils.internal.d.ts +0 -0
- /package/{dist/lib → lib}/utils.internal.js +0 -0
- /package/{dist/lib → lib}/utils.js +0 -0
- /package/{dist/lib → lib}/version.d.ts +0 -0
|
Binary file
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="UTF-8" />
|
|
5
|
-
<link rel="icon" href="favicon.png">
|
|
6
|
-
<meta name="viewport" content="width=device-width, user-scalable=no">
|
|
7
|
-
|
|
8
|
-
<title>react-three-fiber with progressive loading</title>
|
|
9
|
-
<meta name="description" content="🌵 gltf-progressive example">
|
|
10
|
-
<meta name="twitter:card" content="summary_large_image">
|
|
11
|
-
<meta property="og:title" content="react-three-fiber with progressive loading" />
|
|
12
|
-
<meta property="og:description" content="🌵 gltf-progressive example" />
|
|
13
|
-
<meta property="twitter:image" content="" />
|
|
14
|
-
<meta property="og:image" content="" />
|
|
15
|
-
|
|
16
|
-
<meta name="robots" content="index,follow">
|
|
17
|
-
<link rel="stylesheet" href="./src/style.css">
|
|
18
|
-
</head>
|
|
19
|
-
|
|
20
|
-
<body>
|
|
21
|
-
<script type="module" src="./src/index.tsx"></script>
|
|
22
|
-
<div id="root" style="width:100vw; height:100vh;"></div>
|
|
23
|
-
</body>
|
|
24
|
-
</html>
|