@realsee/five 6.8.0-alpha.8 → 6.8.0-alpha.9

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.
Files changed (60) hide show
  1. package/ai_guides/README.md +3 -2
  2. package/ai_guides/features/flowing-light-2d-pass.md +278 -58
  3. package/ai_guides/features/flowing-light-3d-pass.md +223 -43
  4. package/docs/documents/README.html +2 -2
  5. package/docs/documents/features_flowing-light-2d-pass.html +275 -43
  6. package/docs/documents/features_flowing-light-3d-pass.html +268 -46
  7. package/docs/index.html +2 -2
  8. package/five/index.js +417 -383
  9. package/five/index.mjs +4822 -4821
  10. package/five/model/loaders/glTF-helpers/extensions/CESIUM_RTC.d.ts +1 -1
  11. package/five/model/loaders/glTF-helpers/extensions/EXT_meshopt_compression.d.ts +1 -1
  12. package/five/model/loaders/glTF-helpers/extensions/EXT_texture_webp.d.ts +1 -1
  13. package/five/model/loaders/glTF-helpers/extensions/KHR_binary_glTF.d.ts +1 -1
  14. package/five/model/loaders/glTF-helpers/extensions/KHR_draco_mesh_compression.d.ts +1 -1
  15. package/five/model/loaders/glTF-helpers/extensions/KHR_gaussian_splatting_compression_spz.d.ts +1 -1
  16. package/five/model/loaders/glTF-helpers/extensions/KHR_materials_clearcoat.d.ts +4 -0
  17. package/five/model/loaders/glTF-helpers/extensions/KHR_materials_emissive_strength.d.ts +4 -0
  18. package/five/model/loaders/glTF-helpers/extensions/KHR_materials_sheen.d.ts +4 -0
  19. package/five/model/loaders/glTF-helpers/extensions/KHR_materials_transmission.d.ts +4 -0
  20. package/five/model/loaders/glTF-helpers/extensions/KHR_materials_unlit.d.ts +4 -0
  21. package/five/model/loaders/glTF-helpers/extensions/KHR_node_visibility.d.ts +4 -0
  22. package/five/model/loaders/glTF-helpers/extensions/KHR_texture_basisu.d.ts +1 -1
  23. package/five/model/loaders/glTF-helpers/extensions/KHR_texture_transform.d.ts +1 -1
  24. package/five/model/loaders/glTF-helpers/extensions/REALSEE_materials_lightmap.d.ts +1 -1
  25. package/five/model/loaders/glTF-helpers/extensions/base.d.ts +2 -1
  26. package/five/model/loaders/glTF-helpers/index.d.ts +0 -2
  27. package/five/model/loaders/glTF-helpers/parser.d.ts +14 -13
  28. package/five/renderer/postprocessing/passes/flowing-light-2d-pass.d.ts +16 -2
  29. package/five/renderer/postprocessing/passes/flowing-light-3d-pass.d.ts +16 -2
  30. package/five/renderer/postprocessing/passes/gaussian-blur-pass.d.ts +1 -1
  31. package/gltf-loader/index.js +3 -3
  32. package/gltf-loader/index.mjs +3 -3
  33. package/line/index.js +3 -3
  34. package/line/index.mjs +3 -3
  35. package/llms.txt +3 -2
  36. package/package.json +1 -1
  37. package/plugins/index.js +2 -2
  38. package/plugins/index.mjs +2 -2
  39. package/react/index.js +2 -2
  40. package/react/index.mjs +2 -2
  41. package/shader-lib/index.js +2 -2
  42. package/shader-lib/index.mjs +2 -2
  43. package/sticker/index.js +3 -3
  44. package/sticker/index.mjs +3 -3
  45. package/umd/five-gltf-loader.js +3 -3
  46. package/umd/five-line.js +3 -3
  47. package/umd/five-plugins.js +2 -2
  48. package/umd/five-react.js +2 -2
  49. package/umd/five-shader-lib.js +2 -2
  50. package/umd/five-sticker.js +3 -3
  51. package/umd/five-vfx.js +2 -2
  52. package/umd/five-vue.js +2 -2
  53. package/umd/five.js +417 -383
  54. package/vfx/index.js +2 -2
  55. package/vfx/index.mjs +2 -2
  56. package/vue/index.js +2 -2
  57. package/vue/index.mjs +2 -2
  58. package/work-downloader/index.js +2 -2
  59. package/work-downloader/index.mjs +2 -2
  60. package/five/model/loaders/glTF-helpers/extensions/PBM_mesh.d.ts +0 -11
package/docs/index.html CHANGED
@@ -86,8 +86,8 @@ Before writing or updating any documentation, YOU MUST READ <a href="documents/a
86
86
  <li><a href="documents/features_pano-tile.html">Pano Tile</a>: 全景瓦片渲染机制(高分辨率分片加载)。</li>
87
87
  <li><a href="documents/features_model.html">Model</a>: 内置模型渲染 (Mesh/Geometry)。</li>
88
88
  <li><a href="documents/features_postprocessing.html">Postprocessing</a>: 后处理效果 (Pass, EffectComposer)。</li>
89
- <li><a href="documents/features_flowing-light-2d-pass.html">Flowing Light 2D Pass</a>: 屏幕空间流光特效。</li>
90
- <li><a href="documents/features_flowing-light-3d-pass.html">Flowing Light 3D Pass</a>: 基于模型深度的流光特效。</li>
89
+ <li><a href="documents/features_flowing-light-2d-pass.html">Flowing Light 2D Pass</a>: 屏幕空间流光特效(InstancedMesh 优化)。</li>
90
+ <li><a href="documents/features_flowing-light-3d-pass.html">Flowing Light 3D Pass</a>: 3D 世界坐标流光特效(InstancedMesh 优化)。</li>
91
91
  <li><a href="documents/features_gaussian-blur-pass.html">Gaussian Blur Pass</a>: 高斯模糊特效。</li>
92
92
  <li><a href="documents/features_material.html">Material</a>: 材质参数配置 (透明度、点云大小、顶点标记)。</li>
93
93
  <li><a href="documents/features_get-screen-pixels.html">Get Screen Pixels</a>: 获取屏幕像素 (放大镜/截图)。</li>