@realsee/five 6.8.0-alpha.6 → 6.8.0-alpha.7

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 (90) hide show
  1. package/ai_guides/features/load-external-model.md +15 -0
  2. package/ai_guides/features/work.md +17 -0
  3. package/ai_guides/release_notes/6.8.md +11 -1
  4. package/docs/assets/hierarchy.js +1 -1
  5. package/docs/assets/search.js +1 -1
  6. package/docs/classes/five.AdaptiveLuminancePass.html +1 -1
  7. package/docs/classes/five.EyeDomeLightingPass.html +1 -1
  8. package/docs/classes/five.FivePass.html +1 -1
  9. package/docs/classes/five.Work.html +16 -16
  10. package/docs/classes/five.WorkResolvedObserver.html +27 -2
  11. package/docs/classes/gltf-loader.DDSLoader.html +1 -1
  12. package/docs/classes/gltf-loader.DRACOLoader.html +1 -1
  13. package/docs/classes/gltf-loader.GLTFObject.html +1 -1
  14. package/docs/classes/gltf-loader.THREEGLTFLoader.html +1 -1
  15. package/docs/classes/line.LineGeometry.html +1 -1
  16. package/docs/classes/line.LineMaterial.html +1 -1
  17. package/docs/classes/line.LineSegmentsGeometry.html +1 -1
  18. package/docs/classes/line.THREE_Line2.html +1 -1
  19. package/docs/classes/line.THREE_LineSegments2.html +1 -1
  20. package/docs/classes/plugins.RoundedBoxGeometry.html +1 -1
  21. package/docs/classes/vfx.Airflow.html +1 -1
  22. package/docs/classes/vfx.Flame.html +1 -1
  23. package/docs/classes/vfx.Particle.html +1 -1
  24. package/docs/classes/vfx.ParticleGPU.html +1 -1
  25. package/docs/classes/vfx.SpotLight.html +1 -1
  26. package/docs/documents/features_load-external-model.html +18 -1
  27. package/docs/documents/features_work.html +1 -1
  28. package/docs/documents/release_notes_6.8.html +14 -2
  29. package/docs/functions/five.parseWork.html +1 -1
  30. package/docs/functions/vue.useFiveWorks.html +2 -2
  31. package/docs/hierarchy.html +1 -1
  32. package/docs/interfaces/five.LooseWorkWithExtrinsics.html +6 -6
  33. package/docs/interfaces/five.WorkModel.html +8 -8
  34. package/docs/interfaces/five.WorkModelLayer.html +6 -6
  35. package/docs/interfaces/five.WorkObserver.html +27 -2
  36. package/docs/interfaces/five.WorkTile.html +1 -1
  37. package/docs/interfaces/plugins.BackgroundPluginController.html +1 -1
  38. package/docs/interfaces/plugins.BackgroundPluginType.EventMap.html +1 -1
  39. package/docs/interfaces/plugins.DynamicPathLinePluginController.html +1 -1
  40. package/docs/interfaces/plugins.DynamicPathLinePluginType.EventMap.html +1 -1
  41. package/docs/interfaces/plugins.DynamicPathLinePluginType.State.html +1 -1
  42. package/docs/interfaces/plugins.ItemMaskController.html +1 -1
  43. package/docs/interfaces/plugins.ItemMaskPluginType.EventMap.html +1 -1
  44. package/docs/interfaces/plugins.ItemMaskPluginType.State.html +1 -1
  45. package/docs/interfaces/plugins.OrientationPluginController.html +1 -1
  46. package/docs/interfaces/plugins.OrientationPluginType.EventMap.html +1 -1
  47. package/docs/interfaces/plugins.OrientationPluginType.State.html +1 -1
  48. package/docs/interfaces/plugins.PanoAnimeController.html +1 -1
  49. package/docs/interfaces/plugins.PanoAnimePluginType.EventMap.html +1 -1
  50. package/docs/interfaces/plugins.PanoAnimePluginType.State.html +1 -1
  51. package/docs/interfaces/plugins.PluginTemplateType.EventMap.html +1 -1
  52. package/docs/interfaces/plugins.PluginTemplateType.State.html +1 -1
  53. package/docs/interfaces/plugins.TrajectoryController.html +1 -1
  54. package/docs/interfaces/react.FiveInjectionTypes.html +1 -1
  55. package/docs/types/five.ParseOptions.html +6 -6
  56. package/five/index.js +32 -32
  57. package/five/index.mjs +1661 -1314
  58. package/five/model/loaders/glTF-helpers/extensions/KHR_animation_pointer.d.ts +6 -0
  59. package/five/model/loaders/glTF-helpers/extensions/KHR_node_visibility.d.ts +6 -0
  60. package/five/model/loaders/glTF-helpers/index.d.ts +4 -0
  61. package/five/work/work.d.ts +35 -2
  62. package/five/work/workObserverUtils.d.ts +36 -0
  63. package/gltf-loader/index.js +3 -3
  64. package/gltf-loader/index.mjs +3 -3
  65. package/line/index.js +3 -3
  66. package/line/index.mjs +3 -3
  67. package/package.json +1 -1
  68. package/plugins/index.js +2 -2
  69. package/plugins/index.mjs +2 -2
  70. package/react/index.js +2 -2
  71. package/react/index.mjs +2 -2
  72. package/shader-lib/index.js +2 -2
  73. package/shader-lib/index.mjs +2 -2
  74. package/sticker/index.js +3 -3
  75. package/sticker/index.mjs +3 -3
  76. package/umd/five-gltf-loader.js +3 -3
  77. package/umd/five-line.js +3 -3
  78. package/umd/five-plugins.js +2 -2
  79. package/umd/five-react.js +2 -2
  80. package/umd/five-shader-lib.js +2 -2
  81. package/umd/five-sticker.js +3 -3
  82. package/umd/five-vfx.js +2 -2
  83. package/umd/five-vue.js +2 -2
  84. package/umd/five.js +32 -32
  85. package/vfx/index.js +2 -2
  86. package/vfx/index.mjs +2 -2
  87. package/vue/index.js +2 -2
  88. package/vue/index.mjs +2 -2
  89. package/work-downloader/index.js +2 -2
  90. package/work-downloader/index.mjs +2 -2
package/vfx/index.js CHANGED
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * @license
3
3
  * @realsee/five
4
- * Generated: 2026/2/4
5
- * Version: 6.8.0-alpha.6
4
+ * Generated: 2026/2/10
5
+ * Version: 6.8.0-alpha.7
6
6
  * Terms:
7
7
  * Realsee SDK License Agreement
8
8
  * Update: July 28, 2021
package/vfx/index.mjs CHANGED
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * @license
3
3
  * @realsee/five
4
- * Generated: 2026/2/4
5
- * Version: 6.8.0-alpha.6
4
+ * Generated: 2026/2/10
5
+ * Version: 6.8.0-alpha.7
6
6
  * Terms:
7
7
  * Realsee SDK License Agreement
8
8
  * Update: July 28, 2021
package/vue/index.js CHANGED
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * @license
3
3
  * @realsee/five
4
- * Generated: 2026/2/4
5
- * Version: 6.8.0-alpha.6
4
+ * Generated: 2026/2/10
5
+ * Version: 6.8.0-alpha.7
6
6
  * Terms:
7
7
  * Realsee SDK License Agreement
8
8
  * Update: July 28, 2021
package/vue/index.mjs CHANGED
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * @license
3
3
  * @realsee/five
4
- * Generated: 2026/2/4
5
- * Version: 6.8.0-alpha.6
4
+ * Generated: 2026/2/10
5
+ * Version: 6.8.0-alpha.7
6
6
  * Terms:
7
7
  * Realsee SDK License Agreement
8
8
  * Update: July 28, 2021
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * @license
3
3
  * @realsee/five
4
- * Generated: 2026/2/4
5
- * Version: 6.8.0-alpha.6
4
+ * Generated: 2026/2/10
5
+ * Version: 6.8.0-alpha.7
6
6
  * Terms:
7
7
  * Realsee SDK License Agreement
8
8
  * Update: July 28, 2021
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * @license
3
3
  * @realsee/five
4
- * Generated: 2026/2/4
5
- * Version: 6.8.0-alpha.6
4
+ * Generated: 2026/2/10
5
+ * Version: 6.8.0-alpha.7
6
6
  * Terms:
7
7
  * Realsee SDK License Agreement
8
8
  * Update: July 28, 2021