@realsee/vreo 0.2.0-alpha.13 → 0.2.0-alpha.16

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 (82) hide show
  1. package/README.md +13 -2
  2. package/docs/assets/search.js +1 -1
  3. package/docs/classes/Player.AudioLike.html +2 -2
  4. package/docs/classes/Player.Controller.html +3 -3
  5. package/docs/classes/Player.Player-1.html +3 -3
  6. package/docs/classes/Player.VideoAgentMesh.html +11 -11
  7. package/docs/classes/Player.VideoAgentScene.html +1 -1
  8. package/docs/demo/assets/{AppReact.388465e9.js → AppReact.2978a2aa.js} +1 -1
  9. package/docs/demo/assets/default.0c3b245d.js +64 -0
  10. package/docs/demo/assets/{default.0350c336.css → default.70243c83.css} +1 -1
  11. package/docs/demo/assets/dynamic.37c058ac.js +1 -0
  12. package/docs/demo/assets/{examples.02abaf01.js → examples.4104efd4.js} +2 -2
  13. package/docs/demo/assets/{index.485f13f7.js → index.863d264e.js} +1 -1
  14. package/docs/demo/assets/{main.0b6b41ab.js → main.f8c52f62.js} +1 -1
  15. package/docs/demo/assets/{react.b14dadc7.js → react.98c8f46f.js} +2 -2
  16. package/docs/demo/assets/{vendor.d3e0753c.js → vendor.f4c5cb32.js} +67 -68
  17. package/docs/demo/examples.html +4 -4
  18. package/docs/demo/index-react-dynamic.html +6 -6
  19. package/docs/demo/index-react.html +6 -6
  20. package/docs/demo/index.html +5 -5
  21. package/docs/enums/Player.InfoPanelStyleEnum.html +1 -1
  22. package/docs/enums/Player.InfoPanelTypeEnum.html +1 -1
  23. package/docs/enums/Player.PanoEffectEnum.html +1 -1
  24. package/docs/enums/Player.PanoTagEnum.html +1 -1
  25. package/docs/enums/Player.PanoTagStyleEnum.html +2 -2
  26. package/docs/enums/Player.VreoKeyframeEnum.html +12 -12
  27. package/docs/enums/fivePlugins.CameraMovementEffect.html +1 -1
  28. package/docs/enums/fivePlugins.Rotation.html +1 -1
  29. package/docs/index.html +10 -3
  30. package/docs/interfaces/Player.CustomVreoKeyframeProps.html +1 -1
  31. package/docs/interfaces/Player.PlayerConfigs.html +2 -2
  32. package/docs/interfaces/Player.Vertex.html +1 -1
  33. package/docs/interfaces/Player.VideoAgentMeshOptions.html +8 -1
  34. package/docs/interfaces/Player.VreoKeyframe.html +1 -1
  35. package/docs/interfaces/Player.VreoUnit.html +1 -1
  36. package/docs/interfaces/Player.VreoVideo.html +1 -1
  37. package/docs/interfaces/fivePlugins.CSS3DRenderPluginExportType.html +4 -0
  38. package/docs/interfaces/fivePlugins.CameraMovementOptsCallback.html +1 -1
  39. package/docs/interfaces/fivePlugins.CameraMovementPluginExportType.html +2 -2
  40. package/docs/interfaces/fivePlugins.ModelTVVideoPluginData.html +1 -1
  41. package/docs/interfaces/fivePlugins.ModelTVVideoPluginExportType.html +1 -1
  42. package/docs/interfaces/fivePlugins.ModelTVVideoPluginParameterType.html +1 -1
  43. package/docs/interfaces/fivePlugins.Vector3Position.html +3 -0
  44. package/docs/interfaces/react.VreoActionCallbacks.html +6 -6
  45. package/docs/interfaces/react.VreoProviderProps.html +1 -1
  46. package/docs/modules/Player.html +17 -15
  47. package/docs/modules/custom.html +1 -1
  48. package/docs/modules/fivePlugins.html +5 -2
  49. package/docs/modules/react.html +1 -1
  50. package/lib/Player/custom/SpatialScenePanel/index.js +2 -2
  51. package/lib/Player/modules/VideoAgent/VideoAgentMesh.d.ts +12 -0
  52. package/lib/Player/modules/VideoAgent/VideoAgentMesh.js +26 -10
  53. package/lib/Player/modules/VideoAgent/VideoAgentScene.d.ts +1 -0
  54. package/lib/Player/modules/VideoAgent/VideoAgentScene.js +1 -2
  55. package/lib/Player/modules/keyframes/PanoTextLabel/index.d.ts +3 -0
  56. package/lib/Player/modules/keyframes/PanoTextLabel/index.js +96 -43
  57. package/lib/fivePlugins/CSS3DRenderPlugin/centerPoint.d.ts +2 -0
  58. package/lib/fivePlugins/CSS3DRenderPlugin/centerPoint.js +12 -0
  59. package/lib/fivePlugins/CSS3DRenderPlugin/createResizeObserver.d.ts +7 -0
  60. package/lib/fivePlugins/CSS3DRenderPlugin/createResizeObserver.js +32 -0
  61. package/lib/fivePlugins/CSS3DRenderPlugin/evenNumber.d.ts +3 -0
  62. package/lib/fivePlugins/CSS3DRenderPlugin/evenNumber.js +11 -0
  63. package/lib/fivePlugins/CSS3DRenderPlugin/index.d.ts +56 -0
  64. package/lib/fivePlugins/CSS3DRenderPlugin/index.js +275 -0
  65. package/lib/fivePlugins/CSS3DRenderPlugin/transformPositionToVector3.d.ts +7 -0
  66. package/lib/fivePlugins/CSS3DRenderPlugin/transformPositionToVector3.js +18 -0
  67. package/lib/typings/VreoUnit.d.ts +11 -0
  68. package/package.json +1 -1
  69. package/resources/Player/custom/SpatialScenePanel/index.tsx +4 -4
  70. package/resources/Player/index.tsx +1 -1
  71. package/resources/Player/modules/VideoAgent/VideoAgentMesh.ts +17 -2
  72. package/resources/Player/modules/VideoAgent/VideoAgentScene.ts +2 -4
  73. package/resources/Player/modules/keyframes/PanoTextLabel/index.tsx +87 -34
  74. package/resources/fivePlugins/CSS3DRenderPlugin/centerPoint.ts +5 -0
  75. package/resources/fivePlugins/CSS3DRenderPlugin/createResizeObserver.ts +17 -0
  76. package/resources/fivePlugins/CSS3DRenderPlugin/evenNumber.ts +4 -0
  77. package/resources/fivePlugins/CSS3DRenderPlugin/index.ts +254 -0
  78. package/resources/fivePlugins/CSS3DRenderPlugin/transformPositionToVector3.ts +5 -0
  79. package/resources/typings/VreoUnit.ts +13 -1
  80. package/stylesheets/default.css +5 -1
  81. package/docs/demo/assets/default.f03f1cdd.js +0 -64
  82. package/docs/demo/assets/dynamic.3f7479e4.js +0 -1
@@ -1 +1 @@
1
- <!DOCTYPE html><html class="default"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>VideoAgentScene | Vreo</title><meta name="description" content="Documentation for Vreo"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><link rel="stylesheet" href="../assets/custom.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.body.classList.add(localStorage.getItem("tsd-theme") || "os")</script><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">Vreo</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">Vreo</a></li><li><a href="../modules/Player.html">Player</a></li><li><a href="Player.VideoAgentScene.html">VideoAgentScene</a></li></ul><h1>Class VideoAgentScene</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">VideoAgentScene</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Constructors</h3><ul class="tsd-index-list"><li class="tsd-kind-constructor tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#constructor" class="tsd-kind-icon">constructor</a></li></ul></section><section class="tsd-index-section "><h3>Properties</h3><ul class="tsd-index-list"><li class="tsd-kind-property tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#camera" class="tsd-kind-icon">camera</a></li><li class="tsd-kind-property tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#container" class="tsd-kind-icon">container</a></li><li class="tsd-kind-property tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#renderer" class="tsd-kind-icon">renderer</a></li><li class="tsd-kind-property tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#scene" class="tsd-kind-icon">scene</a></li><li class="tsd-kind-property tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#videoAgentMesh" class="tsd-kind-icon">video<wbr/>Agent<wbr/>Mesh</a></li></ul></section><section class="tsd-index-section "><h3>Methods</h3><ul class="tsd-index-list"><li class="tsd-kind-method tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#dispose" class="tsd-kind-icon">dispose</a></li><li class="tsd-kind-method tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#run" class="tsd-kind-icon">run</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Constructors</h2><section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class"><a id="constructor" class="tsd-anchor"></a><h3>constructor</h3><ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class"><li class="tsd-signature tsd-kind-icon">new <wbr/>Video<wbr/>Agent<wbr/>Scene<span class="tsd-signature-symbol">(</span>container<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">HTMLElement</span>, needRender<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span>, options<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-symbol">{ </span>audioInstance<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">HTMLAudioElement</span><span class="tsd-signature-symbol">; </span>videoInstance<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">HTMLVideoElement</span><span class="tsd-signature-symbol"> }</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="Player.VideoAgentScene.html" class="tsd-signature-type" data-tsd-kind="Class">VideoAgentScene</a></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/realsee-developer/vreo/blob/3ba6c8c/resources/Player/modules/VideoAgent/VideoAgentScene.ts#L12">resources/Player/modules/VideoAgent/VideoAgentScene.ts:12</a></li></ul></aside><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameters"><li><h5>container: <span class="tsd-signature-type">HTMLElement</span></h5></li><li><h5>needRender: <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = true</span></h5></li><li><h5>options: <span class="tsd-signature-symbol">{ </span>audioInstance<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">HTMLAudioElement</span><span class="tsd-signature-symbol">; </span>videoInstance<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">HTMLVideoElement</span><span class="tsd-signature-symbol"> }</span><span class="tsd-signature-symbol"> = {}</span></h5><ul class="tsd-parameters"><li class="tsd-parameter"><h5><span class="tsd-flag ts-flagOptional">Optional</span> audio<wbr/>Instance<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">HTMLAudioElement</span></h5></li><li class="tsd-parameter"><h5><span class="tsd-flag ts-flagOptional">Optional</span> video<wbr/>Instance<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">HTMLVideoElement</span></h5></li></ul></li></ul><h4 class="tsd-returns-title">Returns <a href="Player.VideoAgentScene.html" class="tsd-signature-type" data-tsd-kind="Class">VideoAgentScene</a></h4></li></ul></section></section><section class="tsd-panel-group tsd-member-group "><h2>Properties</h2><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class"><a id="camera" class="tsd-anchor"></a><h3>camera</h3><div class="tsd-signature tsd-kind-icon">camera<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">OrthographicCamera</span><span class="tsd-signature-symbol"> = ...</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/realsee-developer/vreo/blob/3ba6c8c/resources/Player/modules/VideoAgent/VideoAgentScene.ts#L8">resources/Player/modules/VideoAgent/VideoAgentScene.ts:8</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class"><a id="container" class="tsd-anchor"></a><h3>container</h3><div class="tsd-signature tsd-kind-icon">container<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">HTMLElement</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/realsee-developer/vreo/blob/3ba6c8c/resources/Player/modules/VideoAgent/VideoAgentScene.ts#L10">resources/Player/modules/VideoAgent/VideoAgentScene.ts:10</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class"><a id="renderer" class="tsd-anchor"></a><h3>renderer</h3><div class="tsd-signature tsd-kind-icon">renderer<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">WebGLRenderer</span><span class="tsd-signature-symbol"> = ...</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/realsee-developer/vreo/blob/3ba6c8c/resources/Player/modules/VideoAgent/VideoAgentScene.ts#L9">resources/Player/modules/VideoAgent/VideoAgentScene.ts:9</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class"><a id="scene" class="tsd-anchor"></a><h3>scene</h3><div class="tsd-signature tsd-kind-icon">scene<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Scene</span><span class="tsd-signature-symbol"> = ...</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/realsee-developer/vreo/blob/3ba6c8c/resources/Player/modules/VideoAgent/VideoAgentScene.ts#L7">resources/Player/modules/VideoAgent/VideoAgentScene.ts:7</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class"><a id="videoAgentMesh" class="tsd-anchor"></a><h3>video<wbr/>Agent<wbr/>Mesh</h3><div class="tsd-signature tsd-kind-icon">video<wbr/>Agent<wbr/>Mesh<span class="tsd-signature-symbol">:</span> <a href="Player.VideoAgentMesh.html" class="tsd-signature-type" data-tsd-kind="Class">VideoAgentMesh</a></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/realsee-developer/vreo/blob/3ba6c8c/resources/Player/modules/VideoAgent/VideoAgentScene.ts#L5">resources/Player/modules/VideoAgent/VideoAgentScene.ts:5</a></li></ul></aside></section></section><section class="tsd-panel-group tsd-member-group "><h2>Methods</h2><section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="dispose" class="tsd-anchor"></a><h3>dispose</h3><ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class"><li class="tsd-signature tsd-kind-icon">dispose<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/realsee-developer/vreo/blob/3ba6c8c/resources/Player/modules/VideoAgent/VideoAgentScene.ts#L52">resources/Player/modules/VideoAgent/VideoAgentScene.ts:52</a></li></ul></aside><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></li></ul></section><section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="run" class="tsd-anchor"></a><h3>run</h3><ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class"><li class="tsd-signature tsd-kind-icon">run<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/realsee-developer/vreo/blob/3ba6c8c/resources/Player/modules/VideoAgent/VideoAgentScene.ts#L33">resources/Player/modules/VideoAgent/VideoAgentScene.ts:33</a></li></ul></aside><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></li></ul></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Modules</a></li><li class="current tsd-kind-module"><a href="../modules/Player.html">Player</a></li><li class=" tsd-kind-module"><a href="../modules/custom.html">custom</a></li><li class=" tsd-kind-module"><a href="../modules/fivePlugins.html">five<wbr/>Plugins</a></li><li class=" tsd-kind-module"><a href="../modules/react.html">react</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-class tsd-parent-kind-module"><a href="Player.VideoAgentScene.html" class="tsd-kind-icon">Video<wbr/>Agent<wbr/>Scene</a><ul><li class="tsd-kind-constructor tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#constructor" class="tsd-kind-icon">constructor</a></li><li class="tsd-kind-property tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#camera" class="tsd-kind-icon">camera</a></li><li class="tsd-kind-property tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#container" class="tsd-kind-icon">container</a></li><li class="tsd-kind-property tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#renderer" class="tsd-kind-icon">renderer</a></li><li class="tsd-kind-property tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#scene" class="tsd-kind-icon">scene</a></li><li class="tsd-kind-property tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#videoAgentMesh" class="tsd-kind-icon">video<wbr/>Agent<wbr/>Mesh</a></li><li class="tsd-kind-method tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#dispose" class="tsd-kind-icon">dispose</a></li><li class="tsd-kind-method tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#run" class="tsd-kind-icon">run</a></li></ul></li></ul></nav></div></div></div><footer class=""><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li><li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li><li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li><li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li><li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li><li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li><li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
1
+ <!DOCTYPE html><html class="default"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>VideoAgentScene | Vreo</title><meta name="description" content="Documentation for Vreo"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><link rel="stylesheet" href="../assets/custom.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.body.classList.add(localStorage.getItem("tsd-theme") || "os")</script><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">Vreo</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">Vreo</a></li><li><a href="../modules/Player.html">Player</a></li><li><a href="Player.VideoAgentScene.html">VideoAgentScene</a></li></ul><h1>Class VideoAgentScene</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">VideoAgentScene</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Constructors</h3><ul class="tsd-index-list"><li class="tsd-kind-constructor tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#constructor" class="tsd-kind-icon">constructor</a></li></ul></section><section class="tsd-index-section "><h3>Properties</h3><ul class="tsd-index-list"><li class="tsd-kind-property tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#camera" class="tsd-kind-icon">camera</a></li><li class="tsd-kind-property tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#container" class="tsd-kind-icon">container</a></li><li class="tsd-kind-property tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#renderer" class="tsd-kind-icon">renderer</a></li><li class="tsd-kind-property tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#scene" class="tsd-kind-icon">scene</a></li><li class="tsd-kind-property tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#videoAgentMesh" class="tsd-kind-icon">video<wbr/>Agent<wbr/>Mesh</a></li></ul></section><section class="tsd-index-section "><h3>Methods</h3><ul class="tsd-index-list"><li class="tsd-kind-method tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#dispose" class="tsd-kind-icon">dispose</a></li><li class="tsd-kind-method tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#run" class="tsd-kind-icon">run</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Constructors</h2><section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class"><a id="constructor" class="tsd-anchor"></a><h3>constructor</h3><ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class"><li class="tsd-signature tsd-kind-icon">new <wbr/>Video<wbr/>Agent<wbr/>Scene<span class="tsd-signature-symbol">(</span>container<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">HTMLElement</span>, needRender<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span>, options<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-symbol">{ </span>audioInstance<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">HTMLAudioElement</span><span class="tsd-signature-symbol">; </span>preload<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">; </span>videoInstance<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">HTMLVideoElement</span><span class="tsd-signature-symbol"> }</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="Player.VideoAgentScene.html" class="tsd-signature-type" data-tsd-kind="Class">VideoAgentScene</a></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/realsee-developer/vreo/blob/07cb055/resources/Player/modules/VideoAgent/VideoAgentScene.ts#L12">resources/Player/modules/VideoAgent/VideoAgentScene.ts:12</a></li></ul></aside><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameters"><li><h5>container: <span class="tsd-signature-type">HTMLElement</span></h5></li><li><h5>needRender: <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = true</span></h5></li><li><h5>options: <span class="tsd-signature-symbol">{ </span>audioInstance<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">HTMLAudioElement</span><span class="tsd-signature-symbol">; </span>preload<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">; </span>videoInstance<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">HTMLVideoElement</span><span class="tsd-signature-symbol"> }</span><span class="tsd-signature-symbol"> = {}</span></h5><ul class="tsd-parameters"><li class="tsd-parameter"><h5><span class="tsd-flag ts-flagOptional">Optional</span> audio<wbr/>Instance<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">HTMLAudioElement</span></h5></li><li class="tsd-parameter"><h5><span class="tsd-flag ts-flagOptional">Optional</span> preload<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span></h5></li><li class="tsd-parameter"><h5><span class="tsd-flag ts-flagOptional">Optional</span> video<wbr/>Instance<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">HTMLVideoElement</span></h5></li></ul></li></ul><h4 class="tsd-returns-title">Returns <a href="Player.VideoAgentScene.html" class="tsd-signature-type" data-tsd-kind="Class">VideoAgentScene</a></h4></li></ul></section></section><section class="tsd-panel-group tsd-member-group "><h2>Properties</h2><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class"><a id="camera" class="tsd-anchor"></a><h3>camera</h3><div class="tsd-signature tsd-kind-icon">camera<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">OrthographicCamera</span><span class="tsd-signature-symbol"> = ...</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/realsee-developer/vreo/blob/07cb055/resources/Player/modules/VideoAgent/VideoAgentScene.ts#L8">resources/Player/modules/VideoAgent/VideoAgentScene.ts:8</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class"><a id="container" class="tsd-anchor"></a><h3>container</h3><div class="tsd-signature tsd-kind-icon">container<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">HTMLElement</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/realsee-developer/vreo/blob/07cb055/resources/Player/modules/VideoAgent/VideoAgentScene.ts#L10">resources/Player/modules/VideoAgent/VideoAgentScene.ts:10</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class"><a id="renderer" class="tsd-anchor"></a><h3>renderer</h3><div class="tsd-signature tsd-kind-icon">renderer<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">WebGLRenderer</span><span class="tsd-signature-symbol"> = ...</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/realsee-developer/vreo/blob/07cb055/resources/Player/modules/VideoAgent/VideoAgentScene.ts#L9">resources/Player/modules/VideoAgent/VideoAgentScene.ts:9</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class"><a id="scene" class="tsd-anchor"></a><h3>scene</h3><div class="tsd-signature tsd-kind-icon">scene<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Scene</span><span class="tsd-signature-symbol"> = ...</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/realsee-developer/vreo/blob/07cb055/resources/Player/modules/VideoAgent/VideoAgentScene.ts#L7">resources/Player/modules/VideoAgent/VideoAgentScene.ts:7</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class"><a id="videoAgentMesh" class="tsd-anchor"></a><h3>video<wbr/>Agent<wbr/>Mesh</h3><div class="tsd-signature tsd-kind-icon">video<wbr/>Agent<wbr/>Mesh<span class="tsd-signature-symbol">:</span> <a href="Player.VideoAgentMesh.html" class="tsd-signature-type" data-tsd-kind="Class">VideoAgentMesh</a></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/realsee-developer/vreo/blob/07cb055/resources/Player/modules/VideoAgent/VideoAgentScene.ts#L5">resources/Player/modules/VideoAgent/VideoAgentScene.ts:5</a></li></ul></aside></section></section><section class="tsd-panel-group tsd-member-group "><h2>Methods</h2><section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="dispose" class="tsd-anchor"></a><h3>dispose</h3><ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class"><li class="tsd-signature tsd-kind-icon">dispose<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/realsee-developer/vreo/blob/07cb055/resources/Player/modules/VideoAgent/VideoAgentScene.ts#L50">resources/Player/modules/VideoAgent/VideoAgentScene.ts:50</a></li></ul></aside><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></li></ul></section><section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="run" class="tsd-anchor"></a><h3>run</h3><ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class"><li class="tsd-signature tsd-kind-icon">run<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/realsee-developer/vreo/blob/07cb055/resources/Player/modules/VideoAgent/VideoAgentScene.ts#L33">resources/Player/modules/VideoAgent/VideoAgentScene.ts:33</a></li></ul></aside><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></li></ul></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Modules</a></li><li class="current tsd-kind-module"><a href="../modules/Player.html">Player</a></li><li class=" tsd-kind-module"><a href="../modules/custom.html">custom</a></li><li class=" tsd-kind-module"><a href="../modules/fivePlugins.html">five<wbr/>Plugins</a></li><li class=" tsd-kind-module"><a href="../modules/react.html">react</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-class tsd-parent-kind-module"><a href="Player.VideoAgentScene.html" class="tsd-kind-icon">Video<wbr/>Agent<wbr/>Scene</a><ul><li class="tsd-kind-constructor tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#constructor" class="tsd-kind-icon">constructor</a></li><li class="tsd-kind-property tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#camera" class="tsd-kind-icon">camera</a></li><li class="tsd-kind-property tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#container" class="tsd-kind-icon">container</a></li><li class="tsd-kind-property tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#renderer" class="tsd-kind-icon">renderer</a></li><li class="tsd-kind-property tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#scene" class="tsd-kind-icon">scene</a></li><li class="tsd-kind-property tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#videoAgentMesh" class="tsd-kind-icon">video<wbr/>Agent<wbr/>Mesh</a></li><li class="tsd-kind-method tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#dispose" class="tsd-kind-icon">dispose</a></li><li class="tsd-kind-method tsd-parent-kind-class"><a href="Player.VideoAgentScene.html#run" class="tsd-kind-icon">run</a></li></ul></li></ul></nav></div></div></div><footer class=""><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li><li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li><li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li><li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li><li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li><li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li><li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
@@ -1 +1 @@
1
- import{r as e,u as y,j as E,f as x}from"./vendor.d3e0753c.js";import{P as b}from"./default.f03f1cdd.js";const n=e.exports.createContext(null),D=u=>{const a=y(),[t,r]=e.exports.useState(null),d=e.exports.useRef(null);return e.exports.useEffect(()=>(d.current=new b(a,u.configs||{}),r(d.current),()=>{var p;(p=d.current)==null||p.dispose()}),[]),t?E(n.Provider,{value:t,children:u.children}):E(x,{})};function c(){const u=e.exports.useContext(n);if(!u)throw new Error("VreoProvider never found.");return u}function i(){const u=c(),a=e.exports.useCallback((o,s)=>u.load(o,s),[u]),t=e.exports.useCallback(o=>u.play(o||0),[u]),r=e.exports.useCallback(()=>u.pause(),[u]),d=e.exports.useCallback(()=>u.show(),[u]),p=e.exports.useCallback(()=>u.hide(),[u]),f=e.exports.useCallback(()=>u.dispose(),[u]);return{load:a,pause:r,show:d,play:t,hide:p,dispose:f}}function F(u,a,t){const r=c();let d=[r,u];t!==void 0&&(d=d.concat(t)),e.exports.useEffect(()=>(r.on(u,a),()=>{r.off(u,a)}),d)}function C(){const u=c(),[a,t]=e.exports.useState(u.paused);return F("paused",()=>t(!0)),F("playing",()=>t(!1)),a}const B={categoryId:"b35b2980-9394-42a4-8ccb-0d2d4c8634fa",categoryText:"b4aff456-9a94-46c8-6e15-13cfa540aed8",frontRequestId:"ffc05d41-e588-48dc-adb7-d20d350ea1b4",index:0,video:{duration:249e3,start:0,end:249e3,url:"//vrlab-public.ljcdn.com/vrframework/release/audio_merged/Llk9Mhep/aitalk_text/merged.mp4"},keyframes:[{uuid:"87c795f5-95f3-435b-947e-c5ba030dd396",type:"CameraMovement",start:18600,end:28970,parsed:!1,data:{effect:"Rotate",panoIndex:0,fov:120,mode:"Panorama",latitude:-.010928962416050254,longitude:6.085904225460554,rotation:"Clockwise",rotateSpeed:.3}},{uuid:"6c21e958-5232-4097-57ef-dcbd7084073e",type:"InfoPanel",start:29010,end:40580,parsed:!1,data:{url:"//vrlab-public.ljcdn.com/release/seesay/tools/___2b82e40ca6a7d298cc6f4134a80ba58e.png",type:"Image"}},{uuid:"fb63d3aa-bbc8-41a3-379f-6714b255a894",type:"InfoPanel",start:40630,end:47950,parsed:!1,data:{url:"//vrlab-public.ljcdn.com/release/seesay/tools/___6b581b51cf12461442a31b3aef9aa504.jpg",type:"Image"}},{uuid:"89f7f29a-c816-4716-b420-2cdb58b527be",type:"CameraMovement",start:127020,end:128520,parsed:!1,data:{effect:"Move",panoIndex:8,fov:103.5,mode:"Panorama",latitude:.08334099549985256,longitude:4.765651641044329}},{uuid:"ce298bb1-5a38-4df7-5aab-1e378f598afc",type:"CameraMovement",start:13200,end:14700,parsed:!1,data:{effect:"Move",panoIndex:0,fov:120,mode:"Panorama",latitude:.08049960901252118,longitude:4.767461665999537}},{uuid:"e89aebe0-208d-43db-fc45-ddab6b2f8494",type:"CameraMovement",start:47900,end:49400,parsed:!1,data:{effect:"Move",panoIndex:0,fov:120,mode:"Panorama",latitude:.10405749787530304,longitude:5.272073180707112}},{uuid:"6d9424e0-2675-4843-b625-a762470e02ad",type:"CameraMovement",start:81800,end:83300,parsed:!1,data:{effect:"Move",panoIndex:12,fov:120,mode:"Panorama",latitude:.011858721114165922,longitude:1.2954826860590476}},{uuid:"72afc500-b4b7-4977-0685-1b432b30fd71",type:"CameraMovement",start:92500,end:94e3,parsed:!1,data:{effect:"Move",panoIndex:9,fov:120,mode:"Panorama",latitude:.003004866296355502,longitude:.13052484428045208}},{uuid:"f158594f-3863-429e-ac27-606af8b65e67",type:"CameraMovement",start:133900,end:135400,parsed:!1,data:{effect:"Move",panoIndex:6,fov:103.5,mode:"Panorama",latitude:.21615302557504054,longitude:3.7230169653291494}},{uuid:"0d3e24c0-06d4-4621-c73d-0026d2bc8a4c",type:"CameraMovement",start:179600,end:181100,parsed:!1,data:{effect:"Move",panoIndex:18,fov:105,mode:"Panorama",latitude:.14909776312915213,longitude:5.400919815605706}},{uuid:"f9ea52f9-c9d2-41c0-fa03-3177cbe77320",type:"CameraMovement",start:196180,end:197680,parsed:!1,data:{effect:"Move",panoIndex:23,fov:120,mode:"Panorama",latitude:.02935657980524926,longitude:1.2375176610076473}},{uuid:"643c8d41-777d-468e-184d-6df692f19f54",type:"CameraMovement",start:222e3,end:223500,parsed:!1,data:{effect:"Move",panoIndex:21,fov:108,mode:"Panorama",latitude:.10444027741202826,longitude:1.2490838384253422}},{uuid:"10fc17bd-b7be-4fbf-0220-a5214f9a6853",type:"CameraMovement",start:65140,end:70250,parsed:!1,data:{effect:"Rotate",panoIndex:0,fov:120,mode:"Panorama",latitude:.2917266708076339,longitude:3.22696039875224,rotation:"Anticlockwise",rotateSpeed:.6}},{uuid:"65022608-f0f2-4745-4554-e019aef325c3",type:"CameraMovement",start:208710,end:210700,parsed:!1,data:{effect:"Move",panoIndex:27,fov:81,mode:"Panorama",latitude:.09538804087572342,longitude:.13388593579664576}},{uuid:"4e8a5281-6136-4f1f-431e-666c53767f76",type:"CameraMovement",start:147600,end:152080,parsed:!1,data:{effect:"Rotate",panoIndex:6,fov:102,mode:"Panorama",latitude:.11636355189082886,longitude:5.151892672556052,rotateSpeed:.5,rotation:"Clockwise"}},{uuid:"06dc1ecb-0f89-43e1-ae79-287036f6fbcc",start:1045,end:1572,data:{text:"\u60A8\u597D",type:"Text"},type:"Prompter"},{uuid:"777ddc34-dea5-4714-ac09-5feea0e644d4",start:1672,end:5009,data:{text:"\u6211\u662F\u8D1D\u58F3\u5408\u4F5C\u623F\u4EA7\u7ECF\u7EAA\u54C1\u724C\u5FB7\u4F51\u5E97\u4E1C\u5468\u677E",type:"Text"},type:"Prompter"},{uuid:"d7fb6ef7-e1bd-4c4f-dcc2-6df3ee701b14",start:5109,end:8237,data:{text:"\u4E5F\u662F\u8D1D\u58F3\u91D1\u724C\u54C1\u8D28\u96C7\u4E3B\u3001\u5FB7\u4F51\u9886\u822A\u8005\u5E97\u4E1C",type:"Text"},type:"Prompter"},{uuid:"af2ea4f8-a88e-487e-d9e8-f648c82c3b0c",start:8337,end:10838,data:{text:"\u5728\u623F\u4EA7\u884C\u4E1A\u5DF2\u7ECF\u5DE5\u4F5C\u4E8614\u5E74",type:"Text"},type:"Prompter"},{uuid:"fe310d2f-ff41-44b8-dc92-6aab94b6014d",start:10938,end:13393,data:{text:"\u5F88\u8363\u5E78\u4E3A\u60A8\u5168\u65B9\u4F4D\u5C55\u793A\u6211\u7684\u5E97\u9762",type:"Text"},type:"Prompter"},{uuid:"a4e0f25e-1bc0-43ec-103d-8205a562c03f",start:13236,end:14646,data:{text:"\u6211\u6240\u7ECF\u8425\u7684\u8FD9\u5BB6\u5E97",type:"Text"},type:"Prompter"},{uuid:"d552e251-142b-4069-e8a6-c95a90cdd5ec",start:14746,end:16922,data:{text:"\u662F\u6B66\u6C49\u5FB7\u4F51\u6700\u5927\u7684\u4F18\u9009\u5F62\u8C61\u5E97",type:"Text"},type:"Prompter"},{uuid:"92c8baea-72af-4304-2328-bfccb6e40e31",start:17022,end:18594,data:{text:"\u5171\u670930\u591A\u540D\u5458\u5DE5",type:"Text"},type:"Prompter"},{uuid:"ff0d6154-45fb-4e08-9e7a-24ca3f05ce3e",start:18694,end:20313,data:{text:"\u5927\u5E97\u4F18\u52BF\u663E\u800C\u6613\u89C1",type:"Text"},type:"Prompter"},{uuid:"c9e8a13d-0487-49bf-44bc-0d776dc7662f",start:20413,end:22984,data:{text:"\u65E2\u80FD\u63D0\u4F9B\u66F4\u597D\u7684\u5DE5\u4F5C\u73AF\u5883\u548C\u6C1B\u56F4",type:"Text"},type:"Prompter"},{uuid:"ad608f54-b33d-4b71-8198-615a30a57b8c",start:23084,end:24587,data:{text:"\u4E5F\u66F4\u5BB9\u6613\u5438\u5F15\u5BA2\u6237",type:"Text"},type:"Prompter"},{uuid:"333ec189-0578-45e6-4004-892ccd92456a",start:24687,end:25911,data:{text:"\u63D0\u5347\u6210\u5355\u6982\u7387",type:"Text"},type:"Prompter"},{uuid:"91760827-5a1f-431d-b170-29146aacd2f9",start:26011,end:28953,data:{text:"\u63A5\u4E0B\u6765\u8DDF\u968F\u6211\u4E00\u8D77\u4E86\u89E3\u95E8\u5E97\u8BE6\u7EC6\u60C5\u51B5\u5427",type:"Text"},type:"Prompter"},{uuid:"5eb73b8f-073d-4cbe-2cc5-c6aa4c90d2d2",start:29053,end:31113,data:{text:"\u5E97\u9762\u4F4D\u4E8E\u5357\u6E56\u90BB\u91CC\u5E7F\u573A",type:"Text"},type:"Prompter"},{uuid:"e300f233-600d-4aa8-e4fc-175c7f6dabb6",start:31213,end:32460,data:{text:"\u4EA4\u901A\u6781\u5176\u4FBF\u5229",type:"Text"},type:"Prompter"},{uuid:"1ba9846d-f020-4f37-d418-9a120e0890d3",start:32560,end:35409,data:{text:"\u8DDD\u79BB7\u53F7\u7EBF\u5EFA\u5B89\u8857\u5730\u94C1\u7AD9\u4EC5300\u7C73",type:"Text"},type:"Prompter"},{uuid:"506e8fb2-e9aa-42c7-e2f3-fe19d2f65a37",start:35509,end:37174,data:{text:"500\u7C73\u5185\u6709\u5C0F\u5B66\u4E2D\u5B66",type:"Text"},type:"Prompter"},{uuid:"ee23e395-1d68-4674-67c7-f235ee0daf49",start:37274,end:39079,data:{text:"\u4E00\u516C\u91CC\u51854\u5BB6\u8D2D\u7269\u5E7F\u573A",type:"Text"},type:"Prompter"},{uuid:"5c655ed0-8768-4d34-6163-331db5abe004",start:39179,end:40566,data:{text:"\u5403\u559D\u73A9\u4E50\u5168\u8986\u76D6",type:"Text"},type:"Prompter"},{uuid:"f805ca1e-1069-45d0-7ec1-de2c3cbabadc",start:40666,end:41890,data:{text:"\u95E8\u593430\u7C73\u5BBD",type:"Text"},type:"Prompter"},{uuid:"d0a15e0c-0c90-4d58-f19e-0911e7471514",start:41990,end:43725,data:{text:"\u5728\u8FD9\u6761\u8857\u9053\u4E0A\u5F88\u663E\u773C",type:"Text"},type:"Prompter"},{uuid:"720fc0be-5a64-400b-d3f8-b750c72a162b",start:43825,end:44886,data:{text:"\u5BBD\u9614\u7684\u573A\u5730",type:"Text"},type:"Prompter"},{uuid:"77531bd9-55e0-40b9-d6e3-832f37b9dbba",start:44986,end:47835,data:{text:"\u4E5F\u65B9\u4FBF\u5F00\u5C55\u5404\u79CD\u4E30\u5BCC\u7684\u4E3B\u9898\u793E\u533A\u6D3B\u52A8",type:"Text"},type:"Prompter"},{uuid:"060100ab-a953-4184-7414-d87938681d1b",start:47935,end:48788,data:{text:"\u7531\u5916\u5411\u5185",type:"Text"},type:"Prompter"},{uuid:"6d651686-a230-479c-4a44-c13f71850869",start:48888,end:52434,data:{text:"\u8FDB\u5165\u95E8\u5E97\u9996\u5148\u6620\u5165\u773C\u5E18\u7684\u662F\u660E\u4EAE\u7684\u524D\u53F0\u63A5\u5F85\u533A",type:"Text"},type:"Prompter"},{uuid:"7f63c69e-af16-458e-6d4b-83751c21b089",start:52534,end:56219,data:{text:"\u5E38\u7528\u4E8E\u9996\u6B21\u5230\u5E97\u7684\u5BA2\u6237\u63A5\u5F85\u548C\u793E\u533A\u90BB\u91CC\u6696\u5FC3\u670D\u52A1",type:"Text"},type:"Prompter"},{uuid:"a244ce90-e416-496a-63b9-da8ec27da526",start:56319,end:59261,data:{text:"\u53EF\u80FD\u662F\u8D70\u7D2F\u4E86\u7684\u5927\u7237\u5927\u5988\u6765\u5E97\u91CC\u4E34\u65F6\u6B47\u811A",type:"Text"},type:"Prompter"},{uuid:"79eec73e-091c-4cab-e175-be96ce0f680e",start:59361,end:61746,data:{text:"\u4E5F\u53EF\u80FD\u662F\u5BB6\u957F\u6765\u4E3A\u5B69\u5B50\u6253\u5370\u4F5C\u4E1A",type:"Text"},type:"Prompter"},{uuid:"237d0697-68d4-4254-16a0-d73b3901cd83",start:61846,end:63743,data:{text:"\u6211\u4EEC\u4EE5\u6696\u5FC3\u670D\u52A1\u52A9\u6C11\u5229\u6C11",type:"Text"},type:"Prompter"},{uuid:"157b4c29-c5ac-470d-19dd-79ae2d54f5cf",start:63843,end:65090,data:{text:"\u6E29\u6696\u90BB\u91CC\u516B\u65B9",type:"Text"},type:"Prompter"},{uuid:"4f4acb0e-430a-46ac-c8a4-f38f9832270c",start:65190,end:66971,data:{text:"\u53F3\u624B\u8FB9\u662F\u5BA2\u6237\u63A5\u5F85\u533A",type:"Text"},type:"Prompter"},{uuid:"6872d4bf-9498-407e-d05c-883e7a65adb0",start:67071,end:68458,data:{text:"\u4E5F\u662F\u5BA2\u6237\u4F11\u606F\u533A",type:"Text"},type:"Prompter"},{uuid:"ee903cbc-6f8e-4a9b-a925-7b15d0a23905",start:68558,end:70246,data:{text:"\u6709\u7535\u89C6\u673A\u4F9B\u5BA2\u6237\u5A31\u4E50",type:"Text"},type:"Prompter"},{uuid:"30ab6e6b-9469-46d6-10a7-3ef0e2b2b88f",start:70346,end:73242,data:{text:"\u4F11\u606F\u533A\u65C1\u7684\u8FD9\u9762\u5899\u6302\u7740\u6211\u4EEC\u7684\u5546\u5708\u5730\u56FE",type:"Text"},type:"Prompter"},{uuid:"a2870c6e-4638-4e7d-1b03-94f17adaace1",start:73342,end:75634,data:{text:"\u8986\u76D6\u6574\u4E2A\u6B66\u6C49\u5730\u533A\u7684\u6240\u6709\u697C\u76D8",type:"Text"},type:"Prompter"},{uuid:"ac4218d6-1f0a-4af7-87fd-4ce9fd406c14",start:75734,end:78235,data:{text:"\u65E0\u8BBA\u662F\u672C\u5730\u5BA2\u6237\u8FD8\u662F\u5916\u5730\u5BA2\u6237",type:"Text"},type:"Prompter"},{uuid:"9def907f-9546-401a-66fe-125dd6fbca04",start:78335,end:80836,data:{text:"\u90FD\u80FD\u901A\u8FC7\u5730\u56FE\u6E05\u6670\u4E86\u89E3\u697C\u5E02\u5E03\u5C40",type:"Text"},type:"Prompter"},{uuid:"63489f30-bdc8-4afc-ace8-0db4e47d16dc",start:80936,end:81742,data:{text:"\u4E00\u76EE\u4E86\u7136",type:"Text"},type:"Prompter"},{uuid:"8ff1c9cc-48b0-4081-ee06-95a1066661e6",start:81842,end:84622,data:{text:"\u8FD9\u8FB9\u662F\u5BBD\u9614\u7684\u843D\u5730\u7A97\u666F\u4F11\u95F2\u5427\u53F0",type:"Text"},type:"Prompter"},{uuid:"dbd88648-2fb8-45df-843b-7f112dd093eb",start:84722,end:85807,data:{text:"\u914D\u6709\u5145\u7535\u5B9D",type:"Text"},type:"Prompter"},{uuid:"d9890f34-01f8-4841-29f0-f4f08157f7d1",start:85907,end:87317,data:{text:"\u5BA2\u6237\u53EF\u4EE5\u5728\u8FD9\u91CC\u7B49\u4EBA",type:"Text"},type:"Prompter"},{uuid:"7fe1ea7d-d435-4174-2eb8-482bfecca261",start:87417,end:90824,data:{text:"\u95E8\u5E97\u7684\u5B9D\u5988\u7ECF\u7EAA\u4EBA\u4E5F\u53EF\u4EE5\u5B89\u7F6E\u5B69\u5B50\u5728\u8FD9\u91CC\u5199\u4F5C\u4E1A",type:"Text"},type:"Prompter"},{uuid:"a4427301-90ca-4d7d-42fb-58f15fcc9192",start:90924,end:92427,data:{text:"\u7B49\u5F85\u5988\u5988\u4E00\u8D77\u4E0B\u73ED",type:"Text"},type:"Prompter"},{uuid:"6a503c9f-8589-40df-1076-b640f69c00eb",start:92527,end:94262,data:{text:"\u63A5\u4E0B\u6765\u662F\u6211\u4EEC\u7684\u8363\u8A89\u5C55\u67DC",type:"Text"},type:"Prompter"},{uuid:"86c737a6-98cb-46c7-1ef2-f85a835e8af8",start:94362,end:97304,data:{text:"\u6EE1\u5899\u7684\u8363\u8A89\u8BB0\u5F55\u4E86\u95E8\u5E97\u7684\u6BCF\u4E00\u62B9\u9AD8\u5149\u65F6\u523B",type:"Text"},type:"Prompter"},{uuid:"da039a1a-a4e6-4f2e-410e-ef768b571f39",start:97404,end:100184,data:{text:"\u6BCF\u4E00\u5458\u4E4B\u95F4\u4E92\u5E2E\u4E92\u52A9\uFF0C\u4E92\u76F8\u6210\u5C31",type:"Text"},type:"Prompter"},{uuid:"f7daa549-013c-464b-041c-da5f8a16edda",start:100284,end:102228,data:{text:"\u624D\u80FD\u4E0D\u65AD\u521B\u9020\u51FA\u65B0\u7684\u6210\u679C",type:"Text"},type:"Prompter"},{uuid:"50536aff-0854-4598-588d-94d590f47e48",start:102512,end:104177,data:{text:"\u731C\u731C\u770B\u8FD9\u9762\u5927\u5C4F\u662F\u4EC0\u4E48",type:"Text"},type:"Prompter"},{uuid:"4deb0587-7d57-4fee-30ed-4fdc7b0860e4",start:104277,end:106778,data:{text:"\u5B83\u662F\u4E00\u6B3E\u9ED1\u79D1\u6280\u2014\u2014VR\u667A\u80FD\u5927\u5C4F",type:"Text"},type:"Prompter"},{uuid:"00d161b1-fdea-4bef-c6bd-8030a9b8b570",start:106878,end:109217,data:{text:"\u201C\u5954\u8DD1\u4E24\u5C0F\u65F6,\u770B\u623F\u4E94\u5206\u949F\u201D",type:"Text"},type:"Prompter"},{uuid:"68ccb1d2-e755-4396-bd34-8f55ca3ea8e0",start:109317,end:111377,data:{text:"\u662F\u5F88\u591A\u4EBA\u771F\u5B9E\u7684\u770B\u623F\u5199\u7167",type:"Text"},type:"Prompter"},{uuid:"9e39bdee-b70a-41ad-8c59-0920cb63ed30",start:111477,end:113932,data:{text:"\u73B0\u5728\u5BA2\u6237\u4E0A\u95E8\u6211\u4EEC\u9996\u5148\u4E86\u89E3\u9700\u6C42",type:"Text"},type:"Prompter"},{uuid:"bc1b057a-4ee0-4940-ad0a-26eb68f5624f",start:114032,end:117415,data:{text:"\u7136\u540E\u5728VR\u5927\u5C4F\u4E0A\u4E3A\u5BA2\u6237\u5C55\u793A\u7B26\u5408\u8981\u6C42\u7684\u623F\u6E90",type:"Text"},type:"Prompter"},{uuid:"2430a276-93f5-4130-c501-50e6f3b5a449",start:117515,end:119180,data:{text:"\u771F\u5B9E\u8FD8\u539F\u623F\u5C4B\u7EC6\u8282",type:"Text"},type:"Prompter"},{uuid:"794bf9f6-fb9e-4d7e-7ab9-c80351ac78d3",start:119280,end:122013,data:{text:"\u8BA9\u5BA2\u6237\u5B9E\u73B0\u89C6\u89C9\u5728\u753B\u9762\u4E2D\u81EA\u7531\u6E38\u8D70",type:"Text"},type:"Prompter"},{uuid:"24d6ce8b-ebc4-4988-034a-3ec9072e2345",start:122113,end:125056,data:{text:"\u5982\u679C\u5BA2\u6237\u6EE1\u610F\uFF0C\u6211\u4EEC\u518D\u53BB\u5B9E\u5730\u5E26\u770B",type:"Text"},type:"Prompter"},{uuid:"0147dd29-25c1-418f-eab0-aabe918a4e0f",start:125156,end:126961,data:{text:"\u80FD\u591F\u6781\u5927\u63D0\u5347\u770B\u623F\u6548\u7387",type:"Text"},type:"Prompter"},{uuid:"906ce1ee-add3-4338-acaf-0bc759602981",start:127061,end:129470,data:{text:"\u518D\u5F80\u91CC\u9762\u8D70\uFF0C\u662F\u5458\u5DE5\u4F11\u606F\u533A",type:"Text"},type:"Prompter"},{uuid:"21674257-9d97-4683-2606-e07603ec22c4",start:129570,end:132071,data:{text:"\u4E5F\u53EF\u4EE5\u8BF4\u662F\u5458\u5DE5\u7684\u5F00\u653E\u5F0F\u529E\u516C\u533A",type:"Text"},type:"Prompter"},{uuid:"20d57f20-3d69-4ab5-3e1d-4b594f79a7de",start:132171,end:133859,data:{text:"\u5728\u8FD9\u91CC\u53EF\u4EE5\u5B89\u9759\u529E\u516C",type:"Text"},type:"Prompter"},{uuid:"5c8178a0-71d5-47b8-a863-cd2e04f8c8b3",start:133959,end:136460,data:{text:"\u4F11\u606F\u533A\u518D\u5F80\u91CC\u662F\u591A\u529F\u80FD\u4F11\u95F2\u533A",type:"Text"},type:"Prompter"},{uuid:"dd265f66-e1a5-4873-7111-5b4565114c83",start:136560,end:139015,data:{text:"\u770B\u4E66\u3001\u53F0\u7403\u3001\u4E52\u4E53\u7403\u4E00\u5385\u4E09\u7528",type:"Text"},type:"Prompter"},{uuid:"d66f5f7c-7bf5-43f2-d437-1003a43dff6a",start:139115,end:140200,data:{text:"\u8FD9\u4E2A\u4E52\u4E53\u7403\u53F0",type:"Text"},type:"Prompter"},{uuid:"e59e0688-6a40-4ee9-2fb5-b59f59d041c2",start:140300,end:142546,data:{text:"\u63D0\u8D77\u6765\u4E4B\u540E\u5C31\u4F1A\u53D8\u6210\u53F0\u7403\u684C",type:"Text"},type:"Prompter"},{uuid:"99fa63ef-7b12-4285-7d99-4f7e14592420",start:142646,end:144543,data:{text:"\u6211\u9F13\u52B1\u5C0F\u4F19\u4F34\u4EEC\u52B3\u9038\u7ED3\u5408",type:"Text"},type:"Prompter"},{uuid:"6cf6623d-be48-4add-5964-ebe5823dbf27",start:144643,end:147585,data:{text:"\u6240\u4EE5\u4F1A\u5C3D\u529B\u5728\u95E8\u5E97\u6253\u9020\u5458\u5DE5\u7684\u201C\u8212\u9002\u533A\u201D",type:"Text"},type:"Prompter"},{uuid:"3091e882-bc83-41f5-6eb8-e5fbb80b2df8",start:147685,end:149536,data:{text:"\u591A\u529F\u80FD\u533A\u57DF\u4FA7\u65B9\u662F\u4E66\u5427",type:"Text"},type:"Prompter"},{uuid:"728a40d3-d29c-4d17-4165-f852613d41f3",start:149636,end:150721,data:{text:"\u53EF\u4EE5\u770B\u4E66\u5145\u7535",type:"Text"},type:"Prompter"},{uuid:"54df8874-f8ab-48c8-2c49-0999451bd2a6",start:150821,end:152068,data:{text:"\u4E5F\u53EF\u4EE5\u653E\u7A7A\u51A5\u60F3",type:"Text"},type:"Prompter"},{uuid:"67d03050-ad1d-4d65-590a-4370db4d9991",start:152168,end:153578,data:{text:"\u518D\u6765\u770B\u4E00\u4E0B\u7B7E\u7EA6\u5BA4",type:"Text"},type:"Prompter"},{uuid:"4f454854-12d5-4828-3255-69c2f552946c",start:153678,end:155622,data:{text:"\u7B7E\u7EA6\u5BA4\u53EF\u4EE5\u5BB9\u7EB3\u5341\u4E8C\u4E2A\u4EBA",type:"Text"},type:"Prompter"},{uuid:"a0a55818-a4ed-46ce-4338-2563248649de",start:155722,end:157225,data:{text:"\u9664\u4E86\u5BA2\u6237\u7B7E\u7EA6\u65F6\u7528",type:"Text"},type:"Prompter"},{uuid:"22cf6cb4-5465-42b8-5c75-aa1e28811ec9",start:157325,end:160500,data:{text:"\u65E5\u5E38\u4F1A\u8BAE\u3001\u57F9\u8BAD\u6D3B\u52A8\u90FD\u53EF\u4EE5\u5728\u8FD9\u4E2A\u7A7A\u95F4\u8FDB\u884C",type:"Text"},type:"Prompter"},{uuid:"96068a33-ea7f-4e10-8342-707d799f79b0",start:160600,end:161987,data:{text:"\u8FD9\u4E5F\u662F\u5927\u5E97\u7684\u4F18\u52BF",type:"Text"},type:"Prompter"},{uuid:"f9e3976f-203d-414d-18a9-23dedd89c20f",start:162087,end:163938,data:{text:"\u901A\u8FC7\u5B9A\u671F\u7CFB\u7EDF\u6027\u57F9\u8BAD",type:"Text"},type:"Prompter"},{uuid:"6b463257-0d4c-469b-d11d-1d1a123c454e",start:164038,end:165332,data:{text:"\u8BA9\u65B0\u4EBA\u8301\u58EE\u6210\u957F",type:"Text"},type:"Prompter"},{uuid:"9190706f-41a2-40d6-2e15-311ee0027a80",start:165432,end:167492,data:{text:"\u7B7E\u7EA6\u5BA4\u7684\u5916\u5899\u4E5F\u662F\u6587\u5316\u5899",type:"Text"},type:"Prompter"},{uuid:"7d5c1cf5-2d6f-42e9-eee4-f6b4a5772cd0",start:167592,end:169652,data:{text:"\u4E3A\u4E86\u6700\u5927\u5316\u6316\u6398\u65B0\u4EBA\u7684\u6F5C\u80FD",type:"Text"},type:"Prompter"},{uuid:"00de4d50-b5af-4d32-df04-b0135fb6d30b",start:169752,end:171487,data:{text:"\u6211\u4F1A\u4E3B\u52A8\u548C\u65B0\u4EBA\u63A5\u89E6",type:"Text"},type:"Prompter"},{uuid:"e218966f-0a5d-4126-004a-9f92aec88e2c",start:171587,end:173252,data:{text:"\u53D1\u73B0\u4ED6\u4EEC\u8EAB\u4E0A\u7684\u95EA\u5149\u70B9",type:"Text"},type:"Prompter"},{uuid:"1db42aae-6ac0-45a3-0a9f-5730b8323fcd",start:173352,end:176201,data:{text:"\u4ECE\u4E2D\u6811\u7ACB\u4F18\u79C0\u7684\u6807\u6746\u5728\u95E8\u5E97\u8FDB\u884C\u5BA3\u4F20",type:"Text"},type:"Prompter"},{uuid:"5964828d-c580-405e-47af-c37cf008b22b",start:176301,end:179545,data:{text:"\u5206\u522B\u6709\u4E1A\u7EE9\u6807\u6746\u3001\u4EF7\u503C\u89C2\u6807\u6746\u548C\u6587\u5316\u6807\u6746",type:"Text"},type:"Prompter"},{uuid:"5da47b79-ce6e-40a5-b1ae-6a4d4076b201",start:179645,end:182030,data:{text:"\u6587\u5316\u5899\u6B63\u5BF9\u7684\u662F\u96C6\u4E2D\u529E\u516C\u533A\u57DF",type:"Text"},type:"Prompter"},{uuid:"d29c8b23-cd62-4a58-aa1d-59d0ba3f39df",start:182130,end:186419,data:{text:"\u623F\u4EA7\u7ECF\u7EAA\u4EBA\u804C\u4E1A\u65E9\u5DF2\u4E0D\u662F\u9760\u8DD1\u817F\u3001\u6253\u7535\u8BDD\u6362\u53D6\u4E1A\u7EE9\u7684\u804C\u4E1A",type:"Text"},type:"Prompter"},{uuid:"4ec9faa9-5780-4a4d-c0f2-c2180dd4c4ba",start:186519,end:190367,data:{text:"\u6211\u4EEC\u9700\u8981\u501F\u52A9\u8D1D\u58F3\u63D0\u4F9B\u7684\u7EBF\u4E0A\u5DE5\u5177\u7BA1\u7406\u623F\u6E90\u5BA2\u6E90\u4FE1\u606F",type:"Text"},type:"Prompter"},{uuid:"1e5e0163-3c32-416e-5fd6-3dfa7bcee00f",start:190467,end:192248,data:{text:"\u89C4\u8303\u5316\u3001\u6D41\u7A0B\u5316\u4F5C\u4E1A",type:"Text"},type:"Prompter"},{uuid:"232052ba-47ca-4f07-0ed3-f0693a740a61",start:192348,end:196126,data:{text:"\u6240\u4EE5\u6211\u4F1A\u4E3A\u6BCF\u4E00\u540D\u5458\u5DE5\u914D\u5907\u7B14\u8BB0\u672C\u6216\u8005\u53F0\u5F0F\u7535\u8111",type:"Text"},type:"Prompter"},{uuid:"87df17c4-cc0f-41e0-fa01-7a58b00d8a36",start:196226,end:199006,data:{text:"\u518D\u5F80\u524D\u8D70\u662F\u7ECF\u7406\u529E\u516C\u5BA4\u548C\u8D22\u52A1\u5BA4",type:"Text"},type:"Prompter"},{uuid:"eae26a0c-d7ce-4c55-dbfd-8489222c05cb",start:199106,end:200446,data:{text:"\u8FD9\u8FB9\u4E5F\u662F\u6587\u5316\u5899",type:"Text"},type:"Prompter"},{uuid:"2449b4d6-501f-4c6d-ad0d-32cc262f8608",start:200546,end:202327,data:{text:"\u8BB0\u5F55\u4E86\u95E8\u5E97\u7684\u70B9\u70B9\u6EF4\u6EF4",type:"Text"},type:"Prompter"},{uuid:"60b31972-9429-41ee-714d-c8e94a98db81",start:202427,end:205393,data:{text:"\u6BCF\u4E00\u4EFD\u8363\u8A89\u3001\u6BCF\u4E00\u6B21\u56E2\u5EFA\u3001\u6BCF\u4E00\u671F\u57F9\u8BAD",type:"Text"},type:"Prompter"},{uuid:"5b8c1c36-d51f-4df4-0c2d-3b515a6adfee",start:205493,end:206717,data:{text:"\u90FD\u4F1A\u5C55\u793A\u5728\u8FD9\u91CC",type:"Text"},type:"Prompter"},{uuid:"11def882-b844-4d94-07de-a8d63781fb25",start:206817,end:208668,data:{text:"\u6211\u4EEC\u7684\u5E97\u662F\u4E00\u4E2A\u6709\u7231\u7684\u56E2\u961F",type:"Text"},type:"Prompter"},{uuid:"2a7d1d8d-0cd6-46f7-02a9-d728ef8e20dd",start:208768,end:210828,data:{text:"\u201C\u5BF9\u7ECF\u7EAA\u4EBA\u597D\u201D\u662F\u6211\u7684\u7528\u5DE5\u7406\u5FF5",type:"Text"},type:"Prompter"},{uuid:"cd70bcfc-a54d-4ad2-b833-b3815af4fe9b",start:210928,end:212988,data:{text:"\u8D70\u5728\u95E8\u5E97\u91CC\u6211\u7ECF\u5E38\u601D\u8003",type:"Text"},type:"Prompter"},{uuid:"2d789507-713a-4640-3730-81ac16c03c6c",start:213088,end:215543,data:{text:"\u600E\u4E48\u80FD\u8BA9\u5458\u5DE5\u4EEC\u50CF\u5728\u5BB6\u4E00\u822C\u8212\u9002",type:"Text"},type:"Prompter"},{uuid:"4d8060e1-b2f9-4dba-943a-7cf73f2ab030",start:215643,end:217308,data:{text:"\u4E8E\u662F\u5C31\u6709\u4E86\u8FD9\u5957\u5458\u5DE5\u67DC",type:"Text"},type:"Prompter"},{uuid:"0e10450e-175e-4a46-ec71-da7c9ae23a5d",start:217408,end:220258,data:{text:"\u6BCF\u4EBA\u4E00\u4E2A\uFF0C\u65E2\u4FDD\u8BC1\u5145\u8DB3\u7684\u50A8\u5B58\u7A7A\u95F4",type:"Text"},type:"Prompter"},{uuid:"1db16507-0c1c-4c8f-6f7f-ed9f9c9f1f48",start:220358,end:221977,data:{text:"\u8FD8\u80FD\u4FDD\u8BC1\u5DE5\u4F4D\u7684\u6574\u6D01",type:"Text"},type:"Prompter"},{uuid:"19bc0567-cc66-472c-481b-58ec8a64f1eb",start:222077,end:223301,data:{text:"\u9664\u4E86\u50A8\u7269\u67DC\u4E4B\u5916",type:"Text"},type:"Prompter"},{uuid:"4a3c01fa-e0e2-4604-776c-8c70f8991e5d",start:223401,end:225415,data:{text:"\u8FD9\u91CC\u8FD8\u8BBE\u6709\u5458\u5DE5\u81EA\u5DF1\u7684\u6C34\u5427",type:"Text"},type:"Prompter"},{uuid:"8b477eb7-452d-4bd9-b703-a981a689b622",start:225515,end:227691,data:{text:"\u6709\u996E\u6C34\u673A\u3001\u5FAE\u6CE2\u7089\u548C\u51B0\u7BB1",type:"Text"},type:"Prompter"},{uuid:"82c50a7e-0868-4464-58dc-f36a49d05e7b",start:227791,end:229317,data:{text:"\u6C34\u5427\u548C\u529E\u516C\u533A\u5206\u5F00",type:"Text"},type:"Prompter"},{uuid:"2c7f7ded-e44f-413f-0450-a52e4d821031",start:229417,end:231477,data:{text:"\u662F\u4E3A\u4E86\u5C0F\u4F19\u4F34\u5728\u5DE5\u4F5C\u95F4\u9699",type:"Text"},type:"Prompter"},{uuid:"bce4d35f-c88f-45c7-dba1-a21f69cba8a3",start:231577,end:233149,data:{text:"\u53EF\u4EE5\u8D77\u6765\u591A\u6D3B\u52A8\u6D3B\u52A8",type:"Text"},type:"Prompter"},{uuid:"352eabc5-35af-4e25-f8f5-d9241f213007",start:233249,end:235146,data:{text:"\u4EE5\u4E0A\u5C31\u662F\u95E8\u5E97\u7684\u57FA\u672C\u60C5\u51B5",type:"Text"},type:"Prompter"},{uuid:"50ef5685-b5a1-4e19-54e0-9271502cb835",start:235246,end:238072,data:{text:"\u5982\u679C\u60A8\u5BF9\u623F\u4EA7\u7ECF\u7EAA\u4EBA\u8FD9\u4EFD\u804C\u4E1A\u611F\u5174\u8DA3",type:"Text"},type:"Prompter"},{uuid:"883e92b3-ea04-4abe-6099-20a317808823",start:238172,end:240743,data:{text:"\u6211\u771F\u8BDA\u9080\u8BF7\u60A8\u6765\u5230\u6211\u7684\u95E8\u5E97\u5B9E\u5730\u8003\u5BDF",type:"Text"},type:"Prompter"},{uuid:"7068453e-b2cd-4736-9a27-cf98ff3dd791",start:240843,end:243669,data:{text:"\u8FD9\u662F\u4E00\u4EFD\u4ED8\u51FA\u5373\u6240\u5F97\u3001\u6210\u957F\u4E0D\u8BBE\u9650\u7684\u804C\u4E1A",type:"Text"},type:"Prompter"},{uuid:"84a4e247-c3e9-4a20-ae14-80c1567c96f2",start:243769,end:246944,data:{text:"\u53EF\u4EE5\u5F97\u5230\u4E13\u4E1A\u7684\u57F9\u8BAD\u3001\u516C\u6B63\u900F\u660E\u7684\u664B\u5347\u901A\u9053",type:"Text"},type:"Prompter"},{uuid:"e1ba1956-24b5-4afc-ca16-97c4747c4bb4",start:247044,end:248664,data:{text:"\u91D1\u724C\u54C1\u8D28\u96C7\u4E3B,\u503C\u5F97\u6258\u4ED8\uFF01",type:"Text"},type:"Prompter"},{uuid:"66b25387-00b6-4ca8-16b9-a2a5447cbfe9",type:"InfoPanel",start:233200,end:236200,parsed:!1,data:{url:"//vrlab-public.ljcdn.com/release/seesay/tools/4___35fe05bbba927f9dedee4de525d7394f.jpg",type:"Image"}},{uuid:"02fed567-054d-4f17-9051-dc63f7632cbe",type:"CameraMovement",start:0,end:2e3,parsed:!1,data:{effect:"Move",panoIndex:0,fov:120,mode:"Panorama",latitude:.04438022675004691,longitude:5.232986472982764}},{uuid:"1024856a-5809-4492-0af6-d0f28b1bb8fc",type:"CameraMovement",start:70300,end:71800,parsed:!1,data:{effect:"Move",panoIndex:10,fov:120,mode:"Panorama",latitude:.0030048662963554655,longitude:1.1385672815664698}},{uuid:"70fc7728-cd97-4b2c-1400-2651dc6044bf",type:"CameraMovement",start:102460,end:103950,parsed:!1,data:{effect:"Move",panoIndex:12,fov:102,mode:"Panorama",latitude:.09535367780803297,longitude:4.538265211748573}},{uuid:"d2784b77-93fc-4788-4d73-564c946e6272",type:"CameraMovement",start:152100,end:153600,parsed:!1,data:{effect:"Move",panoIndex:14,fov:102,mode:"Panorama",latitude:.13272445414646844,longitude:.5147689397444273}},{uuid:"f970f558-3c7a-42d0-ad46-9feb99f04ff6",type:"CameraMovement",start:165380,end:166880,parsed:!1,data:{effect:"Move",panoIndex:18,fov:120,mode:"Panorama",latitude:.010150394708099617,longitude:1.109313455794532}},{uuid:"2173534e-8d54-4197-bb79-a7244ccac6b4",type:"CameraMovement",start:199050,end:201050,parsed:!1,data:{effect:"Move",panoIndex:28,fov:120,mode:"Panorama",latitude:.09871290045418332,longitude:4.731142937321037}},{uuid:"00f378d7-3c72-4f68-32fb-6382069d30f0",type:"CameraMovement",start:240800,end:242300,parsed:!1,data:{effect:"Move",panoIndex:0,fov:120,mode:"Panorama",latitude:.04438022675004691,longitude:5.232986472982764}}]};function P(){const u=e.exports.useRef(!1),{show:a,play:t,hide:r,pause:d,load:p}=i(),f=C();return Object.assign(window,{$load:p,$show:a}),E("div",{className:"btns",children:E("button",{onClick:async()=>{if(!f){d(),r();return}a(),u.current?t():(u.current=!0,p(B))},children:f?"\u64AD\u653E":"\u6682\u505C"})})}export{P as A,D as V};
1
+ import{r as e,u as y,j as E,f as x}from"./vendor.f4c5cb32.js";import{P as b}from"./default.0c3b245d.js";const n=e.exports.createContext(null),D=u=>{const a=y(),[t,r]=e.exports.useState(null),d=e.exports.useRef(null);return e.exports.useEffect(()=>(d.current=new b(a,u.configs||{}),r(d.current),()=>{var p;(p=d.current)==null||p.dispose()}),[]),t?E(n.Provider,{value:t,children:u.children}):E(x,{})};function c(){const u=e.exports.useContext(n);if(!u)throw new Error("VreoProvider never found.");return u}function i(){const u=c(),a=e.exports.useCallback((o,s)=>u.load(o,s),[u]),t=e.exports.useCallback(o=>u.play(o||0),[u]),r=e.exports.useCallback(()=>u.pause(),[u]),d=e.exports.useCallback(()=>u.show(),[u]),p=e.exports.useCallback(()=>u.hide(),[u]),f=e.exports.useCallback(()=>u.dispose(),[u]);return{load:a,pause:r,show:d,play:t,hide:p,dispose:f}}function F(u,a,t){const r=c();let d=[r,u];t!==void 0&&(d=d.concat(t)),e.exports.useEffect(()=>(r.on(u,a),()=>{r.off(u,a)}),d)}function C(){const u=c(),[a,t]=e.exports.useState(u.paused);return F("paused",()=>t(!0)),F("playing",()=>t(!1)),a}const B={categoryId:"b35b2980-9394-42a4-8ccb-0d2d4c8634fa",categoryText:"b4aff456-9a94-46c8-6e15-13cfa540aed8",frontRequestId:"ffc05d41-e588-48dc-adb7-d20d350ea1b4",index:0,video:{duration:249e3,start:0,end:249e3,url:"//vrlab-public.ljcdn.com/vrframework/release/audio_merged/Llk9Mhep/aitalk_text/merged.mp4"},keyframes:[{uuid:"87c795f5-95f3-435b-947e-c5ba030dd396",type:"CameraMovement",start:18600,end:28970,parsed:!1,data:{effect:"Rotate",panoIndex:0,fov:120,mode:"Panorama",latitude:-.010928962416050254,longitude:6.085904225460554,rotation:"Clockwise",rotateSpeed:.3}},{uuid:"6c21e958-5232-4097-57ef-dcbd7084073e",type:"InfoPanel",start:29010,end:40580,parsed:!1,data:{url:"//vrlab-public.ljcdn.com/release/seesay/tools/___2b82e40ca6a7d298cc6f4134a80ba58e.png",type:"Image"}},{uuid:"fb63d3aa-bbc8-41a3-379f-6714b255a894",type:"InfoPanel",start:40630,end:47950,parsed:!1,data:{url:"//vrlab-public.ljcdn.com/release/seesay/tools/___6b581b51cf12461442a31b3aef9aa504.jpg",type:"Image"}},{uuid:"89f7f29a-c816-4716-b420-2cdb58b527be",type:"CameraMovement",start:127020,end:128520,parsed:!1,data:{effect:"Move",panoIndex:8,fov:103.5,mode:"Panorama",latitude:.08334099549985256,longitude:4.765651641044329}},{uuid:"ce298bb1-5a38-4df7-5aab-1e378f598afc",type:"CameraMovement",start:13200,end:14700,parsed:!1,data:{effect:"Move",panoIndex:0,fov:120,mode:"Panorama",latitude:.08049960901252118,longitude:4.767461665999537}},{uuid:"e89aebe0-208d-43db-fc45-ddab6b2f8494",type:"CameraMovement",start:47900,end:49400,parsed:!1,data:{effect:"Move",panoIndex:0,fov:120,mode:"Panorama",latitude:.10405749787530304,longitude:5.272073180707112}},{uuid:"6d9424e0-2675-4843-b625-a762470e02ad",type:"CameraMovement",start:81800,end:83300,parsed:!1,data:{effect:"Move",panoIndex:12,fov:120,mode:"Panorama",latitude:.011858721114165922,longitude:1.2954826860590476}},{uuid:"72afc500-b4b7-4977-0685-1b432b30fd71",type:"CameraMovement",start:92500,end:94e3,parsed:!1,data:{effect:"Move",panoIndex:9,fov:120,mode:"Panorama",latitude:.003004866296355502,longitude:.13052484428045208}},{uuid:"f158594f-3863-429e-ac27-606af8b65e67",type:"CameraMovement",start:133900,end:135400,parsed:!1,data:{effect:"Move",panoIndex:6,fov:103.5,mode:"Panorama",latitude:.21615302557504054,longitude:3.7230169653291494}},{uuid:"0d3e24c0-06d4-4621-c73d-0026d2bc8a4c",type:"CameraMovement",start:179600,end:181100,parsed:!1,data:{effect:"Move",panoIndex:18,fov:105,mode:"Panorama",latitude:.14909776312915213,longitude:5.400919815605706}},{uuid:"f9ea52f9-c9d2-41c0-fa03-3177cbe77320",type:"CameraMovement",start:196180,end:197680,parsed:!1,data:{effect:"Move",panoIndex:23,fov:120,mode:"Panorama",latitude:.02935657980524926,longitude:1.2375176610076473}},{uuid:"643c8d41-777d-468e-184d-6df692f19f54",type:"CameraMovement",start:222e3,end:223500,parsed:!1,data:{effect:"Move",panoIndex:21,fov:108,mode:"Panorama",latitude:.10444027741202826,longitude:1.2490838384253422}},{uuid:"10fc17bd-b7be-4fbf-0220-a5214f9a6853",type:"CameraMovement",start:65140,end:70250,parsed:!1,data:{effect:"Rotate",panoIndex:0,fov:120,mode:"Panorama",latitude:.2917266708076339,longitude:3.22696039875224,rotation:"Anticlockwise",rotateSpeed:.6}},{uuid:"65022608-f0f2-4745-4554-e019aef325c3",type:"CameraMovement",start:208710,end:210700,parsed:!1,data:{effect:"Move",panoIndex:27,fov:81,mode:"Panorama",latitude:.09538804087572342,longitude:.13388593579664576}},{uuid:"4e8a5281-6136-4f1f-431e-666c53767f76",type:"CameraMovement",start:147600,end:152080,parsed:!1,data:{effect:"Rotate",panoIndex:6,fov:102,mode:"Panorama",latitude:.11636355189082886,longitude:5.151892672556052,rotateSpeed:.5,rotation:"Clockwise"}},{uuid:"06dc1ecb-0f89-43e1-ae79-287036f6fbcc",start:1045,end:1572,data:{text:"\u60A8\u597D",type:"Text"},type:"Prompter"},{uuid:"777ddc34-dea5-4714-ac09-5feea0e644d4",start:1672,end:5009,data:{text:"\u6211\u662F\u8D1D\u58F3\u5408\u4F5C\u623F\u4EA7\u7ECF\u7EAA\u54C1\u724C\u5FB7\u4F51\u5E97\u4E1C\u5468\u677E",type:"Text"},type:"Prompter"},{uuid:"d7fb6ef7-e1bd-4c4f-dcc2-6df3ee701b14",start:5109,end:8237,data:{text:"\u4E5F\u662F\u8D1D\u58F3\u91D1\u724C\u54C1\u8D28\u96C7\u4E3B\u3001\u5FB7\u4F51\u9886\u822A\u8005\u5E97\u4E1C",type:"Text"},type:"Prompter"},{uuid:"af2ea4f8-a88e-487e-d9e8-f648c82c3b0c",start:8337,end:10838,data:{text:"\u5728\u623F\u4EA7\u884C\u4E1A\u5DF2\u7ECF\u5DE5\u4F5C\u4E8614\u5E74",type:"Text"},type:"Prompter"},{uuid:"fe310d2f-ff41-44b8-dc92-6aab94b6014d",start:10938,end:13393,data:{text:"\u5F88\u8363\u5E78\u4E3A\u60A8\u5168\u65B9\u4F4D\u5C55\u793A\u6211\u7684\u5E97\u9762",type:"Text"},type:"Prompter"},{uuid:"a4e0f25e-1bc0-43ec-103d-8205a562c03f",start:13236,end:14646,data:{text:"\u6211\u6240\u7ECF\u8425\u7684\u8FD9\u5BB6\u5E97",type:"Text"},type:"Prompter"},{uuid:"d552e251-142b-4069-e8a6-c95a90cdd5ec",start:14746,end:16922,data:{text:"\u662F\u6B66\u6C49\u5FB7\u4F51\u6700\u5927\u7684\u4F18\u9009\u5F62\u8C61\u5E97",type:"Text"},type:"Prompter"},{uuid:"92c8baea-72af-4304-2328-bfccb6e40e31",start:17022,end:18594,data:{text:"\u5171\u670930\u591A\u540D\u5458\u5DE5",type:"Text"},type:"Prompter"},{uuid:"ff0d6154-45fb-4e08-9e7a-24ca3f05ce3e",start:18694,end:20313,data:{text:"\u5927\u5E97\u4F18\u52BF\u663E\u800C\u6613\u89C1",type:"Text"},type:"Prompter"},{uuid:"c9e8a13d-0487-49bf-44bc-0d776dc7662f",start:20413,end:22984,data:{text:"\u65E2\u80FD\u63D0\u4F9B\u66F4\u597D\u7684\u5DE5\u4F5C\u73AF\u5883\u548C\u6C1B\u56F4",type:"Text"},type:"Prompter"},{uuid:"ad608f54-b33d-4b71-8198-615a30a57b8c",start:23084,end:24587,data:{text:"\u4E5F\u66F4\u5BB9\u6613\u5438\u5F15\u5BA2\u6237",type:"Text"},type:"Prompter"},{uuid:"333ec189-0578-45e6-4004-892ccd92456a",start:24687,end:25911,data:{text:"\u63D0\u5347\u6210\u5355\u6982\u7387",type:"Text"},type:"Prompter"},{uuid:"91760827-5a1f-431d-b170-29146aacd2f9",start:26011,end:28953,data:{text:"\u63A5\u4E0B\u6765\u8DDF\u968F\u6211\u4E00\u8D77\u4E86\u89E3\u95E8\u5E97\u8BE6\u7EC6\u60C5\u51B5\u5427",type:"Text"},type:"Prompter"},{uuid:"5eb73b8f-073d-4cbe-2cc5-c6aa4c90d2d2",start:29053,end:31113,data:{text:"\u5E97\u9762\u4F4D\u4E8E\u5357\u6E56\u90BB\u91CC\u5E7F\u573A",type:"Text"},type:"Prompter"},{uuid:"e300f233-600d-4aa8-e4fc-175c7f6dabb6",start:31213,end:32460,data:{text:"\u4EA4\u901A\u6781\u5176\u4FBF\u5229",type:"Text"},type:"Prompter"},{uuid:"1ba9846d-f020-4f37-d418-9a120e0890d3",start:32560,end:35409,data:{text:"\u8DDD\u79BB7\u53F7\u7EBF\u5EFA\u5B89\u8857\u5730\u94C1\u7AD9\u4EC5300\u7C73",type:"Text"},type:"Prompter"},{uuid:"506e8fb2-e9aa-42c7-e2f3-fe19d2f65a37",start:35509,end:37174,data:{text:"500\u7C73\u5185\u6709\u5C0F\u5B66\u4E2D\u5B66",type:"Text"},type:"Prompter"},{uuid:"ee23e395-1d68-4674-67c7-f235ee0daf49",start:37274,end:39079,data:{text:"\u4E00\u516C\u91CC\u51854\u5BB6\u8D2D\u7269\u5E7F\u573A",type:"Text"},type:"Prompter"},{uuid:"5c655ed0-8768-4d34-6163-331db5abe004",start:39179,end:40566,data:{text:"\u5403\u559D\u73A9\u4E50\u5168\u8986\u76D6",type:"Text"},type:"Prompter"},{uuid:"f805ca1e-1069-45d0-7ec1-de2c3cbabadc",start:40666,end:41890,data:{text:"\u95E8\u593430\u7C73\u5BBD",type:"Text"},type:"Prompter"},{uuid:"d0a15e0c-0c90-4d58-f19e-0911e7471514",start:41990,end:43725,data:{text:"\u5728\u8FD9\u6761\u8857\u9053\u4E0A\u5F88\u663E\u773C",type:"Text"},type:"Prompter"},{uuid:"720fc0be-5a64-400b-d3f8-b750c72a162b",start:43825,end:44886,data:{text:"\u5BBD\u9614\u7684\u573A\u5730",type:"Text"},type:"Prompter"},{uuid:"77531bd9-55e0-40b9-d6e3-832f37b9dbba",start:44986,end:47835,data:{text:"\u4E5F\u65B9\u4FBF\u5F00\u5C55\u5404\u79CD\u4E30\u5BCC\u7684\u4E3B\u9898\u793E\u533A\u6D3B\u52A8",type:"Text"},type:"Prompter"},{uuid:"060100ab-a953-4184-7414-d87938681d1b",start:47935,end:48788,data:{text:"\u7531\u5916\u5411\u5185",type:"Text"},type:"Prompter"},{uuid:"6d651686-a230-479c-4a44-c13f71850869",start:48888,end:52434,data:{text:"\u8FDB\u5165\u95E8\u5E97\u9996\u5148\u6620\u5165\u773C\u5E18\u7684\u662F\u660E\u4EAE\u7684\u524D\u53F0\u63A5\u5F85\u533A",type:"Text"},type:"Prompter"},{uuid:"7f63c69e-af16-458e-6d4b-83751c21b089",start:52534,end:56219,data:{text:"\u5E38\u7528\u4E8E\u9996\u6B21\u5230\u5E97\u7684\u5BA2\u6237\u63A5\u5F85\u548C\u793E\u533A\u90BB\u91CC\u6696\u5FC3\u670D\u52A1",type:"Text"},type:"Prompter"},{uuid:"a244ce90-e416-496a-63b9-da8ec27da526",start:56319,end:59261,data:{text:"\u53EF\u80FD\u662F\u8D70\u7D2F\u4E86\u7684\u5927\u7237\u5927\u5988\u6765\u5E97\u91CC\u4E34\u65F6\u6B47\u811A",type:"Text"},type:"Prompter"},{uuid:"79eec73e-091c-4cab-e175-be96ce0f680e",start:59361,end:61746,data:{text:"\u4E5F\u53EF\u80FD\u662F\u5BB6\u957F\u6765\u4E3A\u5B69\u5B50\u6253\u5370\u4F5C\u4E1A",type:"Text"},type:"Prompter"},{uuid:"237d0697-68d4-4254-16a0-d73b3901cd83",start:61846,end:63743,data:{text:"\u6211\u4EEC\u4EE5\u6696\u5FC3\u670D\u52A1\u52A9\u6C11\u5229\u6C11",type:"Text"},type:"Prompter"},{uuid:"157b4c29-c5ac-470d-19dd-79ae2d54f5cf",start:63843,end:65090,data:{text:"\u6E29\u6696\u90BB\u91CC\u516B\u65B9",type:"Text"},type:"Prompter"},{uuid:"4f4acb0e-430a-46ac-c8a4-f38f9832270c",start:65190,end:66971,data:{text:"\u53F3\u624B\u8FB9\u662F\u5BA2\u6237\u63A5\u5F85\u533A",type:"Text"},type:"Prompter"},{uuid:"6872d4bf-9498-407e-d05c-883e7a65adb0",start:67071,end:68458,data:{text:"\u4E5F\u662F\u5BA2\u6237\u4F11\u606F\u533A",type:"Text"},type:"Prompter"},{uuid:"ee903cbc-6f8e-4a9b-a925-7b15d0a23905",start:68558,end:70246,data:{text:"\u6709\u7535\u89C6\u673A\u4F9B\u5BA2\u6237\u5A31\u4E50",type:"Text"},type:"Prompter"},{uuid:"30ab6e6b-9469-46d6-10a7-3ef0e2b2b88f",start:70346,end:73242,data:{text:"\u4F11\u606F\u533A\u65C1\u7684\u8FD9\u9762\u5899\u6302\u7740\u6211\u4EEC\u7684\u5546\u5708\u5730\u56FE",type:"Text"},type:"Prompter"},{uuid:"a2870c6e-4638-4e7d-1b03-94f17adaace1",start:73342,end:75634,data:{text:"\u8986\u76D6\u6574\u4E2A\u6B66\u6C49\u5730\u533A\u7684\u6240\u6709\u697C\u76D8",type:"Text"},type:"Prompter"},{uuid:"ac4218d6-1f0a-4af7-87fd-4ce9fd406c14",start:75734,end:78235,data:{text:"\u65E0\u8BBA\u662F\u672C\u5730\u5BA2\u6237\u8FD8\u662F\u5916\u5730\u5BA2\u6237",type:"Text"},type:"Prompter"},{uuid:"9def907f-9546-401a-66fe-125dd6fbca04",start:78335,end:80836,data:{text:"\u90FD\u80FD\u901A\u8FC7\u5730\u56FE\u6E05\u6670\u4E86\u89E3\u697C\u5E02\u5E03\u5C40",type:"Text"},type:"Prompter"},{uuid:"63489f30-bdc8-4afc-ace8-0db4e47d16dc",start:80936,end:81742,data:{text:"\u4E00\u76EE\u4E86\u7136",type:"Text"},type:"Prompter"},{uuid:"8ff1c9cc-48b0-4081-ee06-95a1066661e6",start:81842,end:84622,data:{text:"\u8FD9\u8FB9\u662F\u5BBD\u9614\u7684\u843D\u5730\u7A97\u666F\u4F11\u95F2\u5427\u53F0",type:"Text"},type:"Prompter"},{uuid:"dbd88648-2fb8-45df-843b-7f112dd093eb",start:84722,end:85807,data:{text:"\u914D\u6709\u5145\u7535\u5B9D",type:"Text"},type:"Prompter"},{uuid:"d9890f34-01f8-4841-29f0-f4f08157f7d1",start:85907,end:87317,data:{text:"\u5BA2\u6237\u53EF\u4EE5\u5728\u8FD9\u91CC\u7B49\u4EBA",type:"Text"},type:"Prompter"},{uuid:"7fe1ea7d-d435-4174-2eb8-482bfecca261",start:87417,end:90824,data:{text:"\u95E8\u5E97\u7684\u5B9D\u5988\u7ECF\u7EAA\u4EBA\u4E5F\u53EF\u4EE5\u5B89\u7F6E\u5B69\u5B50\u5728\u8FD9\u91CC\u5199\u4F5C\u4E1A",type:"Text"},type:"Prompter"},{uuid:"a4427301-90ca-4d7d-42fb-58f15fcc9192",start:90924,end:92427,data:{text:"\u7B49\u5F85\u5988\u5988\u4E00\u8D77\u4E0B\u73ED",type:"Text"},type:"Prompter"},{uuid:"6a503c9f-8589-40df-1076-b640f69c00eb",start:92527,end:94262,data:{text:"\u63A5\u4E0B\u6765\u662F\u6211\u4EEC\u7684\u8363\u8A89\u5C55\u67DC",type:"Text"},type:"Prompter"},{uuid:"86c737a6-98cb-46c7-1ef2-f85a835e8af8",start:94362,end:97304,data:{text:"\u6EE1\u5899\u7684\u8363\u8A89\u8BB0\u5F55\u4E86\u95E8\u5E97\u7684\u6BCF\u4E00\u62B9\u9AD8\u5149\u65F6\u523B",type:"Text"},type:"Prompter"},{uuid:"da039a1a-a4e6-4f2e-410e-ef768b571f39",start:97404,end:100184,data:{text:"\u6BCF\u4E00\u5458\u4E4B\u95F4\u4E92\u5E2E\u4E92\u52A9\uFF0C\u4E92\u76F8\u6210\u5C31",type:"Text"},type:"Prompter"},{uuid:"f7daa549-013c-464b-041c-da5f8a16edda",start:100284,end:102228,data:{text:"\u624D\u80FD\u4E0D\u65AD\u521B\u9020\u51FA\u65B0\u7684\u6210\u679C",type:"Text"},type:"Prompter"},{uuid:"50536aff-0854-4598-588d-94d590f47e48",start:102512,end:104177,data:{text:"\u731C\u731C\u770B\u8FD9\u9762\u5927\u5C4F\u662F\u4EC0\u4E48",type:"Text"},type:"Prompter"},{uuid:"4deb0587-7d57-4fee-30ed-4fdc7b0860e4",start:104277,end:106778,data:{text:"\u5B83\u662F\u4E00\u6B3E\u9ED1\u79D1\u6280\u2014\u2014VR\u667A\u80FD\u5927\u5C4F",type:"Text"},type:"Prompter"},{uuid:"00d161b1-fdea-4bef-c6bd-8030a9b8b570",start:106878,end:109217,data:{text:"\u201C\u5954\u8DD1\u4E24\u5C0F\u65F6,\u770B\u623F\u4E94\u5206\u949F\u201D",type:"Text"},type:"Prompter"},{uuid:"68ccb1d2-e755-4396-bd34-8f55ca3ea8e0",start:109317,end:111377,data:{text:"\u662F\u5F88\u591A\u4EBA\u771F\u5B9E\u7684\u770B\u623F\u5199\u7167",type:"Text"},type:"Prompter"},{uuid:"9e39bdee-b70a-41ad-8c59-0920cb63ed30",start:111477,end:113932,data:{text:"\u73B0\u5728\u5BA2\u6237\u4E0A\u95E8\u6211\u4EEC\u9996\u5148\u4E86\u89E3\u9700\u6C42",type:"Text"},type:"Prompter"},{uuid:"bc1b057a-4ee0-4940-ad0a-26eb68f5624f",start:114032,end:117415,data:{text:"\u7136\u540E\u5728VR\u5927\u5C4F\u4E0A\u4E3A\u5BA2\u6237\u5C55\u793A\u7B26\u5408\u8981\u6C42\u7684\u623F\u6E90",type:"Text"},type:"Prompter"},{uuid:"2430a276-93f5-4130-c501-50e6f3b5a449",start:117515,end:119180,data:{text:"\u771F\u5B9E\u8FD8\u539F\u623F\u5C4B\u7EC6\u8282",type:"Text"},type:"Prompter"},{uuid:"794bf9f6-fb9e-4d7e-7ab9-c80351ac78d3",start:119280,end:122013,data:{text:"\u8BA9\u5BA2\u6237\u5B9E\u73B0\u89C6\u89C9\u5728\u753B\u9762\u4E2D\u81EA\u7531\u6E38\u8D70",type:"Text"},type:"Prompter"},{uuid:"24d6ce8b-ebc4-4988-034a-3ec9072e2345",start:122113,end:125056,data:{text:"\u5982\u679C\u5BA2\u6237\u6EE1\u610F\uFF0C\u6211\u4EEC\u518D\u53BB\u5B9E\u5730\u5E26\u770B",type:"Text"},type:"Prompter"},{uuid:"0147dd29-25c1-418f-eab0-aabe918a4e0f",start:125156,end:126961,data:{text:"\u80FD\u591F\u6781\u5927\u63D0\u5347\u770B\u623F\u6548\u7387",type:"Text"},type:"Prompter"},{uuid:"906ce1ee-add3-4338-acaf-0bc759602981",start:127061,end:129470,data:{text:"\u518D\u5F80\u91CC\u9762\u8D70\uFF0C\u662F\u5458\u5DE5\u4F11\u606F\u533A",type:"Text"},type:"Prompter"},{uuid:"21674257-9d97-4683-2606-e07603ec22c4",start:129570,end:132071,data:{text:"\u4E5F\u53EF\u4EE5\u8BF4\u662F\u5458\u5DE5\u7684\u5F00\u653E\u5F0F\u529E\u516C\u533A",type:"Text"},type:"Prompter"},{uuid:"20d57f20-3d69-4ab5-3e1d-4b594f79a7de",start:132171,end:133859,data:{text:"\u5728\u8FD9\u91CC\u53EF\u4EE5\u5B89\u9759\u529E\u516C",type:"Text"},type:"Prompter"},{uuid:"5c8178a0-71d5-47b8-a863-cd2e04f8c8b3",start:133959,end:136460,data:{text:"\u4F11\u606F\u533A\u518D\u5F80\u91CC\u662F\u591A\u529F\u80FD\u4F11\u95F2\u533A",type:"Text"},type:"Prompter"},{uuid:"dd265f66-e1a5-4873-7111-5b4565114c83",start:136560,end:139015,data:{text:"\u770B\u4E66\u3001\u53F0\u7403\u3001\u4E52\u4E53\u7403\u4E00\u5385\u4E09\u7528",type:"Text"},type:"Prompter"},{uuid:"d66f5f7c-7bf5-43f2-d437-1003a43dff6a",start:139115,end:140200,data:{text:"\u8FD9\u4E2A\u4E52\u4E53\u7403\u53F0",type:"Text"},type:"Prompter"},{uuid:"e59e0688-6a40-4ee9-2fb5-b59f59d041c2",start:140300,end:142546,data:{text:"\u63D0\u8D77\u6765\u4E4B\u540E\u5C31\u4F1A\u53D8\u6210\u53F0\u7403\u684C",type:"Text"},type:"Prompter"},{uuid:"99fa63ef-7b12-4285-7d99-4f7e14592420",start:142646,end:144543,data:{text:"\u6211\u9F13\u52B1\u5C0F\u4F19\u4F34\u4EEC\u52B3\u9038\u7ED3\u5408",type:"Text"},type:"Prompter"},{uuid:"6cf6623d-be48-4add-5964-ebe5823dbf27",start:144643,end:147585,data:{text:"\u6240\u4EE5\u4F1A\u5C3D\u529B\u5728\u95E8\u5E97\u6253\u9020\u5458\u5DE5\u7684\u201C\u8212\u9002\u533A\u201D",type:"Text"},type:"Prompter"},{uuid:"3091e882-bc83-41f5-6eb8-e5fbb80b2df8",start:147685,end:149536,data:{text:"\u591A\u529F\u80FD\u533A\u57DF\u4FA7\u65B9\u662F\u4E66\u5427",type:"Text"},type:"Prompter"},{uuid:"728a40d3-d29c-4d17-4165-f852613d41f3",start:149636,end:150721,data:{text:"\u53EF\u4EE5\u770B\u4E66\u5145\u7535",type:"Text"},type:"Prompter"},{uuid:"54df8874-f8ab-48c8-2c49-0999451bd2a6",start:150821,end:152068,data:{text:"\u4E5F\u53EF\u4EE5\u653E\u7A7A\u51A5\u60F3",type:"Text"},type:"Prompter"},{uuid:"67d03050-ad1d-4d65-590a-4370db4d9991",start:152168,end:153578,data:{text:"\u518D\u6765\u770B\u4E00\u4E0B\u7B7E\u7EA6\u5BA4",type:"Text"},type:"Prompter"},{uuid:"4f454854-12d5-4828-3255-69c2f552946c",start:153678,end:155622,data:{text:"\u7B7E\u7EA6\u5BA4\u53EF\u4EE5\u5BB9\u7EB3\u5341\u4E8C\u4E2A\u4EBA",type:"Text"},type:"Prompter"},{uuid:"a0a55818-a4ed-46ce-4338-2563248649de",start:155722,end:157225,data:{text:"\u9664\u4E86\u5BA2\u6237\u7B7E\u7EA6\u65F6\u7528",type:"Text"},type:"Prompter"},{uuid:"22cf6cb4-5465-42b8-5c75-aa1e28811ec9",start:157325,end:160500,data:{text:"\u65E5\u5E38\u4F1A\u8BAE\u3001\u57F9\u8BAD\u6D3B\u52A8\u90FD\u53EF\u4EE5\u5728\u8FD9\u4E2A\u7A7A\u95F4\u8FDB\u884C",type:"Text"},type:"Prompter"},{uuid:"96068a33-ea7f-4e10-8342-707d799f79b0",start:160600,end:161987,data:{text:"\u8FD9\u4E5F\u662F\u5927\u5E97\u7684\u4F18\u52BF",type:"Text"},type:"Prompter"},{uuid:"f9e3976f-203d-414d-18a9-23dedd89c20f",start:162087,end:163938,data:{text:"\u901A\u8FC7\u5B9A\u671F\u7CFB\u7EDF\u6027\u57F9\u8BAD",type:"Text"},type:"Prompter"},{uuid:"6b463257-0d4c-469b-d11d-1d1a123c454e",start:164038,end:165332,data:{text:"\u8BA9\u65B0\u4EBA\u8301\u58EE\u6210\u957F",type:"Text"},type:"Prompter"},{uuid:"9190706f-41a2-40d6-2e15-311ee0027a80",start:165432,end:167492,data:{text:"\u7B7E\u7EA6\u5BA4\u7684\u5916\u5899\u4E5F\u662F\u6587\u5316\u5899",type:"Text"},type:"Prompter"},{uuid:"7d5c1cf5-2d6f-42e9-eee4-f6b4a5772cd0",start:167592,end:169652,data:{text:"\u4E3A\u4E86\u6700\u5927\u5316\u6316\u6398\u65B0\u4EBA\u7684\u6F5C\u80FD",type:"Text"},type:"Prompter"},{uuid:"00de4d50-b5af-4d32-df04-b0135fb6d30b",start:169752,end:171487,data:{text:"\u6211\u4F1A\u4E3B\u52A8\u548C\u65B0\u4EBA\u63A5\u89E6",type:"Text"},type:"Prompter"},{uuid:"e218966f-0a5d-4126-004a-9f92aec88e2c",start:171587,end:173252,data:{text:"\u53D1\u73B0\u4ED6\u4EEC\u8EAB\u4E0A\u7684\u95EA\u5149\u70B9",type:"Text"},type:"Prompter"},{uuid:"1db42aae-6ac0-45a3-0a9f-5730b8323fcd",start:173352,end:176201,data:{text:"\u4ECE\u4E2D\u6811\u7ACB\u4F18\u79C0\u7684\u6807\u6746\u5728\u95E8\u5E97\u8FDB\u884C\u5BA3\u4F20",type:"Text"},type:"Prompter"},{uuid:"5964828d-c580-405e-47af-c37cf008b22b",start:176301,end:179545,data:{text:"\u5206\u522B\u6709\u4E1A\u7EE9\u6807\u6746\u3001\u4EF7\u503C\u89C2\u6807\u6746\u548C\u6587\u5316\u6807\u6746",type:"Text"},type:"Prompter"},{uuid:"5da47b79-ce6e-40a5-b1ae-6a4d4076b201",start:179645,end:182030,data:{text:"\u6587\u5316\u5899\u6B63\u5BF9\u7684\u662F\u96C6\u4E2D\u529E\u516C\u533A\u57DF",type:"Text"},type:"Prompter"},{uuid:"d29c8b23-cd62-4a58-aa1d-59d0ba3f39df",start:182130,end:186419,data:{text:"\u623F\u4EA7\u7ECF\u7EAA\u4EBA\u804C\u4E1A\u65E9\u5DF2\u4E0D\u662F\u9760\u8DD1\u817F\u3001\u6253\u7535\u8BDD\u6362\u53D6\u4E1A\u7EE9\u7684\u804C\u4E1A",type:"Text"},type:"Prompter"},{uuid:"4ec9faa9-5780-4a4d-c0f2-c2180dd4c4ba",start:186519,end:190367,data:{text:"\u6211\u4EEC\u9700\u8981\u501F\u52A9\u8D1D\u58F3\u63D0\u4F9B\u7684\u7EBF\u4E0A\u5DE5\u5177\u7BA1\u7406\u623F\u6E90\u5BA2\u6E90\u4FE1\u606F",type:"Text"},type:"Prompter"},{uuid:"1e5e0163-3c32-416e-5fd6-3dfa7bcee00f",start:190467,end:192248,data:{text:"\u89C4\u8303\u5316\u3001\u6D41\u7A0B\u5316\u4F5C\u4E1A",type:"Text"},type:"Prompter"},{uuid:"232052ba-47ca-4f07-0ed3-f0693a740a61",start:192348,end:196126,data:{text:"\u6240\u4EE5\u6211\u4F1A\u4E3A\u6BCF\u4E00\u540D\u5458\u5DE5\u914D\u5907\u7B14\u8BB0\u672C\u6216\u8005\u53F0\u5F0F\u7535\u8111",type:"Text"},type:"Prompter"},{uuid:"87df17c4-cc0f-41e0-fa01-7a58b00d8a36",start:196226,end:199006,data:{text:"\u518D\u5F80\u524D\u8D70\u662F\u7ECF\u7406\u529E\u516C\u5BA4\u548C\u8D22\u52A1\u5BA4",type:"Text"},type:"Prompter"},{uuid:"eae26a0c-d7ce-4c55-dbfd-8489222c05cb",start:199106,end:200446,data:{text:"\u8FD9\u8FB9\u4E5F\u662F\u6587\u5316\u5899",type:"Text"},type:"Prompter"},{uuid:"2449b4d6-501f-4c6d-ad0d-32cc262f8608",start:200546,end:202327,data:{text:"\u8BB0\u5F55\u4E86\u95E8\u5E97\u7684\u70B9\u70B9\u6EF4\u6EF4",type:"Text"},type:"Prompter"},{uuid:"60b31972-9429-41ee-714d-c8e94a98db81",start:202427,end:205393,data:{text:"\u6BCF\u4E00\u4EFD\u8363\u8A89\u3001\u6BCF\u4E00\u6B21\u56E2\u5EFA\u3001\u6BCF\u4E00\u671F\u57F9\u8BAD",type:"Text"},type:"Prompter"},{uuid:"5b8c1c36-d51f-4df4-0c2d-3b515a6adfee",start:205493,end:206717,data:{text:"\u90FD\u4F1A\u5C55\u793A\u5728\u8FD9\u91CC",type:"Text"},type:"Prompter"},{uuid:"11def882-b844-4d94-07de-a8d63781fb25",start:206817,end:208668,data:{text:"\u6211\u4EEC\u7684\u5E97\u662F\u4E00\u4E2A\u6709\u7231\u7684\u56E2\u961F",type:"Text"},type:"Prompter"},{uuid:"2a7d1d8d-0cd6-46f7-02a9-d728ef8e20dd",start:208768,end:210828,data:{text:"\u201C\u5BF9\u7ECF\u7EAA\u4EBA\u597D\u201D\u662F\u6211\u7684\u7528\u5DE5\u7406\u5FF5",type:"Text"},type:"Prompter"},{uuid:"cd70bcfc-a54d-4ad2-b833-b3815af4fe9b",start:210928,end:212988,data:{text:"\u8D70\u5728\u95E8\u5E97\u91CC\u6211\u7ECF\u5E38\u601D\u8003",type:"Text"},type:"Prompter"},{uuid:"2d789507-713a-4640-3730-81ac16c03c6c",start:213088,end:215543,data:{text:"\u600E\u4E48\u80FD\u8BA9\u5458\u5DE5\u4EEC\u50CF\u5728\u5BB6\u4E00\u822C\u8212\u9002",type:"Text"},type:"Prompter"},{uuid:"4d8060e1-b2f9-4dba-943a-7cf73f2ab030",start:215643,end:217308,data:{text:"\u4E8E\u662F\u5C31\u6709\u4E86\u8FD9\u5957\u5458\u5DE5\u67DC",type:"Text"},type:"Prompter"},{uuid:"0e10450e-175e-4a46-ec71-da7c9ae23a5d",start:217408,end:220258,data:{text:"\u6BCF\u4EBA\u4E00\u4E2A\uFF0C\u65E2\u4FDD\u8BC1\u5145\u8DB3\u7684\u50A8\u5B58\u7A7A\u95F4",type:"Text"},type:"Prompter"},{uuid:"1db16507-0c1c-4c8f-6f7f-ed9f9c9f1f48",start:220358,end:221977,data:{text:"\u8FD8\u80FD\u4FDD\u8BC1\u5DE5\u4F4D\u7684\u6574\u6D01",type:"Text"},type:"Prompter"},{uuid:"19bc0567-cc66-472c-481b-58ec8a64f1eb",start:222077,end:223301,data:{text:"\u9664\u4E86\u50A8\u7269\u67DC\u4E4B\u5916",type:"Text"},type:"Prompter"},{uuid:"4a3c01fa-e0e2-4604-776c-8c70f8991e5d",start:223401,end:225415,data:{text:"\u8FD9\u91CC\u8FD8\u8BBE\u6709\u5458\u5DE5\u81EA\u5DF1\u7684\u6C34\u5427",type:"Text"},type:"Prompter"},{uuid:"8b477eb7-452d-4bd9-b703-a981a689b622",start:225515,end:227691,data:{text:"\u6709\u996E\u6C34\u673A\u3001\u5FAE\u6CE2\u7089\u548C\u51B0\u7BB1",type:"Text"},type:"Prompter"},{uuid:"82c50a7e-0868-4464-58dc-f36a49d05e7b",start:227791,end:229317,data:{text:"\u6C34\u5427\u548C\u529E\u516C\u533A\u5206\u5F00",type:"Text"},type:"Prompter"},{uuid:"2c7f7ded-e44f-413f-0450-a52e4d821031",start:229417,end:231477,data:{text:"\u662F\u4E3A\u4E86\u5C0F\u4F19\u4F34\u5728\u5DE5\u4F5C\u95F4\u9699",type:"Text"},type:"Prompter"},{uuid:"bce4d35f-c88f-45c7-dba1-a21f69cba8a3",start:231577,end:233149,data:{text:"\u53EF\u4EE5\u8D77\u6765\u591A\u6D3B\u52A8\u6D3B\u52A8",type:"Text"},type:"Prompter"},{uuid:"352eabc5-35af-4e25-f8f5-d9241f213007",start:233249,end:235146,data:{text:"\u4EE5\u4E0A\u5C31\u662F\u95E8\u5E97\u7684\u57FA\u672C\u60C5\u51B5",type:"Text"},type:"Prompter"},{uuid:"50ef5685-b5a1-4e19-54e0-9271502cb835",start:235246,end:238072,data:{text:"\u5982\u679C\u60A8\u5BF9\u623F\u4EA7\u7ECF\u7EAA\u4EBA\u8FD9\u4EFD\u804C\u4E1A\u611F\u5174\u8DA3",type:"Text"},type:"Prompter"},{uuid:"883e92b3-ea04-4abe-6099-20a317808823",start:238172,end:240743,data:{text:"\u6211\u771F\u8BDA\u9080\u8BF7\u60A8\u6765\u5230\u6211\u7684\u95E8\u5E97\u5B9E\u5730\u8003\u5BDF",type:"Text"},type:"Prompter"},{uuid:"7068453e-b2cd-4736-9a27-cf98ff3dd791",start:240843,end:243669,data:{text:"\u8FD9\u662F\u4E00\u4EFD\u4ED8\u51FA\u5373\u6240\u5F97\u3001\u6210\u957F\u4E0D\u8BBE\u9650\u7684\u804C\u4E1A",type:"Text"},type:"Prompter"},{uuid:"84a4e247-c3e9-4a20-ae14-80c1567c96f2",start:243769,end:246944,data:{text:"\u53EF\u4EE5\u5F97\u5230\u4E13\u4E1A\u7684\u57F9\u8BAD\u3001\u516C\u6B63\u900F\u660E\u7684\u664B\u5347\u901A\u9053",type:"Text"},type:"Prompter"},{uuid:"e1ba1956-24b5-4afc-ca16-97c4747c4bb4",start:247044,end:248664,data:{text:"\u91D1\u724C\u54C1\u8D28\u96C7\u4E3B,\u503C\u5F97\u6258\u4ED8\uFF01",type:"Text"},type:"Prompter"},{uuid:"66b25387-00b6-4ca8-16b9-a2a5447cbfe9",type:"InfoPanel",start:233200,end:236200,parsed:!1,data:{url:"//vrlab-public.ljcdn.com/release/seesay/tools/4___35fe05bbba927f9dedee4de525d7394f.jpg",type:"Image"}},{uuid:"02fed567-054d-4f17-9051-dc63f7632cbe",type:"CameraMovement",start:0,end:2e3,parsed:!1,data:{effect:"Move",panoIndex:0,fov:120,mode:"Panorama",latitude:.04438022675004691,longitude:5.232986472982764}},{uuid:"1024856a-5809-4492-0af6-d0f28b1bb8fc",type:"CameraMovement",start:70300,end:71800,parsed:!1,data:{effect:"Move",panoIndex:10,fov:120,mode:"Panorama",latitude:.0030048662963554655,longitude:1.1385672815664698}},{uuid:"70fc7728-cd97-4b2c-1400-2651dc6044bf",type:"CameraMovement",start:102460,end:103950,parsed:!1,data:{effect:"Move",panoIndex:12,fov:102,mode:"Panorama",latitude:.09535367780803297,longitude:4.538265211748573}},{uuid:"d2784b77-93fc-4788-4d73-564c946e6272",type:"CameraMovement",start:152100,end:153600,parsed:!1,data:{effect:"Move",panoIndex:14,fov:102,mode:"Panorama",latitude:.13272445414646844,longitude:.5147689397444273}},{uuid:"f970f558-3c7a-42d0-ad46-9feb99f04ff6",type:"CameraMovement",start:165380,end:166880,parsed:!1,data:{effect:"Move",panoIndex:18,fov:120,mode:"Panorama",latitude:.010150394708099617,longitude:1.109313455794532}},{uuid:"2173534e-8d54-4197-bb79-a7244ccac6b4",type:"CameraMovement",start:199050,end:201050,parsed:!1,data:{effect:"Move",panoIndex:28,fov:120,mode:"Panorama",latitude:.09871290045418332,longitude:4.731142937321037}},{uuid:"00f378d7-3c72-4f68-32fb-6382069d30f0",type:"CameraMovement",start:240800,end:242300,parsed:!1,data:{effect:"Move",panoIndex:0,fov:120,mode:"Panorama",latitude:.04438022675004691,longitude:5.232986472982764}}]};function P(){const u=e.exports.useRef(!1),{show:a,play:t,hide:r,pause:d,load:p}=i(),f=C();return Object.assign(window,{$load:p,$show:a}),E("div",{className:"btns",children:E("button",{onClick:async()=>{if(!f){d(),r();return}a(),u.current?t():(u.current=!0,p(B))},children:f?"\u64AD\u653E":"\u6682\u505C"})})}export{P as A,D as V};
@@ -0,0 +1,64 @@
1
+ var Ue=Object.defineProperty;var Ve=(e,t,n)=>t in e?Ue(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;var b=(e,t,n)=>(Ve(e,typeof t!="symbol"?t+"":t,n),n);import{r as w,S as ne,m as we,o as O,b as H,d as be,e as Ne,E as Be,T as $e,F as oe,j as h,f as L,a as R,V as P,g as Ie,L as G,h as Pe,i as Oe,B as qe,k as re,M as se,D as ie,l as J,n as Ae,q as je,s as We,t as ae,C as _e,v as He,w as U,x as ue,y as Te,z as Ge,P as ce,Q as Je,R as Ke,p as q,A as Qe,G as Xe,O as Ye,W as Ze,H as le,I as de}from"./vendor.f4c5cb32.js";const et=function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const o of document.querySelectorAll('link[rel="modulepreload"]'))s(o);new MutationObserver(o=>{for(const i of o)if(i.type==="childList")for(const a of i.addedNodes)a.tagName==="LINK"&&a.rel==="modulepreload"&&s(a)}).observe(document,{childList:!0,subtree:!0});function n(o){const i={};return o.integrity&&(i.integrity=o.integrity),o.referrerpolicy&&(i.referrerPolicy=o.referrerpolicy),o.crossorigin==="use-credentials"?i.credentials="include":o.crossorigin==="anonymous"?i.credentials="omit":i.credentials="same-origin",i}function s(o){if(o.ep)return;o.ep=!0;const i=n(o);fetch(o.href,i)}};et();const K=window.requestAnimationFrame||(e=>setTimeout(e,16)),tt=window.cancelAnimationFrame||clearTimeout;function Ee(e,t=0){t<=0?K(e):K(()=>Ee(e,t-1))}function Q(e,t=60){let n=-1,s=0,o=-1;const i=1e3/t;function a(c){o===-1&&(o=c),n=K(a),!(c-s<i)&&(s=c,e&&e(c-o))}return n=K(a),function(){tt(n)}}class nt extends ne{constructor(){super();b(this,"$five");b(this,"configs");b(this,"videoAgentScene");b(this,"vreoUnit");b(this,"stopInterval");b(this,"playing",!1);b(this,"visible",!1);b(this,"popUp",null);b(this,"drawerConfig",null);we(this,{visible:O,setVisible:H,playing:O,setPlaying:H,popUp:O.ref,openPopUp:H,drawerConfig:O.ref,openDrawer:H}),be(()=>this.playing,t=>{this.emit(t?"playing":"paused")})}get isAudio(){var t,n;return!((n=(t=this.videoAgentScene)==null?void 0:t.videoAgentMesh.videoUrl)==null?void 0:n.endsWith(".mp4"))}openPopUp(t){if(!t){this.popUp=null;return}this.popUp=t}setVisible(t){this.visible=t}setPlaying(t){this.playing=t}openDrawer(t){var n;if(!t){this.drawerConfig={content:"",height:(n=this.drawerConfig)==null?void 0:n.height};return}this.drawerConfig=t}get ready(){return!!this.videoAgentScene}get currentTime(){var t;return((t=this.videoAgentScene)==null?void 0:t.videoAgentMesh.currentTime)||0}get currentKeyframes(){return this.vreoUnit?this.vreoUnit.keyframes.filter(n=>{if(n.parsed)return!1;const s=this.currentTime-n.start;return s<=100&&s>=0}):[]}get videoInstance(){var t;return(t=this.videoAgentScene)==null?void 0:t.videoAgentMesh.videoInstance}requestAnimationFrameLoop(t){var s,o,i,a;if((s=this.videoInstance)==null?void 0:s.ended){this.setPlaying(!1),this.videoInstance.pause();return}if(!this.playing){((o=this.videoInstance)==null?void 0:o.paused)||(i=this.videoInstance)==null||i.pause();return}((a=this.videoInstance)==null?void 0:a.paused)&&this.playing&&this.videoInstance.play(),this.currentKeyframes.forEach(c=>{c.parsed||(c.parsed=!0,this.emit(c.type,c),t&&t(c.type,c))})}run(t){this.stopInterval||(this.stopInterval=Q(()=>this.requestAnimationFrameLoop(t)))}dispose(){this.setPlaying(!1),this.currentKeyframes&&this.currentKeyframes.forEach(t=>t.parsed=!1),this.vreoUnit=void 0,this.videoInstance&&(this.videoInstance.currentTime=0),this.stopInterval&&(this.stopInterval(),this.stopInterval=void 0)}}const Ce=w.exports.createContext(null);function C(){const e=Ne.useContext(Ce);if(!e)throw new Error('\u6CA1\u6709\u627E\u5230 "ControllerContext"');return e}function V(){const e=C();if(!e.$five)throw new Error('\u6CA1\u6709\u627E\u5230 "five" \u5B9E\u4F8B');return e.$five}function Me(){const e=V();return t=>e.project2d(t,!1)}var X;(function(e){e.Move="Move",e.Rotate="Rotate"})(X||(X={}));var z;(function(e){e.Clockwise="Clockwise",e.Anticlockwise="Anticlockwise",e.Loop="Loop"})(z||(z={}));const ke=Be;function ot(e,t,n,s=ke.Linear.None){const o=new $e(e).to(t,n).easing(s);Ee(()=>o.start(0));const i=Q(c=>{o.update(c)===!1&&i()}),a=[];return o.onDestroy=c=>(a.push(c),o),o.destroy=function(){this.stop(),Object.assign(o,{_onStartCallback:null,_onUpdateCallback:null,_onCompleteCallback:null,_onStopCallbackL:null});let c;for(;c=a.shift();)c();i()},o}function rt(e,t){return ot({progress:0},{progress:1},e,t)}const Y=Math.PI*2;function Le(e){return e%Y}function Se(e){return(e%Y+Y)%Y}const fe=(e,t,n)=>{const s=Math.PI,o=s*2;return e=Se(e),t=Se(t),n===z.Anticlockwise&&e<t&&(e+=o),n===z.Clockwise&&t<e&&(t+=o),n===z.Loop&&t-e>s?fe(e,t,z.Anticlockwise):n===z.Loop&&e-t>s?fe(e,t,z.Clockwise):{from:e,to:t}};function pe(e,t,n){return e+(t-e)*n}const st=e=>{const t=(o,i,a={preload:!0})=>new Promise(async(c,f)=>{if(a.asyncStartCallback&&a.asyncStartCallback(),e.panoIndex===void 0)return f(!1);if(o.mode&&o.mode!==e.currentMode&&await new Promise(p=>{!o.mode||(e.once("modeChange",r=>{e.once("initAnimationEnded",()=>{r===o.mode&&p(!0)})}),e.changeMode(o.mode,{fov:o.fov||void 0,latitude:o.latitude||void 0,longitude:o.longitude||void 0,panoIndex:o.panoIndex||void 0}))}),o.mode===oe.Mode.Floorplan||(a.preload&&o.panoIndex!==void 0&&o.panoIndex!==e.panoIndex&&await e.preloadPano(o.panoIndex),a.asyncEndCallback&&a.asyncEndCallback(),o.panoIndex===void 0&&o.fov===void 0&&o.latitude===void 0&&o.longitude===void 0))return c(!0);const l=o.panoIndex!==void 0?o.panoIndex:e.panoIndex;if(l!==void 0){const p=Object.assign(o,{duration:i,moveEndCallback:()=>c(!0),moveCancelCallback:()=>{c(!0)}});await e.moveToPano(l,p)}else f(!1)}),n=o=>{const i=e.state,a=Le(i.latitude),c=Le(o.latitude),{from:f,to:l}=fe(i.longitude,o.longitude,o.rotation||z.Loop),p=i.fov,r=o.fov;return{from:{latitude:a,longitude:f,fov:p},to:{latitude:c,longitude:l,fov:r}}};return{move:t,rotate:async(o,i,a={})=>{a.asyncStartCallback&&a.asyncStartCallback(),o.mode&&e.currentMode!==o.mode&&await e.changeMode(o.mode),o.mode===oe.Mode.Panorama&&e.currentMode===oe.Mode.Panorama&&o.panoIndex!==void 0&&o.panoIndex!==e.panoIndex&&(a.preload&&await e.preloadPano(o.panoIndex),await new Promise((l,p)=>{e.moveToPano(o.panoIndex,{moveEndCallback:()=>l(!0),moveCancelCallback:()=>p(!1),effect:"fade"})})),a.asyncEndCallback&&a.asyncEndCallback();const{from:c,to:f}=n(o);return await new Promise((l,p)=>{const r=({progress:d})=>{const x={};x.longitude=pe(c.longitude,f.longitude,d),x.latitude=pe(c.latitude,f.latitude,d),x.fov=pe(c.fov,f.fov,d),e.setState(x,!0)},v=()=>{l(!0)},g=()=>{l(!1)},u=o.rotateSpeed?Math.ceil(Math.abs(f.longitude-c.longitude)/o.rotateSpeed*1e3):i,m=rt(u,ke.Linear.None).onUpdate(r).onComplete(v).onDestroy(g);o.rotation===z.Loop&&m.repeat(1/0).yoyo(!0),setTimeout(()=>{m.destroy(),l(!0)},i)})}}};var T;(function(e){e.CameraMovement="CameraMovement",e.PanoTag="PanoTag",e.PanoTextLabel="PanoTextLabel",e.Prompter="Prompter",e.UpdateVRPanorama="UpdateVRPanorama",e.ModelVideo="ModelVideo",e.PanoEffect="PanoEffect",e.InfoPanel="InfoPanel",e.VideoEffect="VideoEffect",e.BgMusic="BgMusic",e.Exit="Exit",e.Custom="Custom"})(T||(T={}));var j;(function(e){e.Text="Text",e.Image="Image"})(j||(j={}));var Z;(function(e){e.Growth="Growth",e.Expand="Expand"})(Z||(Z={}));var Re;(function(e){e.Distance="Distance"})(Re||(Re={}));var B;(function(e){e.Image="Image",e.Video="Video"})(B||(B={}));var me;(function(e){e.Drawer="Drawer",e.PopUp="PopUp"})(me||(me={}));function it(){const e=C(),t=V(),n=w.exports.useRef();return w.exports.useEffect(()=>{const s=async o=>{n.current||(n.current=st(t));const{start:i,end:a,data:c}=o,f=c,l=f.effect;l===X.Rotate?await n.current.rotate(c,a-i):l===X.Move?await n.current.move(c,a-i):f.panoIndex!==void 0&&f.panoIndex!==t.panoIndex?await n.current.move(c,a-i):await n.current.rotate(c,a-i)};return e.on(T.CameraMovement,s),()=>{e.off(T.CameraMovement,s)}},[e]),h(L,{})}function Fe({url:e,children:t}){return R("div",{className:"vreo-infoPanel vreo-infoPanel--img",children:[t,h("div",{className:"vreo-infoPanelImg",style:{backgroundImage:`url(${e})`}})]})}function De({url:e,children:t}){return R("div",{className:"vreo-infoPanel vreo-infoPanel--video",children:[t,h("div",{className:"vreo-infoPanelWrapper",children:h("video",{playsInline:!0,autoPlay:!0,className:"vreo-infoPanelVideo",src:e})})]})}const ee=e=>!e.title&&!e.subTitle?null:R("div",{className:"vreo-infoPanel-title",children:[h("div",{className:"vreo-infoPanel-t1",children:e.title}),h("div",{className:"vreo-infoPanel-t2",children:e.subTitle})]});function at(){const e=w.exports.useRef(),t=C();return w.exports.useEffect(()=>{var s;if(((s=t.configs)==null?void 0:s.keyframeMap.InfoPanel)===!1)return;const n=o=>{const{start:i,end:a,data:c}=o,f=c,{title:l,subTitle:p,style:r}=f;do{if(r===me.PopUp){f.type===B.Image?t.openPopUp(h(Fe,{url:f.url,children:h(ee,{title:l,subTitle:p})})):f.type===B.Video&&t.openPopUp(h(De,{url:f.url,children:h(ee,{title:l,subTitle:p})}));break}f.type===B.Image?t.openDrawer({content:h(Fe,{url:f.url,children:h(ee,{title:l,subTitle:p})}),height:"60vh"}):f.type===B.Video&&t.openDrawer({content:h(De,{url:f.url,children:h(ee,{title:l,subTitle:p})}),height:"60vh"})}while(!1);e.current=setTimeout(()=>{t.openDrawer(!1),t.openPopUp(!1)},a-i)};return t.on(T.InfoPanel,n),()=>{t.off(T.InfoPanel,n),e.current&&clearTimeout(e.current)}},[t]),h(L,{})}const ut=(e,{videoElement:t})=>{const n={videoMeshes:[],videoTextureEnabled:!1,videoSource:"",rectPoints:[],enabled:!1,videoElement:t},s=r=>{n.videoTexture&&(n.videoTexture.image.muted=r,n.videoTexture.image.play())},o=()=>n.videoTexture?n.videoTexture.image.muted:!0,i=()=>{if(n.enabled||!n.videoTexture)return;n.enabled=!0,n.videoMeshes=c(),n.videoMeshes.forEach(v=>e.scene.add(v));const r=()=>{if(!n.videoTexture)return;const v=()=>{var g;!n.videoTexture||((g=n.videoTexture)==null||g.image.removeEventListener("timeupdate",v),n.videoTextureEnabled=!0,n.videoMeshes.forEach(u=>{u.material.map!==n.videoTexture&&(u.material.map=n.videoTexture)}),e.needsRender=!0)};n.videoTexture.image.addEventListener("timeupdate",v),n.videoTexture&&n.videoMeshes.length&&n.videoTexture.image.play()};if(e.model.loaded)r();else return e.once("modelLoaded",()=>r())},a=()=>{!n.enabled||(n.enabled=!1,n.videoMeshes.forEach(r=>{r.geometry.dispose(),r.material.dispose(),e.scene.remove(r),n.videoTexture&&n.videoTexture.image.pause()}),n.videoMeshes=[],e.needsRender=!0)},c=()=>n.rectPoints.map((r,v)=>{const g=new qe,u=128,m=[];m.push(r[0].x,r[0].y,r[0].z);for(let y=1;y<u;y++)m.push(r[0].x+(r[1].x-r[0].x)*y/u,r[0].y+(r[1].y-r[0].y)*y/u,r[0].z+(r[1].z-r[0].z)*y/u);m.push(r[1].x,r[1].y,r[1].z),m.push(r[2].x,r[2].y,r[2].z);for(let y=1;y<u;y++)m.push(r[2].x+(r[3].x-r[2].x)*y/u,r[2].y+(r[3].y-r[2].y)*y/u,r[2].z+(r[3].z-r[2].z)*y/u);m.push(r[3].x,r[3].y,r[3].z);const d=[];d.push(0,1);for(let y=1;y<u;y++)d.push(0,1-y/u);d.push(0,0),d.push(1,0);for(let y=1;y<u;y++)d.push(1,y/u);d.push(1,1);const x=[];for(let y=0;y<u;y++)x.push(y,y+1,u*2-y,y,u*2-y,u*2+1-y);g.setAttribute("position",new re(new Float32Array(m),3)),g.setAttribute("uv",new re(new Float32Array(d),2)),g.setIndex(new re(new Uint32Array(x),1));const A=new se({map:n.videoTextureEnabled?n.videoTexture:n.imageTexture,side:ie}),I=new J(g,A);return I.renderOrder=1,I.name=`video-${v}-${performance.now()}`,I}),f=r=>{const v=new Ae().load(r);return v.minFilter=G,v.magFilter=G,v.format=Pe,v},l=(r,v)=>new Promise((g,u)=>{const m=new XMLHttpRequest;m.onreadystatechange=()=>{if(m.readyState==4)if(m.status==200){const d=window.URL||window.webkitURL;v=v||document.createElement("video"),v.crossOrigin="anonymous",v.autoplay=!0,v.muted=!0,v.loop=!0,v.playsInline=!0,v.src=d.createObjectURL(m.response);const x=new Ie(v);x.minFilter=G,x.magFilter=G,x.format=Pe,g(Object.assign(x,{videoSource:r}))}else u(new Error("Video download Error: "+m.status))},m.onerror=d=>u(d),m.open("GET",r),m.responseType="blob",m.send()}),p=async(r,v)=>{const{video_src:g,video_poster_src:u,points:m}=r;n.videoSource=g,n.rectPoints=m.map(d=>d.map(({x,y:A,z:I})=>new P(x,A,I))),n.imageTexture=f(u),v&&(n.videoElement=v),n.videoTexture=await l(n.videoSource,n.videoElement),n.enabled=!!r.enable,n.enabled&&i()};return e.on("modeChange",()=>s(!0)),e.on("wantsTapGesture",r=>{if(!n.enabled)return;const[v]=r.intersectObjects(e.scene.children,!0);if(!!v&&/^video/.test(v.object.name))return n.videoTexture&&s(!n.videoTexture.image.muted),!1}),e.on("panoArrived",()=>{if(!n.enabled||o())return;const r=e.camera.position;n.rectPoints.find(g=>{const u=g.reduce((m,d)=>new P(m.x+d.x/g.length,m.y+d.y/g.length,m.z+d.z/g.length),new P);return g.map(m=>new P((m.x+u.x)/2,(m.y+u.y)/2,(m.z+u.z)/2)).filter(m=>{m=m.clone().sub(r).normalize();const d=new Oe(r,m),[x]=d.intersectObjects(e.scene.children,!0);return!!x&&/^video/.test(x.object.name)}).length>=2})||s(!0)}),e.on("renderFrame",()=>{n.videoMeshes.forEach(r=>{r&&(r.needsRender=!0)})}),e.on("load",r=>{r.modelTVVideoData&&p(r.modelTVVideoData)}),{enable:i,disable:a,load:p}};function ct(e){const t=new je;return t.fromArray(e),n=>{const s=new P(...n);return s.applyMatrix4(t),s.toArray()}}function lt(){const e=C(),t=V(),n=w.exports.useRef(),s=w.exports.useRef();return w.exports.useEffect(()=>{const o=async i=>{var u,m;n.current||(n.current=ut(t,{}));const{start:a,end:c}=i,{videoSrc:f,videoPosterSrc:l,vertexs:p,matrixWorld:r}=i.data,v=(()=>{if(p.length<4)throw new Error("ModelVideo: \u9876\u70B9\u6570\u636E\u96C6\u5408\u4E0D\u591F\uFF0C\u65E0\u6CD5\u7EC4\u6210\u77E9\u5F62 ....");if(p.length===4)return p;const d=new We;return p.forEach(x=>d.expandByPoint(new P(x.x,x.y,x.z))),[new P(d.min.x,d.max.y,d.max.z),new P(d.min.x,d.min.y,d.max.z),new P(d.max.x,d.min.y,d.max.z),new P(d.max.x,d.max.y,d.max.z)]})(),g=(()=>{if(r){const d=ct(r);return[v.map(x=>{const A=d([x.x,x.y,x.z]);return{x:A[0],y:A[1],z:A[2]}})]}return[v]})();n.current.disable(),await n.current.load({video_src:f,video_poster_src:l,points:g},(m=(u=e.configs)==null?void 0:u.videos)==null?void 0:m.modelTVVideo),n.current.enable(),s.current=setTimeout(()=>{var d;return(d=n.current)==null?void 0:d.disable()},c-a)};return e.on(T.ModelVideo,o),()=>{e.off(T.ModelVideo,o),s.current&&clearTimeout(s.current)}},[e]),h(L,{})}class dt extends ae.Tween{constructor(){super(...arguments);b(this,"disposeMethods",[]);b(this,"animationFrameDisposer");b(this,"onDispose",t=>(this.disposeMethods.push(t),this));b(this,"play",()=>(this.start(),this.animationFrameDisposer=Q(()=>this.update()),this));b(this,"dispose",()=>{var t;this.stop(),(t=this.animationFrameDisposer)==null||t.call(this),this.disposeMethods.forEach(n=>n()),this.disposeMethods=[],ae.remove(this)})}}function ft(e,t=ae.Easing.Linear.None){const n=new dt({progress:0}).to({progress:1});return e!==void 0&&n.duration(e),t!==void 0&&n.easing(t),n}function pt(e,t,n){const s="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAAIVBMVEUAAAD////////////////////////////////////////PIev5AAAACnRSTlMAG/Py2baba05un7UgfgAAAHJJREFUKM9joBpgLHVSCRdA4metAoJlCJHmVWBgAeNzroKCCVCBLpjACqgJVjCBxRBT2FbBQQJYQAohsBAsUIUQWA4WiEIILAULeCEEloAFtBACizAEMLRgGIphLabDMJ2O6TlM72MGECIIMQIZIxqoBQCPvpJ/e9FaAAAAAABJRU5ErkJggg==",o=new Ae().load(s),i=new _e(16777215),a=new He;a.setMaterial({linewidth:2,color:i});const c=a.points.material;return c.map=o,c.color.set(i),a.line.material.depthTest=!1,ft().onUpdate(({progress:f})=>{const l=.5-f/2,p=.5+f/2,r=t.clone().lerp(n,l),v=t.clone().lerp(n,p);a.setPoints(r,v)}).onStart(()=>e.scene.add(a)).onDispose(()=>{e.scene.remove(a),e.needsRender=!0})}function mt(){const[e,t]=w.exports.useState(null),n=V(),s=w.exports.useRef(null),[o,i]=w.exports.useState(null),a=w.exports.useRef(),c=C(),f=Me(),l=()=>{s.current&&s.current.dispose()};return w.exports.useEffect(()=>{const p=r=>{const{start:v,end:g,data:u}=r,m=u,[d,x]=m.twoVertexs,A=new P(d.x,d.y,d.z),I=new P(x.x,x.y,x.z);s.current=pt(n,A.clone(),I.clone()),s.current.play();const y=A.lerp(I,.5),D=A.distanceTo(I),M=f(y);if(!M)return;const{x:S,y:E}=M;t({center:y,distance:D}),i({left:S,top:E}),a.current=setTimeout(()=>{t(null),i(null),l()},g-v)};return c.on(T.PanoEffect,p),()=>{c.off(T.PanoEffect,p),a.current&&clearTimeout(a.current),l()}},[c]),w.exports.useEffect(()=>{const p=()=>{if(!(e==null?void 0:e.center))return;const{x:r,y:v,z:g}=e.center,u=f(new P(r,v,g));if(!u)return;const{x:m,y:d}=u;i({left:m,top:d})};return n.on("currentStateChange",p),()=>{n.off("currentStateChange",p)}},[e==null?void 0:e.center]),h(L,{children:h("div",{className:U("PanoEffect",{"PanoEffect--notHidden":e}),style:{left:((o==null?void 0:o.left)||0)+"px",top:((o==null?void 0:o.top)||0)+"px"},children:(e==null?void 0:e.distance.toFixed(4))+"m"})})}function ht(){const[e,t]=w.exports.useState(null),[n,s]=w.exports.useState(null),o=w.exports.useRef(),i=C(),a=V(),c=Me();w.exports.useEffect(()=>{var p;if(((p=i.configs)==null?void 0:p.keyframeMap.PanoTag)===!1)return;const l=r=>{const{start:v,end:g,data:u}=r,m=u,d=m.vertex,{x,y:A,z:I}=m.vertex,y=c(new P(x,A,I));if(!y)return;const{x:D,y:M}=y;t({vertex:d,text:m.text||j.Text,type:m.type,imgUrl:m.imgUrl,style:m.style||Z.Growth}),s({left:D,top:M}),o.current=setTimeout(()=>{t(null),s(null)},g-v)};return i.on(T.PanoTag,l),()=>{i.off(T.PanoTag,l),o.current&&clearTimeout(o.current)}},[i]),w.exports.useEffect(()=>{const l=()=>{if(!(e==null?void 0:e.vertex))return;const{x:p,y:r,z:v}=e.vertex,g=c(new P(p,r,v));if(!g)return;const{x:u,y:m}=g;s({left:u,top:m})};return a.on("currentStateChange",l),()=>{a.off("currentStateChange",l)}},[e==null?void 0:e.vertex]);const f=(()=>{if(!!e){if(e.type===j.Text)return h(L,{children:h("span",{children:e.text})});if(e.type===j.Image)return R(L,{children:[h("img",{className:"PanoTag-img",src:e.imgUrl,alt:e.text||""}),h("span",{className:"PanoTag-txt",children:e.text})]})}})();return(e==null?void 0:e.style)===Z.Expand?h(L,{children:R("div",{className:U("PanoTag",{"PanoTag--expand":!0,"PanoTag--notHidden":e}),style:{left:((n==null?void 0:n.left)||0)+"px",top:((n==null?void 0:n.top)||0)+"px"},children:[h("div",{className:"PanoTag-box PanoTag-box--"+((e==null?void 0:e.type)||""),children:f}),h("div",{className:"PanoTag-guideline"})]})}):h(L,{children:R("div",{className:U("PanoTag",{"PanoTag--notHidden":e}),style:{left:((n==null?void 0:n.left)||0)+"px",top:((n==null?void 0:n.top)||0)+"px"},children:[h("div",{className:"PanoTag-point"}),R("div",{className:"PanoTag-content",children:[R("span",{className:"PanoTag-linewrap",children:[h("span",{className:"PanoTag-slashline"}),h("span",{className:"PanoTag-straightline"})]}),h("div",{className:"PanoTag-box PanoTag-box--"+((e==null?void 0:e.type)||""),children:f})]})]})})}function te(e,t){const n=Math.round(e);return n%2==0?n:n+Number((t==null?void 0:t.smaller)?-1:1)}function vt(e,t){return new P((e.x+t.x)/2,(e.y+t.y)/2,(e.z+t.z)/2)}const xt=({x:e,y:t,z:n})=>new P(e,t,n);function gt(e,t){if(!t||typeof ResizeObserver=="undefined")return{observe:()=>window.addEventListener("resize",e),unobserve:()=>window.removeEventListener("resize",e)};{const n=new ResizeObserver(e);return{observe:()=>n.observe(t),unobserve:()=>n.unobserve(t)}}}const yt=e=>{const t={disposeCallbacks:[]},n=(...o)=>{var xe,ge,ye;const i=o[0].map(k=>k instanceof P?k:xt(k)),a=o[1];if((i==null?void 0:i.length)<4)return console.error("points must be equal or greater than than 4");if(!((xe=e==null?void 0:e.model)==null?void 0:xe.loaded))return console.error("five.model.loaded is: ",(ge=e==null?void 0:e.model)==null?void 0:ge.loaded);const c=e.getElement();if(!c)return console.error("five.getElement() is "+c);const f=[],l=(a==null?void 0:a.ratio)||.00216;l<=.00215&&console.warn("if you need click css3DElement on safari, ratio must be greater than 0.00215");const p=(a==null?void 0:a.dpr)||1,r=(a==null?void 0:a.mode)||"front",v=(ye=a==null?void 0:a.autoRender)!=null?ye:!0,g=(a==null?void 0:a.behindFiveContainer)||c.parentElement||document.body,u=(a==null?void 0:a.container)||document.createElement("div");u.classList.add("__Dnalogel-plugin--CSS3DRenderPlugin");const{css3DObject:m,mesh:d}=s(i,{ratio:l,dpr:p,container:u,mode:r});let x;const A=r==="front"&&!t.frontMode,I=r==="behind"&&!t.behindMode,y=!(A||I);let D=!1,M=null;I&&(t.behindMode={scene:new ue,css3DRenderer:new Te}),A&&(t.frontMode={scene:new ue,css3DRenderer:new Te});const{scene:S,css3DRenderer:E}=r==="behind"?t.behindMode:t.frontMode,W=(()=>{if(y)return()=>{S.add(m)};{const k=()=>{const _=te(c.clientWidth,{smaller:!0}),ze=te(c.clientHeight,{smaller:!0});E.setSize(_,ze)};k(),x=gt(k,c),E.domElement.style.position="absolute",E.domElement.style.top="0",E.domElement.style.userSelect="none",E.domElement.style.pointerEvents="none";const N=()=>{D||(M=requestAnimationFrame(N),E.render(S,e.camera))};return()=>{var _;S.add(m),(_=x==null?void 0:x.observe)==null||_.call(x),N(),r==="behind"&&d&&(e.scene.add(d),f.push(()=>d&&e.scene.remove(d)))}}})();A&&(c.parentElement||document.body).appendChild(E.domElement),I&&g.appendChild(E.domElement);const $=()=>{var k;return D=!0,f.forEach(N=>N==null?void 0:N()),S.remove(m),typeof M=="number"&&cancelAnimationFrame(M),S.children.length===0&&(E.domElement.remove(),r==="front"&&(t.frontMode=void 0),r==="behind"&&(t.behindMode=void 0),!t.behindMode&&!t.frontMode&&((k=x==null?void 0:x.unobserve)==null||k.call(x))),!0},ve=t.disposeCallbacks.findIndex(k=>k===$);return ve!==-1?t.disposeCallbacks.splice(ve,1):t.disposeCallbacks.push($),v&&W(),{container:u,dispose:$,css3DObject:m,render:v?void 0:W}},s=(o,i)=>{const{ratio:a,dpr:c,container:f,mode:l}=i,p=o[0].distanceTo(o[1]),r=o[1].distanceTo(o[2]),v=te(p/a*c),g=te(r/a*c),u=new Ge(f);u.scale.set(a,a,a),f.style.width=v+"px",f.style.height=g+"px",f.style.pointerEvents="none";const m=vt(o[0],o[2]),d=o[1].clone().sub(o[0]),x=o[2].clone().sub(o[1]),A=new P(0,1,0).angleTo(new P(0,x.y,x.z)),I=new P(1,0,0).angleTo(new P(d.x,0,d.z)),y=d.angleTo(new P(d.x,0,d.z)),D=(x.z>0?-1:1)*A,M=(d.z<0?1:-1)*I,S=(d.x>0&&d.y<0||d.x<0&&d.y>0?-1:1)*y;u.rotateOnWorldAxis(new P(1,0,0),D),u.rotateOnWorldAxis(new P(0,1,0),M),u.rotateOnWorldAxis(new P(0,0,1),S),u.position.set(m.x,m.y,m.z);let E;if(l==="behind"){const W=new se({opacity:0,transparent:!1,side:ie}),$=new ce(v,g);E=new J($,W),E.name="CSS3DRenderPlugin-mesh",E.position.copy(u.position),E.rotation.copy(u.rotation),E.scale.copy(u.scale)}return{css3DObject:u,mesh:E}};return{create3DDomContainer:n,disposeAll:()=>{t.disposeCallbacks.forEach(o=>o==null?void 0:o()),t.disposeCallbacks=[]}}},wt=(e,t,n,s)=>{const o=n/375,i=s/375,a=new ce(o,i);if(t){const A=new P(t.x+e.x,t.y+e.y,t.z+e.z);a.lookAt(A)}const c=new se({color:16776960,side:ie}),f=new J(a,c),l=e.clone();f.position.copy(l);const[p,r,v,g]=f.geometry.vertices,u=l.clone().add(g),m=l.clone().add(v),d=l.clone().add(r),x=l.clone().add(p);return[u,m,x,d]};function bt(){const e=w.exports.useRef(),t=C(),n=V(),s=w.exports.useRef();return w.exports.useEffect(()=>{var i;if(((i=t.configs)==null?void 0:i.keyframeMap.PanoTextLabel)===!1)return;const o=a=>{var D,M,S;const{start:c,end:f,data:l}=a,p=l;if(l.text==="")return;const{x:r,y:v,z:g}=p.vertex,u=new P(r,v,g),m=new P((D=p.normal)==null?void 0:D.x,(M=p.normal)==null?void 0:M.y,(S=p.normal)==null?void 0:S.z),d=200,x=30,A=wt(u,p.normal&&m,d,x);s.current||(s.current=yt(n));const I=s.current.create3DDomContainer(A),y=I==null?void 0:I.css3DObject;if(l.quaternion){const E=new Je(l.quaternion.x,l.quaternion.y,l.quaternion.z,l.quaternion.w);y==null||y.quaternion.copy(E)}(I==null?void 0:I.container)&&Ke.render(h("div",{className:"PanoTextLabel PanoTextLabel--notHidden",children:h("div",{className:"PanoTextLabel-wrapper",children:h("div",{style:{fontSize:`${l.fontSize||16}px`},className:"PanoText-innerText",children:l.text||""})})}),I==null?void 0:I.container),e.current=setTimeout(()=>{var E;(E=s.current)==null||E.disposeAll()},f-c)};return t.on(T.PanoTextLabel,o),()=>{t.off(T.PanoTextLabel,o),e.current&&clearTimeout(e.current)}},[t]),h(L,{})}function It(){const[e,t]=w.exports.useState(""),[n,s]=w.exports.useState(!0),o=w.exports.useRef(null),i=C();return w.exports.useEffect(()=>{var c;if(((c=i.configs)==null?void 0:c.keyframeMap.Prompter)===!1)return;const a=f=>{const{start:l,end:p,data:r}=f;t(r.text),s(!1),o.current&&(clearTimeout(o.current),o.current=null),o.current=setTimeout(()=>{s(!0),t(""),o.current&&clearTimeout(o.current),o.current=null},p-l)};return i.on(T.Prompter,a),()=>{i.off(T.Prompter,a)}},[i]),h("div",{className:U("vreo-prompter",{"vreo-prompter--hidden":n,"vreo-prompter--audio":i.isAudio}),children:h("div",{className:"vreo-prompter-text",children:h("div",{className:"vreo-prompter-innerText",children:e})})})}function Pt(){const e=C(),t=V(),n=w.exports.useRef(null),s=w.exports.useRef(null),o=w.exports.useCallback(()=>{if(s.current=null,n.current){const c=q(n.current);t.load(c)}},[]),i=w.exports.useCallback(()=>{if(n.current){const c=q(n.current);Object.assign(window,{$rawWork:c}),t.load(c)}},[]),a=w.exports.useCallback(()=>{!s.current||t.load(s.current)},[]);return w.exports.useEffect(()=>{const c=f=>{var r;n.current||(n.current=t.work.raw.works);const l=f.data;if(l.work){s.current=q(l.work),t.load(s.current);return}const p=(r=t.work)==null?void 0:r.raw.works[0];if(l.dynamic_scene&&!l.panorama){const g=JSON.parse(p).panorama,u=l.dynamic_scene.images.index;g.list[u]=l.dynamic_scene.images,l.panorama=g,delete l.dynamic_scene}Object.assign(window,{$work1:JSON.parse(p),$work2:l,parseWork:q}),s.current=q([p,l]),t.load(s.current)};return e.on(T.UpdateVRPanorama,c),e.on(T.Exit,o),e.on("loaded",o),e.on("paused",i),e.on("playing",a),()=>{e.off(T.UpdateVRPanorama,c),e.off(T.Exit,o),e.off("loaded",o),e.off("paused",i),e.off("playing",a)}},[]),h(L,{})}const At=e=>{if(!e)return;const t=()=>{e.removeEventListener("canplaythrough",t);try{e.play()}catch{}};e.addEventListener("canplaythrough",t),e.load()},Tt=Math.PI,he=Tt*2;function Et(){const e=w.exports.useRef(null),t=w.exports.useRef(),n=C(),s=w.exports.useRef(),[o,i]=w.exports.useState(!1),a=V(),c=f=>{!t.current||(t.current.src=f)};return w.exports.useEffect(()=>{const f=async l=>{const{start:p,end:r}=l,{videoSrc:v,fov:g,direction:u,panoIndex:m,vector:d}=l.data,[x,A]=(()=>{if(d)return[d.longitude,d.latitude];if(!u)return[0,0];let I=-Math.atan2(u.x,-u.z);I=(I%he+he)%he;const y=-Math.asin(u.y/1);return[I,y]})();a.setState({fov:g,panoIndex:m,longitude:x,latitude:A},!0),c(v),At(t.current),i(!0),s.current=setTimeout(()=>{var I,y;((I=t.current)==null?void 0:I.paused)||(y=t.current)==null||y.pause(),i(!1),c("")},r-p)};return n.on(T.VideoEffect,f),()=>{n.off(T.VideoEffect,f),s.current&&clearTimeout(s.current)}},[n]),w.exports.useEffect(()=>{var l,p;if(!e.current)return;const f=((p=(l=n.configs)==null?void 0:l.videos)==null?void 0:p.videoEffect)||document.createElement("video");f.setAttribute("playsinline","true"),f.setAttribute("webkit-playsinline","true"),f.setAttribute("autoplay","true"),f.setAttribute("key","VideoEffect-video"),f.setAttribute("class","VideoEffect-video"),t.current=f,e.current.append(t.current),document.addEventListener("WeixinJSBridgeReady",function(){var r;(r=t.current)==null||r.play()},!1),!!e.current},[]),h("div",{ref:e,className:U("VideoEffect",{"VideoEffect--visible":o})})}const Ct={blob:e=>{const t=()=>null;return new Promise((n,s)=>{const o=new XMLHttpRequest,i=()=>{o.ontimeout=t,o.onreadystatechange=t,o.onprogress=t,o.onabort=t};o.ontimeout=()=>{s(new Error("timeout")),i()},o.onreadystatechange=()=>{o.readyState===4&&(o.status===0&&!o.response||(o.status===200||o.status===0?(n(o.response),i()):(s(new Error("status:"+o.status)),i())))},o.open("GET",e,!0),o.responseType="blob",o.send(null)})}};class Mt extends ne{constructor({duration:t}={}){super();b(this,"$timestamp",0);b(this,"$currentTime",0);b(this,"$duration",0);b(this,"stopInterval");b(this,"muted",!1);b(this,"src","");t&&(this.$duration=t)}setAttribute(t,n){}play(){this.$timestamp===0&&(this.$timestamp=performance.now()),this.$currentTime===this.$duration&&(this.$currentTime=0),this.stopInterval=Q(()=>this.requestAnimationFrameLoop()),this.emit("play")}pause(){this.stopInterval&&(this.stopInterval(),this.emit("pause"),this.stopInterval=void 0),this.$timestamp=0}requestAnimationFrameLoop(){const t=performance.now();this.$currentTime=t-this.$timestamp,this.emit("timeupdate"),this.$currentTime>=this.$duration-10&&(this.$currentTime=this.$duration,this.pause(),this.emit("ended"))}get currentTime(){return this.$currentTime/1e3}set currentTime(t){this.$currentTime=t}get duration(){return this.$duration}set duration(t){this.pause(),this.$duration=t,this.$timestamp=0,this.$currentTime=0}get ended(){return this.$currentTime===this.$duration}get paused(){return!this.stopInterval}addEventListener(t,n,s=!1){this.on(t,n)}removeEventListener(t,n,s=!1){this.off(t,n)}}const kt=`
2
+ varying vec2 vUv;
3
+ varying vec2 vColorUv;
4
+ varying vec2 vMaskUv;
5
+ void main(){
6
+ vUv = uv;
7
+ vColorUv = vec2(uv.x / 2.0, uv.y);
8
+ vMaskUv = vec2(0.5 + uv.x / 2.0, uv.y);
9
+ gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0);
10
+ }
11
+ `,Lt=()=>`
12
+ uniform int enable;
13
+ uniform sampler2D map;
14
+ varying vec2 vUv;
15
+ varying vec2 vColorUv;
16
+ varying vec2 vMaskUv;
17
+
18
+ vec3 hsv2rgb(vec3 c) {
19
+ const vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0);
20
+ vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www);
21
+ return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y);
22
+ }
23
+
24
+ vec3 rgb2hsv(vec3 c) {
25
+ const vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0);
26
+ vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g));
27
+ vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r));
28
+
29
+ float d = q.x - min(q.w, q.y);
30
+ return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + 0.001)), d / (q.x + 0.001), q.x);
31
+ }
32
+
33
+ void main(void) {
34
+ vec3 color = texture2D(map, vUv).xyz;
35
+ float amask = 1.0;
36
+
37
+ float ref = color.r;
38
+ if (ref < color.b) ref = color.b;
39
+ amask = color.g - ref + 0.1;
40
+ amask = smoothstep(0.1, 0.3, amask);
41
+ amask = 1.0 - amask;
42
+
43
+ vec3 target = rgb2hsv(vec3(0.0 / 255.0, 255.0 / 255.0, 0.0 / 255.0));
44
+ vec3 hsv = rgb2hsv(color);
45
+ float distance = abs(hsv.x - target.x);
46
+ if (distance < 0.15) {
47
+ hsv.y = 0.0;
48
+ }
49
+ color = hsv2rgb(hsv);
50
+
51
+ gl_FragColor = vec4(color.rgb, amask * float(enable));
52
+ }
53
+ `,F={};class St extends J{constructor(t,n,s,o,i={preload:!0}){var v,g;if(!i.videoInstance)if(F.videoInstance)i.videoInstance=F.videoInstance;else{const u=document.createElement("video");u.style.opacity="0",u.style.display="none",document.body.append(u),i.videoInstance=u,F.videoInstance=u,u.playsInline=!0,u.controls=!1}const a=new ce(t,n,s,o),c=new Ie(i.videoInstance),f=new Qe({uniforms:{map:{value:c},enable:{value:0}},vertexShader:kt,fragmentShader:Lt(),transparent:!0});super(a,f);b(this,"options");b(this,"videoUrl");b(this,"freeze");b(this,"paused");b(this,"audioInstance");b(this,"audioLikeInstance");b(this,"$removeEventListener");if(this.options=i,this.freeze=!1,this.paused=!0,i.audioInstance)this.audioInstance=i.audioInstance;else if(F.audioInstance)this.audioInstance=F.audioInstance;else{const u=document.createElement("audio");u.crossOrigin="",u.muted=!1,u.setAttribute("playsinline","true"),u.setAttribute("webkit-playsinline","true"),u.setAttribute("autoplay","false"),u.setAttribute("style","display: none;"),document.body.appendChild(u),this.audioInstance=u,F.audioInstance=u}this.audioLikeInstance=new Mt,we(this,{paused:O});const l=u=>Xe(()=>this.paused=u),p=()=>l(!0),r=()=>l(!1);this.audioInstance.addEventListener("pause",p),this.audioInstance.addEventListener("play",r),(v=this.options.videoInstance)==null||v.addEventListener("pause",p),(g=this.options.videoInstance)==null||g.addEventListener("play",r),this.audioLikeInstance.addEventListener("pause",p),this.audioLikeInstance.addEventListener("play",r),this.$removeEventListener=()=>{var u,m;this.audioInstance.removeEventListener("pause",p),this.audioInstance.removeEventListener("play",r),(u=this.options.videoInstance)==null||u.removeEventListener("pause",p),(m=this.options.videoInstance)==null||m.removeEventListener("play",r),this.audioLikeInstance.removeEventListener("pause",p),this.audioLikeInstance.removeEventListener("play",r)}}get videoInstance(){var s;return this.videoUrl?((s=this.videoUrl)==null?void 0:s.endsWith("mp3"))?this.audioInstance:this.material.uniforms.map.value.image:this.audioLikeInstance}async update(t){if(this.videoUrl===t)return;this.videoUrl=t,this.freeze=!0,await this.videoInstance.pause();const n=this.material.uniforms;this.videoInstance.muted=!0,this.videoInstance.src=this.options.preload?await URL.createObjectURL(await Ct.blob(this.videoUrl)):this.videoUrl,this.videoInstance.setAttribute("data-src",this.videoUrl);const s=()=>{var o;this.videoInstance.currentTime!==0&&(this.freeze=!1,this.videoInstance.muted=!1,n.enable.value=((o=this.videoUrl)==null?void 0:o.endsWith(".mp4"))?1:0,this.videoInstance.removeEventListener("timeupdate",s,!1))};this.videoInstance.addEventListener("timeupdate",s,!1)}async play(t="",n=0,s){return t=t||"",s&&!t?(this.currentTime&&(this.videoInstance.currentTime=n),this.videoInstance.duration=s,this.videoUrl="",this.videoInstance.play(),!0):t?(console.log("play",t,this.videoUrl),t===this.videoUrl?(this.videoInstance.currentTime=n,await this.videoInstance.play(),!0):(await this.update(t),this.videoInstance.pause(),await new Promise(o=>setTimeout(async()=>{this.videoInstance.currentTime=n,await this.videoInstance.play(),o(!0)},20)))):(this.videoUrl?await this.videoInstance.play():console.warn("\u8B66\u544A\uFF1A\u89C6\u9891\u8D44\u6E90\u672A\u521D\u59CB\u5316\u3002"),!0)}get currentTime(){return this.videoInstance.currentTime*1e3}dispose(){this.$removeEventListener(),F.audioInstance&&(document.body.removeChild(F.audioInstance),F.audioInstance=void 0),F.videoInstance&&(document.body.removeChild(F.videoInstance),F.videoInstance=void 0)}}class Rt{constructor(t,n=!0,s={}){b(this,"videoAgentMesh");b(this,"scene",new ue);b(this,"camera",new Ye(-240,240,135,-135));b(this,"renderer",new Ze({alpha:!0}));b(this,"container");b(this,"run",()=>{var n;const t=this.renderer.domElement;!(this.videoAgentMesh.paused||this.videoAgentMesh.freeze)&&this.videoAgentMesh.currentTime>1e3&&this.renderer.render(this.scene,this.camera),((n=this.videoAgentMesh.videoUrl)==null?void 0:n.endsWith(".mp4"))?t.style.display!=="block"&&(t.style.display="block"):t.style.display!=="none"&&(t.style.display="none"),requestAnimationFrame(this.run)});b(this,"dispose",()=>{var t;(t=this.videoAgentMesh)==null||t.dispose()});this.container=t,this.camera.position.set(0,0,10),this.camera.lookAt(0,0,0);const o={width:t.offsetWidth,height:t.offsetHeight},i=this.renderer.domElement;i.classList.add("VideoAgent-canvas"),this.renderer.setSize(o.width*window.devicePixelRatio,o.height*window.devicePixelRatio),i.setAttribute("style",`width: ${o.width}px;height: ${o.height}px;`),this.videoAgentMesh=new St(480,270,1,1,s),n&&(t.append(i),this.scene.add(this.videoAgentMesh),this.run())}}function Ft(e){const t=w.exports.useRef(null),n=C();return w.exports.useEffect(()=>{if(!t.current)throw new Error("React \u6E32\u67D3\u5F02\u5E38\uFF0C\u8BF7\u7A0D\u540E\u91CD\u8BD5 ...");if(n.videoAgentScene){console.warn('"VideoAgentScene" \u91CD\u590D\u521D\u59CB\u5316\uFF0C\u5DF2\u88AB\u8FC7\u6EE4 ...');return}const s=new Rt(t.current,!0,e.options||{});return n.videoAgentScene=s,()=>{var o;n.dispose(),(o=n.videoAgentScene)==null||o.dispose()}},[]),h("div",{className:"VideoAgent",onClick:()=>{!e.onClick||e.onClick()},ref:t,children:h("div",{className:"VideoAgent-play"})})}function Dt(){const e=C(),t=w.exports.useRef(null),n=w.exports.useCallback(()=>{t.current&&(clearTimeout(t.current),t.current=null)},[]);return w.exports.useEffect(()=>{const s=new Audio;s.setAttribute("id","vreo-singleton-bgmusic"),s.style.display="none",s.setAttribute("playsinline","true"),s.loop=!0,document.body.append(s);const o=i=>{const{start:a,end:c}=i,{url:f}=i.data;s.src=f;const l=()=>{s.play()};s.addEventListener("canplaythrough",l),n();const p=()=>{s.pause(),s.currentTime=0,s.src="",n(),s.removeEventListener("canplaythrough",l)},r=c-a||5e3;t.current=setTimeout(()=>{p()},r),e.once("paused",()=>{p()})};return e.on(T.BgMusic,o),()=>{e.off(T.BgMusic,o),document.body.removeChild(s),n()}}),h(L,{})}const zt=le(({controller:e})=>{var t,n;return h("div",{className:U("vreo-panel",{"vreo-panel--hidden":!e.visible}),children:R("div",{className:"vreo-panel-inner",children:[h(Ft,{onClick:()=>{e.isAudio||(e.playing?e.setPlaying(!1):e.setPlaying(!0))},options:((t=e.configs)==null?void 0:t.videoAgentMeshOptions)||{}}),h(It,{}),(n=e.configs)==null?void 0:n.customPanelChildren]})})});function Ut(){const e=C();return R(L,{children:[R(L,{children:[h(it,{}),h(lt,{}),h(Pt,{}),h(Et,{}),h(ht,{}),h(bt,{}),h(at,{}),h(mt,{}),h(Dt,{})]}),h(zt,{controller:e})]})}const Vt=le(({controller:e})=>{var s;const t="400px",n=(()=>{var i;const o=(i=e.drawerConfig)==null?void 0:i.height;return o?typeof o=="number"?o+"px":o:"max-content"})();return h("div",{className:U("vreo-drawer",{"vreo-drawer-visible":e.drawerConfig&&e.drawerConfig.content}),onClick:()=>e.openDrawer(!1),children:h("div",{className:"vreo-drawer-inner",style:{height:n,maxHeight:t},children:((s=e.drawerConfig)==null?void 0:s.content)||""})})});function Nt(){const e=C();return h(Vt,{controller:e})}const Bt=le(({controller:e})=>h("div",{className:U("vreo-PopUp",{"vreo-PopUp-visible":e.popUp}),onClick:()=>e.openPopUp(!1),children:h("div",{className:"vreo-PopUp-inner",children:e.popUp||""})}));function $t(){const e=C();return h(Bt,{controller:e})}class jt extends ne{constructor(t,n={}){super();b(this,"$five");b(this,"controller");b(this,"configs");if(this.controller=new nt,this.$five=this.controller.$five=t,!n.containter){const s=document.querySelector("#vreo-app")||document.createElement("div");de.exports.unmountComponentAtNode(s),s.setAttribute("id","vreo-app"),n.containter=s,document.body.append(s)}this.configs=Object.freeze(Object.assign({keyframeMap:{}},n)),this.controller.configs=this.configs,de.exports.render(R(Ce.Provider,{value:this.controller,children:[h(Ut,{}),h(Nt,{}),h($t,{}),this.configs.customKeyframes&&this.configs.customKeyframes.map((s,o)=>h(s,{subscribe:{on:(i,a)=>this.on(i,a),once:(i,a)=>this.once(i,a),off:(i,a)=>this.off(i,a)},five:t},o))]}),n.containter),be(()=>this.controller.playing,s=>{this.emit(s?"playing":"paused")})}async load(t,n=0,s=!1,o=!1){var i,a,c,f;if(o&&(t=JSON.parse(JSON.stringify(t))),this.controller.visible||(this.controller.setVisible(!0),await new Promise(l=>{setTimeout(()=>l(!0),500)})),this.controller.stopInterval&&(this.controller.stopInterval(),this.controller.stopInterval=void 0),this.controller.vreoUnit=t,(i=this.controller.videoInstance)==null||i.pause(),this.$five.imageOptions.size&&((a=this.configs.imageOptions)==null?void 0:a.size)&&this.$five.imageOptions.size>this.configs.imageOptions.size&&(this.$five.imageOptions.size=this.configs.imageOptions.size),s||s===void 0&&this.configs.autoPreload){const l=t.keyframes.filter(r=>!(r.type!==T.CameraMovement||r.data.panoIndex===void 0)).reduce((r,v)=>{const g=v.data.panoIndex;return r[g]||(r[g]=!0),r},{}),p=Object.keys(l);for(let r=0;r<p.length;r++)await this.$five.preloadPano(Number(p[r]))}return this.emit("loaded",t),this.controller.emit("loaded",t),((c=this.controller.videoAgentScene)==null?void 0:c.videoAgentMesh.videoInstance)&&(this.controller.videoAgentScene.videoAgentMesh.videoInstance.currentTime=n/1e3),await((f=this.controller.videoAgentScene)==null?void 0:f.videoAgentMesh.play(t.video.url,n/1e3,t.video.duration)),this.play(),this.controller.run((l,p)=>this.emit(l,p)),!0}get paused(){return!this.controller.playing}play(t){return this.controller.playing||(t&&this.controller.videoInstance&&(this.controller.videoInstance.currentTime=t/1e3),Object.assign(window,{$vreoController:this.controller}),this.controller.setPlaying(!0)),!0}pause(){this.controller.setPlaying(!1)}show(){this.controller.setVisible(!0)}hide(){this.controller.setVisible(!1)}dispose(){this.pause(),this.controller.dispose(),this.configs.containter&&de.exports.unmountComponentAtNode(this.configs.containter)}}console.log(`
54
+
55
+ \u250F\u2501\u2501\u2501\u2513\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u250F\u2513\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501
56
+ \u2503\u250F\u2501\u2513\u2503\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2503\u2503\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501
57
+ \u2503\u2517\u2501\u251B\u2503\u250F\u2501\u2501\u2513\u250F\u2501\u2501\u2513\u2501\u2503\u2503\u2501\u250F\u2501\u2501\u2513\u250F\u2501\u2501\u2513\u250F\u2501\u2501\u2513
58
+ \u2503\u250F\u2513\u250F\u251B\u2503\u250F\u2513\u2503\u2517\u2501\u2513\u2503\u2501\u2503\u2503\u2501\u2503\u2501\u2501\u252B\u2503\u250F\u2513\u2503\u2503\u250F\u2513\u2503
59
+ \u2503\u2503\u2503\u2517\u2513\u2503\u2503\u2501\u252B\u2503\u2517\u251B\u2517\u2513\u2503\u2517\u2513\u2523\u2501\u2501\u2503\u2503\u2503\u2501\u252B\u2503\u2503\u2501\u252B
60
+ \u2517\u251B\u2517\u2501\u251B\u2517\u2501\u2501\u251B\u2517\u2501\u2501\u2501\u251B\u2517\u2501\u251B\u2517\u2501\u2501\u251B\u2517\u2501\u2501\u251B\u2517\u2501\u2501\u251B
61
+ \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501
62
+ \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501
63
+
64
+ `);export{yt as C,jt as P,T as V,ft as t};