@realsee/five 6.8.0-alpha.27 → 6.8.0-alpha.28
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/ai_guides/features/load-external-model.md +1 -0
- package/ai_guides/release_notes/6.8.md +1 -1
- package/docs/documents/features_load-external-model.html +1 -0
- package/docs/documents/release_notes_6.8.html +1 -1
- package/five/index.js +47 -47
- package/five/index.mjs +1552 -1514
- package/five/model/loaders/glTF-helpers/extensions/KHR_gaussian_splatting.d.ts +19 -0
- package/five/model/loaders/glTF-helpers/extensions/KHR_gaussian_splatting_compression_spz.d.ts +3 -1
- package/five/model/loaders/glTF-helpers/extensions/KHR_gaussian_splatting_compression_spz_2.d.ts +11 -0
- package/five/model/loaders/glTF-helpers/index.d.ts +2 -0
- package/gltf-loader/index.js +2 -2
- package/gltf-loader/index.mjs +2 -2
- package/line/index.js +2 -2
- package/line/index.mjs +2 -2
- package/package.json +1 -1
- package/plugins/index.js +1 -1
- package/plugins/index.mjs +1 -1
- package/react/index.js +1 -1
- package/react/index.mjs +1 -1
- package/shader-lib/index.js +1 -1
- package/shader-lib/index.mjs +1 -1
- package/sticker/index.js +2 -2
- package/sticker/index.mjs +2 -2
- package/umd/five-gltf-loader.js +2 -2
- package/umd/five-line.js +2 -2
- package/umd/five-plugins.js +1 -1
- package/umd/five-react.js +1 -1
- package/umd/five-shader-lib.js +1 -1
- package/umd/five-sticker.js +2 -2
- package/umd/five-vfx.js +1 -1
- package/umd/five-vue.js +1 -1
- package/umd/five.js +9 -9
- package/vfx/index.js +1 -1
- package/vfx/index.mjs +1 -1
- package/vue/index.js +1 -1
- package/vue/index.mjs +1 -1
- package/work-downloader/index.js +1 -1
- package/work-downloader/index.mjs +1 -1
|
@@ -12,7 +12,7 @@ npm install @realsee/five@6.8
|
|
|
12
12
|
### 文件格式支持
|
|
13
13
|
1. `.splat` 文档及工具 [GitHub - antimatter15/splat: WebGL 3D Gaussian Splat Viewer](https://github.com/antimatter15/splat)
|
|
14
14
|
2. `.spz` 文档及工具 GitHub - [nianticlabs/spz: File format for 3D Gaussian splats. About 10x smaller than the PLY equival](https://github.com/nianticlabs/spz)
|
|
15
|
-
3. `.glb` `.gltf` 对应的
|
|
15
|
+
3. `.glb` `.gltf` 对应的 KHR_gaussian_splatting, KHR_gaussian_splatting_compression_spz, KHR_gaussian_splatting_compression_spz_2 扩展。
|
|
16
16
|
|
|
17
17
|
### 支持 3d-tile
|
|
18
18
|
> 通过 3d-tile 标准,使用 glb 作为模型格式。
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<ol>
|
|
15
15
|
<li><code>.splat</code> 文档及工具 <a href="https://github.com/antimatter15/splat">GitHub - antimatter15/splat: WebGL 3D Gaussian Splat Viewer</a></li>
|
|
16
16
|
<li><code>.spz</code> 文档及工具 GitHub - <a href="https://github.com/nianticlabs/spz">nianticlabs/spz: File format for 3D Gaussian splats. About 10x smaller than the PLY equival</a></li>
|
|
17
|
-
<li><code>.glb</code> <code>.gltf</code> 对应的
|
|
17
|
+
<li><code>.glb</code> <code>.gltf</code> 对应的 KHR_gaussian_splatting, KHR_gaussian_splatting_compression_spz, KHR_gaussian_splatting_compression_spz_2 扩展。</li>
|
|
18
18
|
</ol>
|
|
19
19
|
<h3 id="支持-3d-tile" class="tsd-anchor-link">支持 3d-tile<a href="#支持-3d-tile" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3>
|
|
20
20
|
<blockquote>
|