@babylonjs/viewer 7.32.4-alpha → 7.32.4

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 (587) hide show
  1. package/configuration/configuration.d.ts +107 -0
  2. package/configuration/configuration.js +16 -0
  3. package/configuration/configuration.js.map +1 -0
  4. package/configuration/configurationCompatibility.d.ts +8 -0
  5. package/configuration/configurationCompatibility.js +66 -0
  6. package/configuration/configurationCompatibility.js.map +1 -0
  7. package/configuration/configurationContainer.d.ts +10 -0
  8. package/configuration/configurationContainer.js +10 -0
  9. package/configuration/configurationContainer.js.map +1 -0
  10. package/configuration/globals.d.ts +6 -0
  11. package/configuration/globals.js +18 -0
  12. package/configuration/globals.js.map +1 -0
  13. package/configuration/index.d.ts +2 -0
  14. package/configuration/index.js +4 -0
  15. package/configuration/index.js.map +1 -0
  16. package/configuration/interfaces/cameraConfiguration.d.ts +31 -0
  17. package/configuration/interfaces/cameraConfiguration.js +2 -0
  18. package/configuration/interfaces/cameraConfiguration.js.map +1 -0
  19. package/configuration/interfaces/colorGradingConfiguration.d.ts +81 -0
  20. package/configuration/interfaces/colorGradingConfiguration.js +2 -0
  21. package/configuration/interfaces/colorGradingConfiguration.js.map +1 -0
  22. package/configuration/interfaces/defaultRenderingPipelineConfiguration.d.ts +20 -0
  23. package/configuration/interfaces/defaultRenderingPipelineConfiguration.js +2 -0
  24. package/configuration/interfaces/defaultRenderingPipelineConfiguration.js.map +1 -0
  25. package/configuration/interfaces/environmentMapConfiguration.d.ts +22 -0
  26. package/configuration/interfaces/environmentMapConfiguration.js +2 -0
  27. package/configuration/interfaces/environmentMapConfiguration.js.map +1 -0
  28. package/configuration/interfaces/groundConfiguration.d.ts +24 -0
  29. package/configuration/interfaces/groundConfiguration.js +2 -0
  30. package/configuration/interfaces/groundConfiguration.js.map +1 -0
  31. package/configuration/interfaces/imageProcessingConfiguration.d.ts +45 -0
  32. package/configuration/interfaces/imageProcessingConfiguration.js +2 -0
  33. package/configuration/interfaces/imageProcessingConfiguration.js.map +1 -0
  34. package/configuration/interfaces/index.d.ts +15 -0
  35. package/configuration/interfaces/index.js +16 -0
  36. package/configuration/interfaces/index.js.map +1 -0
  37. package/configuration/interfaces/lightConfiguration.d.ts +60 -0
  38. package/configuration/interfaces/lightConfiguration.js +2 -0
  39. package/configuration/interfaces/lightConfiguration.js.map +1 -0
  40. package/configuration/interfaces/modelAnimationConfiguration.d.ts +26 -0
  41. package/configuration/interfaces/modelAnimationConfiguration.js +2 -0
  42. package/configuration/interfaces/modelAnimationConfiguration.js.map +1 -0
  43. package/configuration/interfaces/modelConfiguration.d.ts +65 -0
  44. package/configuration/interfaces/modelConfiguration.js +2 -0
  45. package/configuration/interfaces/modelConfiguration.js.map +1 -0
  46. package/configuration/interfaces/observersConfiguration.d.ts +5 -0
  47. package/configuration/interfaces/observersConfiguration.js +2 -0
  48. package/configuration/interfaces/observersConfiguration.js.map +1 -0
  49. package/configuration/interfaces/sceneConfiguration.d.ts +48 -0
  50. package/configuration/interfaces/sceneConfiguration.js +2 -0
  51. package/configuration/interfaces/sceneConfiguration.js.map +1 -0
  52. package/configuration/interfaces/sceneOptimizerConfiguration.d.ts +23 -0
  53. package/configuration/interfaces/sceneOptimizerConfiguration.js +2 -0
  54. package/configuration/interfaces/sceneOptimizerConfiguration.js.map +1 -0
  55. package/configuration/interfaces/skyboxConfiguration.d.ts +21 -0
  56. package/configuration/interfaces/skyboxConfiguration.js +2 -0
  57. package/configuration/interfaces/skyboxConfiguration.js.map +1 -0
  58. package/configuration/interfaces/templateConfiguration.d.ts +67 -0
  59. package/configuration/interfaces/templateConfiguration.js +2 -0
  60. package/configuration/interfaces/templateConfiguration.js.map +1 -0
  61. package/configuration/interfaces/vrConfiguration.d.ts +16 -0
  62. package/configuration/interfaces/vrConfiguration.js +2 -0
  63. package/configuration/interfaces/vrConfiguration.js.map +1 -0
  64. package/configuration/loader.d.ts +4 -0
  65. package/configuration/loader.js +17 -0
  66. package/configuration/loader.js.map +1 -0
  67. package/configuration/mappers.d.ts +43 -0
  68. package/configuration/mappers.js +192 -0
  69. package/configuration/mappers.js.map +1 -0
  70. package/configuration/renderOnlyLoader.d.ts +33 -0
  71. package/configuration/renderOnlyLoader.js +162 -0
  72. package/configuration/renderOnlyLoader.js.map +1 -0
  73. package/configuration/types/default.d.ts +6 -0
  74. package/configuration/types/default.js +121 -0
  75. package/configuration/types/default.js.map +1 -0
  76. package/configuration/types/environmentMap.d.ts +5 -0
  77. package/configuration/types/environmentMap.js +14 -0
  78. package/configuration/types/environmentMap.js.map +1 -0
  79. package/configuration/types/extended.d.ts +6 -0
  80. package/configuration/types/extended.js +317 -0
  81. package/configuration/types/extended.js.map +1 -0
  82. package/configuration/types/index.d.ts +14 -0
  83. package/configuration/types/index.js +51 -0
  84. package/configuration/types/index.js.map +1 -0
  85. package/configuration/types/minimal.d.ts +6 -0
  86. package/configuration/types/minimal.js +43 -0
  87. package/configuration/types/minimal.js.map +1 -0
  88. package/configuration/types/renderOnlyDefault.d.ts +30 -0
  89. package/configuration/types/renderOnlyDefault.js +31 -0
  90. package/configuration/types/renderOnlyDefault.js.map +1 -0
  91. package/configuration/types/shadowLight.d.ts +9 -0
  92. package/configuration/types/shadowLight.js +64 -0
  93. package/configuration/types/shadowLight.js.map +1 -0
  94. package/helper/index.d.ts +29 -0
  95. package/helper/index.js +66 -0
  96. package/helper/index.js.map +1 -0
  97. package/index.d.ts +30 -0
  98. package/index.js +46 -0
  99. package/index.js.map +1 -0
  100. package/initializer.d.ts +11 -0
  101. package/initializer.js +35 -0
  102. package/initializer.js.map +1 -0
  103. package/interfaces.d.ts +5 -0
  104. package/interfaces.js +7 -0
  105. package/interfaces.js.map +1 -0
  106. package/labs/environmentSerializer.d.ts +126 -0
  107. package/labs/environmentSerializer.js +191 -0
  108. package/labs/environmentSerializer.js.map +1 -0
  109. package/labs/texture.d.ts +183 -0
  110. package/labs/texture.js +350 -0
  111. package/labs/texture.js.map +1 -0
  112. package/labs/viewerLabs.d.ts +51 -0
  113. package/labs/viewerLabs.js +134 -0
  114. package/labs/viewerLabs.js.map +1 -0
  115. package/loader/modelLoader.d.ts +56 -0
  116. package/loader/modelLoader.js +199 -0
  117. package/loader/modelLoader.js.map +1 -0
  118. package/loader/plugins/applyMaterialConfig.d.ts +12 -0
  119. package/loader/plugins/applyMaterialConfig.js +16 -0
  120. package/loader/plugins/applyMaterialConfig.js.map +1 -0
  121. package/loader/plugins/extendedMaterialLoaderPlugin.d.ts +9 -0
  122. package/loader/plugins/extendedMaterialLoaderPlugin.js +16 -0
  123. package/loader/plugins/extendedMaterialLoaderPlugin.js.map +1 -0
  124. package/loader/plugins/index.d.ts +19 -0
  125. package/loader/plugins/index.js +44 -0
  126. package/loader/plugins/index.js.map +1 -0
  127. package/loader/plugins/loaderPlugin.d.ts +24 -0
  128. package/loader/plugins/loaderPlugin.js +2 -0
  129. package/loader/plugins/loaderPlugin.js.map +1 -0
  130. package/loader/plugins/msftLodLoaderPlugin.d.ts +12 -0
  131. package/loader/plugins/msftLodLoaderPlugin.js +21 -0
  132. package/loader/plugins/msftLodLoaderPlugin.js.map +1 -0
  133. package/loader/plugins/telemetryLoaderPlugin.d.ts +12 -0
  134. package/loader/plugins/telemetryLoaderPlugin.js +36 -0
  135. package/loader/plugins/telemetryLoaderPlugin.js.map +1 -0
  136. package/managers/observablesManager.d.ts +66 -0
  137. package/managers/observablesManager.js +35 -0
  138. package/managers/observablesManager.js.map +1 -0
  139. package/managers/sceneManager.d.ts +245 -0
  140. package/managers/sceneManager.js +1375 -0
  141. package/managers/sceneManager.js.map +1 -0
  142. package/managers/telemetryManager.d.ts +78 -0
  143. package/managers/telemetryManager.js +117 -0
  144. package/managers/telemetryManager.js.map +1 -0
  145. package/model/modelAnimation.d.ts +215 -0
  146. package/model/modelAnimation.js +237 -0
  147. package/model/modelAnimation.js.map +1 -0
  148. package/model/viewerModel.d.ts +233 -0
  149. package/model/viewerModel.js +673 -0
  150. package/model/viewerModel.js.map +1 -0
  151. package/optimizer/custom/extended.d.ts +13 -0
  152. package/optimizer/custom/extended.js +101 -0
  153. package/optimizer/custom/extended.js.map +1 -0
  154. package/optimizer/custom/index.d.ts +9 -0
  155. package/optimizer/custom/index.js +26 -0
  156. package/optimizer/custom/index.js.map +1 -0
  157. package/package.json +27 -18
  158. package/readme.md +21 -145
  159. package/renderOnlyIndex.d.ts +11 -0
  160. package/renderOnlyIndex.js +18 -0
  161. package/renderOnlyIndex.js.map +1 -0
  162. package/templating/eventManager.d.ts +35 -0
  163. package/templating/eventManager.js +66 -0
  164. package/templating/eventManager.js.map +1 -0
  165. package/templating/plugins/hdButtonPlugin.d.ts +9 -0
  166. package/templating/plugins/hdButtonPlugin.js +21 -0
  167. package/templating/plugins/hdButtonPlugin.js.map +1 -0
  168. package/templating/plugins/printButton.d.ts +9 -0
  169. package/templating/plugins/printButton.js +40 -0
  170. package/templating/plugins/printButton.js.map +1 -0
  171. package/templating/templateManager.d.ts +197 -0
  172. package/templating/templateManager.js +561 -0
  173. package/templating/templateManager.js.map +1 -0
  174. package/templating/viewerTemplatePlugin.d.ts +21 -0
  175. package/templating/viewerTemplatePlugin.js +69 -0
  176. package/templating/viewerTemplatePlugin.js.map +1 -0
  177. package/viewer/defaultViewer.d.ts +130 -0
  178. package/viewer/defaultViewer.js +672 -0
  179. package/viewer/defaultViewer.js.map +1 -0
  180. package/viewer/renderOnlyViewer.d.ts +9 -0
  181. package/viewer/renderOnlyViewer.js +46 -0
  182. package/viewer/renderOnlyViewer.js.map +1 -0
  183. package/viewer/viewer.d.ts +258 -0
  184. package/viewer/viewer.js +783 -0
  185. package/viewer/viewer.js.map +1 -0
  186. package/viewer/viewerManager.d.ts +58 -0
  187. package/viewer/viewerManager.js +91 -0
  188. package/viewer/viewerManager.js.map +1 -0
  189. package/viewer/viewerWithTemplate.d.ts +9 -0
  190. package/viewer/viewerWithTemplate.js +20 -0
  191. package/viewer/viewerWithTemplate.js.map +1 -0
  192. package/assets/photoStudio.env +0 -0
  193. package/dist/babylon-viewer.esm.js +0 -2
  194. package/dist/babylon-viewer.esm.js.map +0 -1
  195. package/dist/babylon-viewer.esm.min.js +0 -2
  196. package/dist/babylon-viewer.esm.min.js.map +0 -1
  197. package/dist/chunks/EXT_lights_image_based-ZxCC8nGH.esm.min.js +0 -2
  198. package/dist/chunks/EXT_lights_image_based-ZxCC8nGH.esm.min.js.map +0 -1
  199. package/dist/chunks/EXT_lights_image_based-jIYFBmxr.esm.js +0 -171
  200. package/dist/chunks/EXT_lights_image_based-jIYFBmxr.esm.js.map +0 -1
  201. package/dist/chunks/EXT_mesh_gpu_instancing-CLa_-Jvi.esm.js +0 -86
  202. package/dist/chunks/EXT_mesh_gpu_instancing-CLa_-Jvi.esm.js.map +0 -1
  203. package/dist/chunks/EXT_mesh_gpu_instancing-D_1fkPFG.esm.min.js +0 -2
  204. package/dist/chunks/EXT_mesh_gpu_instancing-D_1fkPFG.esm.min.js.map +0 -1
  205. package/dist/chunks/EXT_meshopt_compression-B9hgOFUY.esm.js +0 -134
  206. package/dist/chunks/EXT_meshopt_compression-B9hgOFUY.esm.js.map +0 -1
  207. package/dist/chunks/EXT_meshopt_compression-DgFFrC2o.esm.min.js +0 -2
  208. package/dist/chunks/EXT_meshopt_compression-DgFFrC2o.esm.min.js.map +0 -1
  209. package/dist/chunks/EXT_texture_avif-C4llft5I.esm.min.js +0 -2
  210. package/dist/chunks/EXT_texture_avif-C4llft5I.esm.min.js.map +0 -1
  211. package/dist/chunks/EXT_texture_avif-CZz89FSb.esm.js +0 -44
  212. package/dist/chunks/EXT_texture_avif-CZz89FSb.esm.js.map +0 -1
  213. package/dist/chunks/EXT_texture_webp-BLkz7CQu.esm.min.js +0 -2
  214. package/dist/chunks/EXT_texture_webp-BLkz7CQu.esm.min.js.map +0 -1
  215. package/dist/chunks/EXT_texture_webp-zLKuKDTb.esm.js +0 -43
  216. package/dist/chunks/EXT_texture_webp-zLKuKDTb.esm.js.map +0 -1
  217. package/dist/chunks/ExtrasAsMetadata-Cp8x7GPL.esm.js +0 -64
  218. package/dist/chunks/ExtrasAsMetadata-Cp8x7GPL.esm.js.map +0 -1
  219. package/dist/chunks/ExtrasAsMetadata-D0UlqiOb.esm.min.js +0 -2
  220. package/dist/chunks/ExtrasAsMetadata-D0UlqiOb.esm.min.js.map +0 -1
  221. package/dist/chunks/KHR_animation_pointer-BRAkvMH_.esm.js +0 -343
  222. package/dist/chunks/KHR_animation_pointer-BRAkvMH_.esm.js.map +0 -1
  223. package/dist/chunks/KHR_animation_pointer-CRTQWu9W.esm.min.js +0 -2
  224. package/dist/chunks/KHR_animation_pointer-CRTQWu9W.esm.min.js.map +0 -1
  225. package/dist/chunks/KHR_draco_mesh_compression-CId2nuCk.esm.js +0 -610
  226. package/dist/chunks/KHR_draco_mesh_compression-CId2nuCk.esm.js.map +0 -1
  227. package/dist/chunks/KHR_draco_mesh_compression-HUKEVQ_-.esm.min.js +0 -2
  228. package/dist/chunks/KHR_draco_mesh_compression-HUKEVQ_-.esm.min.js.map +0 -1
  229. package/dist/chunks/KHR_interactivity-CIda2cSk.esm.js +0 -4033
  230. package/dist/chunks/KHR_interactivity-CIda2cSk.esm.js.map +0 -1
  231. package/dist/chunks/KHR_interactivity-Ds7setGl.esm.min.js +0 -2
  232. package/dist/chunks/KHR_interactivity-Ds7setGl.esm.min.js.map +0 -1
  233. package/dist/chunks/KHR_lights_punctual-BMpCy8cq.esm.min.js +0 -2
  234. package/dist/chunks/KHR_lights_punctual-BMpCy8cq.esm.min.js.map +0 -1
  235. package/dist/chunks/KHR_lights_punctual-pCOHamUn.esm.js +0 -1253
  236. package/dist/chunks/KHR_lights_punctual-pCOHamUn.esm.js.map +0 -1
  237. package/dist/chunks/KHR_materials_anisotropy-DZPTrAH7.esm.min.js +0 -2
  238. package/dist/chunks/KHR_materials_anisotropy-DZPTrAH7.esm.min.js.map +0 -1
  239. package/dist/chunks/KHR_materials_anisotropy-DgHRn9UN.esm.js +0 -65
  240. package/dist/chunks/KHR_materials_anisotropy-DgHRn9UN.esm.js.map +0 -1
  241. package/dist/chunks/KHR_materials_clearcoat-BWEAguQY.esm.min.js +0 -2
  242. package/dist/chunks/KHR_materials_clearcoat-BWEAguQY.esm.min.js.map +0 -1
  243. package/dist/chunks/KHR_materials_clearcoat-WWrnKg5I.esm.js +0 -96
  244. package/dist/chunks/KHR_materials_clearcoat-WWrnKg5I.esm.js.map +0 -1
  245. package/dist/chunks/KHR_materials_diffuse_transmission-CyvK1i8y.esm.min.js +0 -2
  246. package/dist/chunks/KHR_materials_diffuse_transmission-CyvK1i8y.esm.min.js.map +0 -1
  247. package/dist/chunks/KHR_materials_diffuse_transmission-DF-WNJby.esm.js +0 -97
  248. package/dist/chunks/KHR_materials_diffuse_transmission-DF-WNJby.esm.js.map +0 -1
  249. package/dist/chunks/KHR_materials_dispersion-Bt1xU5AH.esm.js +0 -62
  250. package/dist/chunks/KHR_materials_dispersion-Bt1xU5AH.esm.js.map +0 -1
  251. package/dist/chunks/KHR_materials_dispersion-Df4Otak6.esm.min.js +0 -2
  252. package/dist/chunks/KHR_materials_dispersion-Df4Otak6.esm.min.js.map +0 -1
  253. package/dist/chunks/KHR_materials_emissive_strength-BYW6q6RC.esm.min.js +0 -2
  254. package/dist/chunks/KHR_materials_emissive_strength-BYW6q6RC.esm.min.js.map +0 -1
  255. package/dist/chunks/KHR_materials_emissive_strength-jtd5_jVg.esm.js +0 -55
  256. package/dist/chunks/KHR_materials_emissive_strength-jtd5_jVg.esm.js.map +0 -1
  257. package/dist/chunks/KHR_materials_ior-DGDpfwVR.esm.min.js +0 -2
  258. package/dist/chunks/KHR_materials_ior-DGDpfwVR.esm.min.js.map +0 -1
  259. package/dist/chunks/KHR_materials_ior-Y3LtBj2N.esm.js +0 -64
  260. package/dist/chunks/KHR_materials_ior-Y3LtBj2N.esm.js.map +0 -1
  261. package/dist/chunks/KHR_materials_iridescence-2wuKI5RA.esm.js +0 -72
  262. package/dist/chunks/KHR_materials_iridescence-2wuKI5RA.esm.js.map +0 -1
  263. package/dist/chunks/KHR_materials_iridescence-BJyAgv35.esm.min.js +0 -2
  264. package/dist/chunks/KHR_materials_iridescence-BJyAgv35.esm.min.js.map +0 -1
  265. package/dist/chunks/KHR_materials_pbrSpecularGlossiness-Ba9xqrYk.esm.js +0 -81
  266. package/dist/chunks/KHR_materials_pbrSpecularGlossiness-Ba9xqrYk.esm.js.map +0 -1
  267. package/dist/chunks/KHR_materials_pbrSpecularGlossiness-CHCgAnSZ.esm.min.js +0 -2
  268. package/dist/chunks/KHR_materials_pbrSpecularGlossiness-CHCgAnSZ.esm.min.js.map +0 -1
  269. package/dist/chunks/KHR_materials_sheen-BX_OcTwf.esm.js +0 -85
  270. package/dist/chunks/KHR_materials_sheen-BX_OcTwf.esm.js.map +0 -1
  271. package/dist/chunks/KHR_materials_sheen-DVuQ9AQX.esm.min.js +0 -2
  272. package/dist/chunks/KHR_materials_sheen-DVuQ9AQX.esm.min.js.map +0 -1
  273. package/dist/chunks/KHR_materials_specular-Cm4CPhLP.esm.min.js +0 -2
  274. package/dist/chunks/KHR_materials_specular-Cm4CPhLP.esm.min.js.map +0 -1
  275. package/dist/chunks/KHR_materials_specular-DjbHVUSj.esm.js +0 -75
  276. package/dist/chunks/KHR_materials_specular-DjbHVUSj.esm.js.map +0 -1
  277. package/dist/chunks/KHR_materials_transmission-CYcDIhaH.esm.min.js +0 -2
  278. package/dist/chunks/KHR_materials_transmission-CYcDIhaH.esm.min.js.map +0 -1
  279. package/dist/chunks/KHR_materials_transmission-zVYPbnUr.esm.js +0 -307
  280. package/dist/chunks/KHR_materials_transmission-zVYPbnUr.esm.js.map +0 -1
  281. package/dist/chunks/KHR_materials_unlit-AunZ5_bV.esm.min.js +0 -2
  282. package/dist/chunks/KHR_materials_unlit-AunZ5_bV.esm.min.js.map +0 -1
  283. package/dist/chunks/KHR_materials_unlit-CnS7Ldwb.esm.js +0 -74
  284. package/dist/chunks/KHR_materials_unlit-CnS7Ldwb.esm.js.map +0 -1
  285. package/dist/chunks/KHR_materials_variants-DD9E67d8.esm.min.js +0 -2
  286. package/dist/chunks/KHR_materials_variants-DD9E67d8.esm.min.js.map +0 -1
  287. package/dist/chunks/KHR_materials_variants-RP8JJMGZ.esm.js +0 -238
  288. package/dist/chunks/KHR_materials_variants-RP8JJMGZ.esm.js.map +0 -1
  289. package/dist/chunks/KHR_materials_volume-CjKKarS5.esm.js +0 -87
  290. package/dist/chunks/KHR_materials_volume-CjKKarS5.esm.js.map +0 -1
  291. package/dist/chunks/KHR_materials_volume-DPB36cxh.esm.min.js +0 -2
  292. package/dist/chunks/KHR_materials_volume-DPB36cxh.esm.min.js.map +0 -1
  293. package/dist/chunks/KHR_mesh_quantization-BPcszKh1.esm.min.js +0 -2
  294. package/dist/chunks/KHR_mesh_quantization-BPcszKh1.esm.min.js.map +0 -1
  295. package/dist/chunks/KHR_mesh_quantization-cxxP8igQ.esm.js +0 -26
  296. package/dist/chunks/KHR_mesh_quantization-cxxP8igQ.esm.js.map +0 -1
  297. package/dist/chunks/KHR_node_visibility-BV30a6Xl.esm.js +0 -46
  298. package/dist/chunks/KHR_node_visibility-BV30a6Xl.esm.js.map +0 -1
  299. package/dist/chunks/KHR_node_visibility-DjWzbEdZ.esm.min.js +0 -2
  300. package/dist/chunks/KHR_node_visibility-DjWzbEdZ.esm.min.js.map +0 -1
  301. package/dist/chunks/KHR_texture_basisu-BTzpDGu1.esm.js +0 -43
  302. package/dist/chunks/KHR_texture_basisu-BTzpDGu1.esm.js.map +0 -1
  303. package/dist/chunks/KHR_texture_basisu-Dr2dwgmO.esm.min.js +0 -2
  304. package/dist/chunks/KHR_texture_basisu-Dr2dwgmO.esm.min.js.map +0 -1
  305. package/dist/chunks/KHR_texture_transform-BWeooiMy.esm.min.js +0 -2
  306. package/dist/chunks/KHR_texture_transform-BWeooiMy.esm.min.js.map +0 -1
  307. package/dist/chunks/KHR_texture_transform-Be6DOCoL.esm.js +0 -63
  308. package/dist/chunks/KHR_texture_transform-Be6DOCoL.esm.js.map +0 -1
  309. package/dist/chunks/KHR_xmp_json_ld-BfFbIcP4.esm.js +0 -51
  310. package/dist/chunks/KHR_xmp_json_ld-BfFbIcP4.esm.js.map +0 -1
  311. package/dist/chunks/KHR_xmp_json_ld-C6VeHRIM.esm.min.js +0 -2
  312. package/dist/chunks/KHR_xmp_json_ld-C6VeHRIM.esm.min.js.map +0 -1
  313. package/dist/chunks/MSFT_audio_emitter-CV0oafCj.esm.min.js +0 -2
  314. package/dist/chunks/MSFT_audio_emitter-CV0oafCj.esm.min.js.map +0 -1
  315. package/dist/chunks/MSFT_audio_emitter-CZ-LfIcQ.esm.js +0 -2207
  316. package/dist/chunks/MSFT_audio_emitter-CZ-LfIcQ.esm.js.map +0 -1
  317. package/dist/chunks/MSFT_lod-BMAU-Bzw.esm.js +0 -337
  318. package/dist/chunks/MSFT_lod-BMAU-Bzw.esm.js.map +0 -1
  319. package/dist/chunks/MSFT_lod-D0tpsHHL.esm.min.js +0 -2
  320. package/dist/chunks/MSFT_lod-D0tpsHHL.esm.min.js.map +0 -1
  321. package/dist/chunks/MSFT_minecraftMesh-CH2TkSvt.esm.js +0 -46
  322. package/dist/chunks/MSFT_minecraftMesh-CH2TkSvt.esm.js.map +0 -1
  323. package/dist/chunks/MSFT_minecraftMesh-D03KKrC0.esm.min.js +0 -2
  324. package/dist/chunks/MSFT_minecraftMesh-D03KKrC0.esm.min.js.map +0 -1
  325. package/dist/chunks/MSFT_sRGBFactors-Bly0yW6v.esm.min.js +0 -2
  326. package/dist/chunks/MSFT_sRGBFactors-Bly0yW6v.esm.min.js.map +0 -1
  327. package/dist/chunks/MSFT_sRGBFactors-W4op87XT.esm.js +0 -47
  328. package/dist/chunks/MSFT_sRGBFactors-W4op87XT.esm.js.map +0 -1
  329. package/dist/chunks/animationGroup-D3FvtmQJ.esm.js +0 -2479
  330. package/dist/chunks/animationGroup-D3FvtmQJ.esm.js.map +0 -1
  331. package/dist/chunks/animationGroup-X_-EoCuA.esm.min.js +0 -2
  332. package/dist/chunks/animationGroup-X_-EoCuA.esm.min.js.map +0 -1
  333. package/dist/chunks/assetContainer-CMPFRHGv.esm.js +0 -1720
  334. package/dist/chunks/assetContainer-CMPFRHGv.esm.js.map +0 -1
  335. package/dist/chunks/assetContainer-CiEcm9CG.esm.min.js +0 -2
  336. package/dist/chunks/assetContainer-CiEcm9CG.esm.min.js.map +0 -1
  337. package/dist/chunks/audioEngine-BBwIWrAZ.esm.min.js +0 -2
  338. package/dist/chunks/audioEngine-BBwIWrAZ.esm.min.js.map +0 -1
  339. package/dist/chunks/audioEngine-DXxzFvDp.esm.js +0 -305
  340. package/dist/chunks/audioEngine-DXxzFvDp.esm.js.map +0 -1
  341. package/dist/chunks/bakedVertexAnimation-B-6SGd-2.esm.min.js +0 -2
  342. package/dist/chunks/bakedVertexAnimation-B-6SGd-2.esm.min.js.map +0 -1
  343. package/dist/chunks/bakedVertexAnimation-BThe76zu.esm.js +0 -114
  344. package/dist/chunks/bakedVertexAnimation-BThe76zu.esm.js.map +0 -1
  345. package/dist/chunks/basisTextureLoader-BVQEpWF3.esm.min.js +0 -2
  346. package/dist/chunks/basisTextureLoader-BVQEpWF3.esm.min.js.map +0 -1
  347. package/dist/chunks/basisTextureLoader-DfjGQFAP.esm.js +0 -600
  348. package/dist/chunks/basisTextureLoader-DfjGQFAP.esm.js.map +0 -1
  349. package/dist/chunks/dds-BFhUsBwT.esm.min.js +0 -2
  350. package/dist/chunks/dds-BFhUsBwT.esm.min.js.map +0 -1
  351. package/dist/chunks/dds-icNcBCOb.esm.js +0 -540
  352. package/dist/chunks/dds-icNcBCOb.esm.js.map +0 -1
  353. package/dist/chunks/ddsTextureLoader-BKh6cxU7.esm.min.js +0 -2
  354. package/dist/chunks/ddsTextureLoader-BKh6cxU7.esm.min.js.map +0 -1
  355. package/dist/chunks/ddsTextureLoader-KKxI-Nnm.esm.js +0 -88
  356. package/dist/chunks/ddsTextureLoader-KKxI-Nnm.esm.js.map +0 -1
  357. package/dist/chunks/decalFragment-DjthXKsA.esm.min.js +0 -2
  358. package/dist/chunks/decalFragment-DjthXKsA.esm.min.js.map +0 -1
  359. package/dist/chunks/decalFragment-spNX_yuu.esm.js +0 -18
  360. package/dist/chunks/decalFragment-spNX_yuu.esm.js.map +0 -1
  361. package/dist/chunks/default.fragment-CTOrvbSb.esm.js +0 -497
  362. package/dist/chunks/default.fragment-CTOrvbSb.esm.js.map +0 -1
  363. package/dist/chunks/default.fragment-CxsFoSAp.esm.min.js +0 -2
  364. package/dist/chunks/default.fragment-CxsFoSAp.esm.min.js.map +0 -1
  365. package/dist/chunks/default.fragment-n0S9o6Y-.esm.js +0 -431
  366. package/dist/chunks/default.fragment-n0S9o6Y-.esm.js.map +0 -1
  367. package/dist/chunks/default.fragment-yQbyMf0-.esm.min.js +0 -2
  368. package/dist/chunks/default.fragment-yQbyMf0-.esm.min.js.map +0 -1
  369. package/dist/chunks/default.vertex-BDaVwIfC.esm.js +0 -179
  370. package/dist/chunks/default.vertex-BDaVwIfC.esm.js.map +0 -1
  371. package/dist/chunks/default.vertex-BYRLc6t1.esm.min.js +0 -2
  372. package/dist/chunks/default.vertex-BYRLc6t1.esm.min.js.map +0 -1
  373. package/dist/chunks/default.vertex-Cz6vPCcy.esm.min.js +0 -2
  374. package/dist/chunks/default.vertex-Cz6vPCcy.esm.min.js.map +0 -1
  375. package/dist/chunks/default.vertex-DDFoUwv-.esm.js +0 -201
  376. package/dist/chunks/default.vertex-DDFoUwv-.esm.js.map +0 -1
  377. package/dist/chunks/defaultUboDeclaration-B0PSCYWh.esm.js +0 -15
  378. package/dist/chunks/defaultUboDeclaration-B0PSCYWh.esm.js.map +0 -1
  379. package/dist/chunks/defaultUboDeclaration-B6kC_-DX.esm.min.js +0 -2
  380. package/dist/chunks/defaultUboDeclaration-B6kC_-DX.esm.min.js.map +0 -1
  381. package/dist/chunks/defaultUboDeclaration-BE0n6id8.esm.js +0 -13
  382. package/dist/chunks/defaultUboDeclaration-BE0n6id8.esm.js.map +0 -1
  383. package/dist/chunks/defaultUboDeclaration-BGX489dV.esm.min.js +0 -2
  384. package/dist/chunks/defaultUboDeclaration-BGX489dV.esm.min.js.map +0 -1
  385. package/dist/chunks/drawWrapper.functions-CKg3_9x4.esm.js +0 -11
  386. package/dist/chunks/drawWrapper.functions-CKg3_9x4.esm.js.map +0 -1
  387. package/dist/chunks/drawWrapper.functions-ng7lvueZ.esm.min.js +0 -2
  388. package/dist/chunks/drawWrapper.functions-ng7lvueZ.esm.min.js.map +0 -1
  389. package/dist/chunks/dumpTools-D0f3VRtL.esm.js +0 -200
  390. package/dist/chunks/dumpTools-D0f3VRtL.esm.js.map +0 -1
  391. package/dist/chunks/dumpTools-DQpRV36f.esm.min.js +0 -2
  392. package/dist/chunks/dumpTools-DQpRV36f.esm.min.js.map +0 -1
  393. package/dist/chunks/engine-BDUZJ-0x.esm.min.js +0 -2
  394. package/dist/chunks/engine-BDUZJ-0x.esm.min.js.map +0 -1
  395. package/dist/chunks/engine-DmYC-FHl.esm.js +0 -2186
  396. package/dist/chunks/engine-DmYC-FHl.esm.js.map +0 -1
  397. package/dist/chunks/engine.common-BSSM9Qr_.esm.js +0 -1103
  398. package/dist/chunks/engine.common-BSSM9Qr_.esm.js.map +0 -1
  399. package/dist/chunks/engine.common-aJ-g9-SJ.esm.min.js +0 -2
  400. package/dist/chunks/engine.common-aJ-g9-SJ.esm.min.js.map +0 -1
  401. package/dist/chunks/envTextureLoader-C7qENr0t.esm.js +0 -64
  402. package/dist/chunks/envTextureLoader-C7qENr0t.esm.js.map +0 -1
  403. package/dist/chunks/envTextureLoader-tg86DzIi.esm.min.js +0 -2
  404. package/dist/chunks/envTextureLoader-tg86DzIi.esm.min.js.map +0 -1
  405. package/dist/chunks/environmentTextureTools-CTiGHhVw.esm.min.js +0 -2
  406. package/dist/chunks/environmentTextureTools-CTiGHhVw.esm.min.js.map +0 -1
  407. package/dist/chunks/environmentTextureTools-Ce9s74L9.esm.js +0 -382
  408. package/dist/chunks/environmentTextureTools-Ce9s74L9.esm.js.map +0 -1
  409. package/dist/chunks/exrTextureLoader-CBfm_TnI.esm.min.js +0 -2
  410. package/dist/chunks/exrTextureLoader-CBfm_TnI.esm.min.js.map +0 -1
  411. package/dist/chunks/exrTextureLoader-Cgc27hrF.esm.js +0 -1682
  412. package/dist/chunks/exrTextureLoader-Cgc27hrF.esm.js.map +0 -1
  413. package/dist/chunks/fogFragment-BkoNGDmt.esm.min.js +0 -2
  414. package/dist/chunks/fogFragment-BkoNGDmt.esm.min.js.map +0 -1
  415. package/dist/chunks/fogFragment-qKIMGMUW.esm.js +0 -102
  416. package/dist/chunks/fogFragment-qKIMGMUW.esm.js.map +0 -1
  417. package/dist/chunks/fresnelFunction-CwXhcuRj.esm.js +0 -12
  418. package/dist/chunks/fresnelFunction-CwXhcuRj.esm.js.map +0 -1
  419. package/dist/chunks/fresnelFunction-CzICDnGm.esm.min.js +0 -2
  420. package/dist/chunks/fresnelFunction-CzICDnGm.esm.min.js.map +0 -1
  421. package/dist/chunks/glTFLoader-BtsmmMGg.esm.js +0 -7577
  422. package/dist/chunks/glTFLoader-BtsmmMGg.esm.js.map +0 -1
  423. package/dist/chunks/glTFLoader-E_EILL6w.esm.min.js +0 -2
  424. package/dist/chunks/glTFLoader-E_EILL6w.esm.min.js.map +0 -1
  425. package/dist/chunks/glTFLoaderAnimation-D2-5H6HZ.esm.js +0 -77
  426. package/dist/chunks/glTFLoaderAnimation-D2-5H6HZ.esm.js.map +0 -1
  427. package/dist/chunks/glTFLoaderAnimation-DoXsmgNT.esm.min.js +0 -2
  428. package/dist/chunks/glTFLoaderAnimation-DoXsmgNT.esm.min.js.map +0 -1
  429. package/dist/chunks/gltfPathToObjectConverter-Dyt_Y9jE.esm.min.js +0 -2
  430. package/dist/chunks/gltfPathToObjectConverter-Dyt_Y9jE.esm.min.js.map +0 -1
  431. package/dist/chunks/gltfPathToObjectConverter-GcUmfOyo.esm.js +0 -67
  432. package/dist/chunks/gltfPathToObjectConverter-GcUmfOyo.esm.js.map +0 -1
  433. package/dist/chunks/harmonicsFunctions-BIdGSOV8.esm.min.js +0 -2
  434. package/dist/chunks/harmonicsFunctions-BIdGSOV8.esm.min.js.map +0 -1
  435. package/dist/chunks/harmonicsFunctions-CxjVwFDm.esm.js +0 -34
  436. package/dist/chunks/harmonicsFunctions-CxjVwFDm.esm.js.map +0 -1
  437. package/dist/chunks/harmonicsFunctions-D6pJOlhQ.esm.min.js +0 -2
  438. package/dist/chunks/harmonicsFunctions-D6pJOlhQ.esm.min.js.map +0 -1
  439. package/dist/chunks/harmonicsFunctions-qADkUwEs.esm.js +0 -35
  440. package/dist/chunks/harmonicsFunctions-qADkUwEs.esm.js.map +0 -1
  441. package/dist/chunks/hdrTextureLoader-BWg7nVzr.esm.min.js +0 -2
  442. package/dist/chunks/hdrTextureLoader-BWg7nVzr.esm.min.js.map +0 -1
  443. package/dist/chunks/hdrTextureLoader-Cn8KSQ0g.esm.js +0 -252
  444. package/dist/chunks/hdrTextureLoader-Cn8KSQ0g.esm.js.map +0 -1
  445. package/dist/chunks/helperFunctions-B3fHVB6R.esm.js +0 -108
  446. package/dist/chunks/helperFunctions-B3fHVB6R.esm.js.map +0 -1
  447. package/dist/chunks/helperFunctions-BCDPFpWW.esm.min.js +0 -2
  448. package/dist/chunks/helperFunctions-BCDPFpWW.esm.min.js.map +0 -1
  449. package/dist/chunks/helperFunctions-CXLowI-2.esm.min.js +0 -2
  450. package/dist/chunks/helperFunctions-CXLowI-2.esm.min.js.map +0 -1
  451. package/dist/chunks/helperFunctions-WOVMikvi.esm.js +0 -80
  452. package/dist/chunks/helperFunctions-WOVMikvi.esm.js.map +0 -1
  453. package/dist/chunks/index-2Ge8ZSfM.esm.min.js +0 -57
  454. package/dist/chunks/index-2Ge8ZSfM.esm.min.js.map +0 -1
  455. package/dist/chunks/index-hqUXEYXs.esm.js +0 -73109
  456. package/dist/chunks/index-hqUXEYXs.esm.js.map +0 -1
  457. package/dist/chunks/ktxTextureLoader-BE710vk4.esm.js +0 -814
  458. package/dist/chunks/ktxTextureLoader-BE710vk4.esm.js.map +0 -1
  459. package/dist/chunks/ktxTextureLoader-CRqXIqyu.esm.min.js +0 -2
  460. package/dist/chunks/ktxTextureLoader-CRqXIqyu.esm.min.js.map +0 -1
  461. package/dist/chunks/logDepthDeclaration-BuJU0MMq.esm.js +0 -35
  462. package/dist/chunks/logDepthDeclaration-BuJU0MMq.esm.js.map +0 -1
  463. package/dist/chunks/logDepthDeclaration-CjSD0BhQ.esm.js +0 -20
  464. package/dist/chunks/logDepthDeclaration-CjSD0BhQ.esm.js.map +0 -1
  465. package/dist/chunks/logDepthDeclaration-DKRQ_Rjj.esm.min.js +0 -2
  466. package/dist/chunks/logDepthDeclaration-DKRQ_Rjj.esm.min.js.map +0 -1
  467. package/dist/chunks/logDepthDeclaration-DR661XC5.esm.min.js +0 -2
  468. package/dist/chunks/logDepthDeclaration-DR661XC5.esm.min.js.map +0 -1
  469. package/dist/chunks/logDepthVertex-CbkA7Sru.esm.min.js +0 -2
  470. package/dist/chunks/logDepthVertex-CbkA7Sru.esm.min.js.map +0 -1
  471. package/dist/chunks/logDepthVertex-Crdl3_SI.esm.js +0 -77
  472. package/dist/chunks/logDepthVertex-Crdl3_SI.esm.js.map +0 -1
  473. package/dist/chunks/logDepthVertex-DSS0lG_-.esm.js +0 -487
  474. package/dist/chunks/logDepthVertex-DSS0lG_-.esm.js.map +0 -1
  475. package/dist/chunks/logDepthVertex-c4OCP-UG.esm.min.js +0 -2
  476. package/dist/chunks/logDepthVertex-c4OCP-UG.esm.min.js.map +0 -1
  477. package/dist/chunks/mainUVVaryingDeclaration-Bn01qEw6.esm.js +0 -11
  478. package/dist/chunks/mainUVVaryingDeclaration-Bn01qEw6.esm.js.map +0 -1
  479. package/dist/chunks/mainUVVaryingDeclaration-CZecLEYG.esm.min.js +0 -2
  480. package/dist/chunks/mainUVVaryingDeclaration-CZecLEYG.esm.min.js.map +0 -1
  481. package/dist/chunks/meshUboDeclaration-CGZ0n19g.esm.min.js +0 -2
  482. package/dist/chunks/meshUboDeclaration-CGZ0n19g.esm.min.js.map +0 -1
  483. package/dist/chunks/meshUboDeclaration-DhHhoJww.esm.js +0 -24
  484. package/dist/chunks/meshUboDeclaration-DhHhoJww.esm.js.map +0 -1
  485. package/dist/chunks/objFileLoader-47WP7y45.esm.js +0 -1338
  486. package/dist/chunks/objFileLoader-47WP7y45.esm.js.map +0 -1
  487. package/dist/chunks/objFileLoader-D5PLPEW6.esm.min.js +0 -2
  488. package/dist/chunks/objFileLoader-D5PLPEW6.esm.min.js.map +0 -1
  489. package/dist/chunks/oitFragment-BJ3zN_6I.esm.min.js +0 -2
  490. package/dist/chunks/oitFragment-BJ3zN_6I.esm.min.js.map +0 -1
  491. package/dist/chunks/oitFragment-BhmFLNob.esm.js +0 -1150
  492. package/dist/chunks/oitFragment-BhmFLNob.esm.js.map +0 -1
  493. package/dist/chunks/oitFragment-C4urVGKr.esm.min.js +0 -2
  494. package/dist/chunks/oitFragment-C4urVGKr.esm.min.js.map +0 -1
  495. package/dist/chunks/oitFragment-ChNi1bZY.esm.js +0 -1210
  496. package/dist/chunks/oitFragment-ChNi1bZY.esm.js.map +0 -1
  497. package/dist/chunks/pass.fragment-C1XV0kFQ.esm.min.js +0 -2
  498. package/dist/chunks/pass.fragment-C1XV0kFQ.esm.min.js.map +0 -1
  499. package/dist/chunks/pass.fragment-C6dELmFb.esm.min.js +0 -2
  500. package/dist/chunks/pass.fragment-C6dELmFb.esm.min.js.map +0 -1
  501. package/dist/chunks/pass.fragment-CET9HJQq.esm.js +0 -15
  502. package/dist/chunks/pass.fragment-CET9HJQq.esm.js.map +0 -1
  503. package/dist/chunks/pass.fragment-Vgms5sr-.esm.js +0 -15
  504. package/dist/chunks/pass.fragment-Vgms5sr-.esm.js.map +0 -1
  505. package/dist/chunks/pbr.fragment-CL1i1_7o.esm.min.js +0 -2
  506. package/dist/chunks/pbr.fragment-CL1i1_7o.esm.min.js.map +0 -1
  507. package/dist/chunks/pbr.fragment-D3YrjM8W.esm.js +0 -3163
  508. package/dist/chunks/pbr.fragment-D3YrjM8W.esm.js.map +0 -1
  509. package/dist/chunks/pbr.fragment-DEkHqpMR.esm.js +0 -3218
  510. package/dist/chunks/pbr.fragment-DEkHqpMR.esm.js.map +0 -1
  511. package/dist/chunks/pbr.fragment-WRhh878K.esm.min.js +0 -2
  512. package/dist/chunks/pbr.fragment-WRhh878K.esm.min.js.map +0 -1
  513. package/dist/chunks/pbr.vertex-BWIMIdzQ.esm.min.js +0 -2
  514. package/dist/chunks/pbr.vertex-BWIMIdzQ.esm.min.js.map +0 -1
  515. package/dist/chunks/pbr.vertex-BdvqGTOh.esm.js +0 -338
  516. package/dist/chunks/pbr.vertex-BdvqGTOh.esm.js.map +0 -1
  517. package/dist/chunks/pbr.vertex-BrMWAgwK.esm.min.js +0 -2
  518. package/dist/chunks/pbr.vertex-BrMWAgwK.esm.min.js.map +0 -1
  519. package/dist/chunks/pbr.vertex-LE833F_r.esm.js +0 -212
  520. package/dist/chunks/pbr.vertex-LE833F_r.esm.js.map +0 -1
  521. package/dist/chunks/postprocess.vertex-BPcO7a4q.esm.min.js +0 -2
  522. package/dist/chunks/postprocess.vertex-BPcO7a4q.esm.min.js.map +0 -1
  523. package/dist/chunks/postprocess.vertex-DcHgN4jQ.esm.js +0 -20
  524. package/dist/chunks/postprocess.vertex-DcHgN4jQ.esm.js.map +0 -1
  525. package/dist/chunks/rawTexture-DVvQbIM0.esm.min.js +0 -2
  526. package/dist/chunks/rawTexture-DVvQbIM0.esm.min.js.map +0 -1
  527. package/dist/chunks/rawTexture-Rbqo-GRc.esm.js +0 -191
  528. package/dist/chunks/rawTexture-Rbqo-GRc.esm.js.map +0 -1
  529. package/dist/chunks/rgbdDecode.fragment-C5X07jvh.esm.min.js +0 -2
  530. package/dist/chunks/rgbdDecode.fragment-C5X07jvh.esm.min.js.map +0 -1
  531. package/dist/chunks/rgbdDecode.fragment-C7OaZ46a.esm.js +0 -17
  532. package/dist/chunks/rgbdDecode.fragment-C7OaZ46a.esm.js.map +0 -1
  533. package/dist/chunks/rgbdDecode.fragment-DsRUVsyp.esm.min.js +0 -2
  534. package/dist/chunks/rgbdDecode.fragment-DsRUVsyp.esm.min.js.map +0 -1
  535. package/dist/chunks/rgbdDecode.fragment-tnAhM74-.esm.js +0 -17
  536. package/dist/chunks/rgbdDecode.fragment-tnAhM74-.esm.js.map +0 -1
  537. package/dist/chunks/rgbdEncode.fragment-CTXRjM5m.esm.min.js +0 -2
  538. package/dist/chunks/rgbdEncode.fragment-CTXRjM5m.esm.min.js.map +0 -1
  539. package/dist/chunks/rgbdEncode.fragment-CUc5WzIi.esm.js +0 -17
  540. package/dist/chunks/rgbdEncode.fragment-CUc5WzIi.esm.js.map +0 -1
  541. package/dist/chunks/rgbdEncode.fragment-CpMzg8df.esm.js +0 -17
  542. package/dist/chunks/rgbdEncode.fragment-CpMzg8df.esm.js.map +0 -1
  543. package/dist/chunks/rgbdEncode.fragment-D1ks-6Cc.esm.min.js +0 -2
  544. package/dist/chunks/rgbdEncode.fragment-D1ks-6Cc.esm.min.js.map +0 -1
  545. package/dist/chunks/splatFileLoader-BRg69mae.esm.min.js +0 -2
  546. package/dist/chunks/splatFileLoader-BRg69mae.esm.min.js.map +0 -1
  547. package/dist/chunks/splatFileLoader-ORM7U2s1.esm.js +0 -3807
  548. package/dist/chunks/splatFileLoader-ORM7U2s1.esm.js.map +0 -1
  549. package/dist/chunks/standardMaterial-8Das0pY6.esm.min.js +0 -2
  550. package/dist/chunks/standardMaterial-8Das0pY6.esm.min.js.map +0 -1
  551. package/dist/chunks/standardMaterial-BghTco1N.esm.js +0 -1805
  552. package/dist/chunks/standardMaterial-BghTco1N.esm.js.map +0 -1
  553. package/dist/chunks/stlFileLoader-BtK7UxiZ.esm.min.js +0 -2
  554. package/dist/chunks/stlFileLoader-BtK7UxiZ.esm.min.js.map +0 -1
  555. package/dist/chunks/stlFileLoader-D56UjEjy.esm.js +0 -238
  556. package/dist/chunks/stlFileLoader-D56UjEjy.esm.js.map +0 -1
  557. package/dist/chunks/tgaTextureLoader-CMz1UJMj.esm.min.js +0 -2
  558. package/dist/chunks/tgaTextureLoader-CMz1UJMj.esm.min.js.map +0 -1
  559. package/dist/chunks/tgaTextureLoader-vE_GvtAx.esm.js +0 -349
  560. package/dist/chunks/tgaTextureLoader-vE_GvtAx.esm.js.map +0 -1
  561. package/dist/chunks/thinEngine-BVVFYnLX.esm.js +0 -3721
  562. package/dist/chunks/thinEngine-BVVFYnLX.esm.js.map +0 -1
  563. package/dist/chunks/thinEngine-CNC-oTV2.esm.min.js +0 -2
  564. package/dist/chunks/thinEngine-CNC-oTV2.esm.min.js.map +0 -1
  565. package/dist/chunks/thinInstanceMesh-CSH6oaNv.esm.min.js +0 -2
  566. package/dist/chunks/thinInstanceMesh-CSH6oaNv.esm.min.js.map +0 -1
  567. package/dist/chunks/thinInstanceMesh-CZCCyuxU.esm.js +0 -314
  568. package/dist/chunks/thinInstanceMesh-CZCCyuxU.esm.js.map +0 -1
  569. package/dist/chunks/vertexColorMixing-CsqVdM6B.esm.min.js +0 -2
  570. package/dist/chunks/vertexColorMixing-CsqVdM6B.esm.min.js.map +0 -1
  571. package/dist/chunks/vertexColorMixing-Da-5w0e1.esm.js +0 -522
  572. package/dist/chunks/vertexColorMixing-Da-5w0e1.esm.js.map +0 -1
  573. package/dist/chunks/webgpuEngine-CBBRb6C8.esm.js +0 -11228
  574. package/dist/chunks/webgpuEngine-CBBRb6C8.esm.js.map +0 -1
  575. package/dist/chunks/webgpuEngine-DYbBoIRg.esm.min.js +0 -2
  576. package/dist/chunks/webgpuEngine-DYbBoIRg.esm.min.js.map +0 -1
  577. package/dist/chunks/workerPool-BUOov2K1.esm.js +0 -122
  578. package/dist/chunks/workerPool-BUOov2K1.esm.js.map +0 -1
  579. package/dist/chunks/workerPool-BWHiDmEZ.esm.min.js +0 -2
  580. package/dist/chunks/workerPool-BWHiDmEZ.esm.min.js.map +0 -1
  581. package/docs/ViewerDefault.jpg +0 -0
  582. package/docs/ViewerParts.jpg +0 -0
  583. package/docs/ViewerSlots.jpg +0 -0
  584. package/docs/ViewerStyled.jpg +0 -0
  585. package/lib/index.d.ts +0 -372
  586. package/lib/index.js +0 -1312
  587. package/lib/index.js.map +0 -1
@@ -0,0 +1,672 @@
1
+ import { __awaiter, __extends, __generator } from "@babylonjs/core/tslib.es6.js";
2
+ import { TemplateManager } from "../templating/templateManager.js";
3
+ import { FilesInput } from "@babylonjs/core/Misc/filesInput.js";
4
+ import { SpotLight } from "@babylonjs/core/Lights/spotLight.js";
5
+ import { Vector3 } from "@babylonjs/core/Maths/math.js";
6
+ import { AbstractViewerWithTemplate } from "./viewerWithTemplate.js";
7
+ import { StandardMaterial } from "@babylonjs/core/Materials/standardMaterial.js";
8
+ import { PBRMaterial } from "@babylonjs/core/Materials/PBR/pbrMaterial.js";
9
+ // eslint-disable-next-line import/no-internal-modules
10
+ import { extendClassWithConfig } from "../helper/index.js";
11
+ import { AnimationState } from "../model/modelAnimation.js";
12
+ import { HDButtonPlugin } from "../templating/plugins/hdButtonPlugin.js";
13
+ import { PrintButtonPlugin } from "../templating/plugins/printButton.js";
14
+ import { Logger } from "@babylonjs/core/Misc/logger.js";
15
+ import "@babylonjs/core/Lights/Shadows/shadowGeneratorSceneComponent.js";
16
+ /**
17
+ * The Default viewer is the default implementation of the AbstractViewer.
18
+ * It uses the templating system to render a new canvas and controls.
19
+ */
20
+ var DefaultViewer = /** @class */ (function (_super) {
21
+ __extends(DefaultViewer, _super);
22
+ /**
23
+ * Create a new default viewer
24
+ * @param containerElement the element in which the templates will be rendered
25
+ * @param initialConfiguration the initial configuration. Defaults to extending the default configuration
26
+ */
27
+ function DefaultViewer(containerElement, initialConfiguration) {
28
+ if (initialConfiguration === void 0) { initialConfiguration = { extends: "default" }; }
29
+ var _this = _super.call(this, containerElement, initialConfiguration) || this;
30
+ _this.containerElement = containerElement;
31
+ _this._registeredPlugins = [];
32
+ _this._handlePointerClick = function (event) {
33
+ var pointerDown = event.event;
34
+ if (pointerDown.button !== 0) {
35
+ return;
36
+ }
37
+ var element = event.event.target;
38
+ if (!element) {
39
+ return;
40
+ }
41
+ var parentClasses = element.parentElement.classList;
42
+ var elementClasses = element.classList;
43
+ var elementName = "";
44
+ for (var i = 0; i < elementClasses.length; ++i) {
45
+ var className = elementClasses[i];
46
+ if (className.indexOf("-button") !== -1 || className.indexOf("-wrapper") !== -1) {
47
+ elementName = className;
48
+ break;
49
+ }
50
+ }
51
+ switch (elementName) {
52
+ case "speed-button":
53
+ case "types-button":
54
+ if (parentClasses.contains("open")) {
55
+ parentClasses.remove("open");
56
+ }
57
+ else {
58
+ parentClasses.add("open");
59
+ }
60
+ break;
61
+ case "play-pause-button":
62
+ _this._togglePlayPause();
63
+ break;
64
+ case "label-option-button": {
65
+ var value = element.dataset["value"];
66
+ var label = element.querySelector("span.animation-label");
67
+ if (label && value) {
68
+ _this._updateAnimationType({ value: value.trim(), label: label.innerHTML });
69
+ }
70
+ break;
71
+ }
72
+ case "speed-option-button": {
73
+ if (!_this._currentAnimation) {
74
+ return;
75
+ }
76
+ var speed = element.dataset["value"];
77
+ if (speed) {
78
+ _this._updateAnimationSpeed(speed);
79
+ }
80
+ break;
81
+ }
82
+ case "progress-wrapper":
83
+ _this._resumePlay = !_this._isAnimationPaused;
84
+ if (_this._resumePlay) {
85
+ _this._togglePlayPause(true);
86
+ }
87
+ break;
88
+ case "fullscreen-button":
89
+ _this.toggleFullscreen();
90
+ break;
91
+ case "vr-button":
92
+ _this.toggleVR();
93
+ break;
94
+ default:
95
+ return;
96
+ }
97
+ };
98
+ /**
99
+ * Plays or Pauses animation
100
+ * @param noUiUpdate
101
+ */
102
+ _this._togglePlayPause = function (noUiUpdate) {
103
+ if (!_this._currentAnimation) {
104
+ return;
105
+ }
106
+ if (_this._isAnimationPaused) {
107
+ _this._currentAnimation.restart();
108
+ }
109
+ else {
110
+ _this._currentAnimation.pause();
111
+ }
112
+ _this._isAnimationPaused = !_this._isAnimationPaused;
113
+ if (noUiUpdate) {
114
+ return;
115
+ }
116
+ var navbar = _this.templateManager.getTemplate("navBar");
117
+ if (!navbar) {
118
+ return;
119
+ }
120
+ navbar.updateParams({
121
+ paused: _this._isAnimationPaused,
122
+ });
123
+ };
124
+ /**
125
+ * Control progress bar position based on animation current frame
126
+ */
127
+ _this._updateProgressBar = function () {
128
+ var navbar = _this.templateManager.getTemplate("navBar");
129
+ if (!navbar) {
130
+ return;
131
+ }
132
+ var progressSlider = navbar.parent.querySelector("input.progress-wrapper");
133
+ if (progressSlider && _this._currentAnimation) {
134
+ var progress = (_this._currentAnimation.currentFrame / _this._currentAnimation.frames) * 100;
135
+ var currentValue = progressSlider.valueAsNumber;
136
+ if (Math.abs(currentValue - progress) > 0.5) {
137
+ // Only move if greater than a 1% change
138
+ progressSlider.value = "" + progress;
139
+ }
140
+ if (_this._currentAnimation.state === AnimationState.PLAYING) {
141
+ if (_this.sceneManager.camera.autoRotationBehavior && !_this._oldIdleRotationValue) {
142
+ _this._oldIdleRotationValue = _this.sceneManager.camera.autoRotationBehavior.idleRotationSpeed;
143
+ _this.sceneManager.camera.autoRotationBehavior.idleRotationSpeed = 0;
144
+ }
145
+ }
146
+ else {
147
+ if (_this.sceneManager.camera.autoRotationBehavior && _this._oldIdleRotationValue) {
148
+ _this.sceneManager.camera.autoRotationBehavior.idleRotationSpeed = _this._oldIdleRotationValue;
149
+ _this._oldIdleRotationValue = 0;
150
+ }
151
+ }
152
+ }
153
+ };
154
+ /**
155
+ * Update Current Animation Speed
156
+ * @param speed
157
+ * @param paramsObject
158
+ */
159
+ _this._updateAnimationSpeed = function (speed, paramsObject) {
160
+ var navbar = _this.templateManager.getTemplate("navBar");
161
+ if (!navbar) {
162
+ return;
163
+ }
164
+ if (speed && _this._currentAnimation) {
165
+ _this._currentAnimation.speedRatio = parseFloat(speed);
166
+ if (!_this._isAnimationPaused) {
167
+ _this._currentAnimation.restart();
168
+ }
169
+ if (paramsObject) {
170
+ paramsObject.selectedSpeed = speed + "x";
171
+ }
172
+ else {
173
+ navbar.updateParams({
174
+ selectedSpeed: speed + "x",
175
+ });
176
+ }
177
+ }
178
+ };
179
+ /**
180
+ * Update Current Animation Type
181
+ * @param data
182
+ * @param data.label
183
+ * @param data.value
184
+ * @param paramsObject
185
+ */
186
+ _this._updateAnimationType = function (data, paramsObject) {
187
+ var navbar = _this.templateManager.getTemplate("navBar");
188
+ if (!navbar) {
189
+ return;
190
+ }
191
+ if (data) {
192
+ _this._currentAnimation = _this.sceneManager.models[0].setCurrentAnimationByName(data.value);
193
+ }
194
+ if (paramsObject) {
195
+ paramsObject.selectedAnimation = _this._animationList.indexOf(data.value) + 1;
196
+ paramsObject.selectedAnimationName = data.label;
197
+ }
198
+ else {
199
+ navbar.updateParams({
200
+ selectedAnimation: _this._animationList.indexOf(data.value) + 1,
201
+ selectedAnimationName: data.label,
202
+ });
203
+ }
204
+ _this._updateAnimationSpeed("1.0", paramsObject);
205
+ };
206
+ /**
207
+ * Toggle fullscreen of the entire viewer
208
+ */
209
+ _this.toggleFullscreen = function () {
210
+ var viewerTemplate = _this.templateManager.getTemplate("viewer");
211
+ var viewerElement = viewerTemplate && viewerTemplate.parent;
212
+ var fullscreenElement = _this.fullscreenElement || viewerElement;
213
+ if (fullscreenElement) {
214
+ var currentElement = document.fullscreenElement || document.webkitFullscreenElement;
215
+ if (!currentElement) {
216
+ var requestFullScreen = fullscreenElement.requestFullscreen || fullscreenElement.webkitRequestFullscreen;
217
+ requestFullScreen.call(fullscreenElement);
218
+ if (viewerElement) {
219
+ viewerElement.classList.add("in-fullscreen");
220
+ }
221
+ }
222
+ else {
223
+ var exitFullscreen = document.exitFullscreen || document.webkitExitFullscreen;
224
+ exitFullscreen.call(document);
225
+ if (viewerElement) {
226
+ viewerElement.classList.remove("in-fullscreen");
227
+ }
228
+ }
229
+ }
230
+ };
231
+ _this._onModelLoaded = function (model) {
232
+ _this._configureTemplate(model);
233
+ // with a short timeout, making sure everything is there already.
234
+ var hideLoadingDelay = 20;
235
+ if (_this.configuration.lab && _this.configuration.lab.hideLoadingDelay !== undefined) {
236
+ hideLoadingDelay = _this.configuration.lab.hideLoadingDelay;
237
+ }
238
+ setTimeout(function () {
239
+ _this.sceneManager.scene.executeWhenReady(function () {
240
+ _this.hideLoadingScreen();
241
+ });
242
+ }, hideLoadingDelay);
243
+ return;
244
+ };
245
+ _this.onModelLoadedObservable.add(_this._onModelLoaded);
246
+ _this.onModelRemovedObservable.add(function () {
247
+ _this._configureTemplate();
248
+ });
249
+ _this.onEngineInitObservable.add(function () {
250
+ _this.sceneManager.onLightsConfiguredObservable.add(function () {
251
+ _this._configureLights();
252
+ });
253
+ _this.sceneManager.setDefaultMaterial = function (sceneConfig) {
254
+ var conf = sceneConfig.defaultMaterial;
255
+ if (!conf) {
256
+ return;
257
+ }
258
+ if ((conf.materialType === "standard" && this.scene.defaultMaterial.getClassName() !== "StandardMaterial") ||
259
+ (conf.materialType === "pbr" && this.scene.defaultMaterial.getClassName() !== "PBRMaterial")) {
260
+ this.scene.defaultMaterial.dispose();
261
+ if (conf.materialType === "standard") {
262
+ this.scene.defaultMaterial = new StandardMaterial("defaultMaterial", this.scene);
263
+ }
264
+ else {
265
+ this.scene.defaultMaterial = new PBRMaterial("defaultMaterial", this.scene);
266
+ }
267
+ }
268
+ extendClassWithConfig(this.scene.defaultMaterial, conf);
269
+ };
270
+ if (!_this.sceneManager.models.length) {
271
+ _this.hideLoadingScreen();
272
+ }
273
+ });
274
+ return _this;
275
+ }
276
+ DefaultViewer.prototype.registerTemplatePlugin = function (plugin) {
277
+ var _this = this;
278
+ //validate
279
+ if (!plugin.templateName) {
280
+ throw new Error("No template name provided");
281
+ }
282
+ this._registeredPlugins.push(plugin);
283
+ var template = this.templateManager.getTemplate(plugin.templateName);
284
+ if (!template) {
285
+ throw new Error("Template ".concat(plugin.templateName, " not found"));
286
+ }
287
+ if (plugin.addHTMLTemplate) {
288
+ template.onHTMLRendered.add(function (tmpl) {
289
+ plugin.addHTMLTemplate(tmpl);
290
+ });
291
+ template.redraw();
292
+ }
293
+ if (plugin.eventsToAttach) {
294
+ plugin.eventsToAttach.forEach(function (eventName) {
295
+ plugin.onEvent &&
296
+ _this.templateManager.eventManager.registerCallback(plugin.templateName, function (event) {
297
+ if (plugin.onEvent && plugin.interactionPredicate(event)) {
298
+ plugin.onEvent(event);
299
+ }
300
+ }, eventName);
301
+ });
302
+ }
303
+ };
304
+ /**
305
+ * This will be executed when the templates initialize.
306
+ * @returns a promise that will be resolved when the templates are loaded
307
+ */
308
+ DefaultViewer.prototype._onTemplatesLoaded = function () {
309
+ var _this = this;
310
+ this.showLoadingScreen();
311
+ // navbar
312
+ this._initNavbar();
313
+ // close overlay button
314
+ var template = this.templateManager.getTemplate("overlay");
315
+ if (template) {
316
+ var closeButton = template.parent.querySelector(".close-button");
317
+ if (closeButton) {
318
+ closeButton.addEventListener("pointerdown", function () {
319
+ _this.hideOverlayScreen();
320
+ });
321
+ }
322
+ }
323
+ if (this.configuration.templates && this.configuration.templates.viewer) {
324
+ if (this.configuration.templates.viewer.params && this.configuration.templates.viewer.params.enableDragAndDrop) {
325
+ this.onSceneInitObservable.addOnce(function () {
326
+ var filesInput = new FilesInput(_this.engine, _this.sceneManager.scene, function () { }, function () { }, function () { }, function () { }, function () { }, function (file) {
327
+ _this.loadModel(file);
328
+ }, function () { });
329
+ filesInput.monitorElementForDragNDrop(_this.templateManager.getCanvas());
330
+ });
331
+ }
332
+ }
333
+ return _super.prototype._onTemplatesLoaded.call(this);
334
+ };
335
+ DefaultViewer.prototype._initNavbar = function () {
336
+ var _this = this;
337
+ var navbar = this.templateManager.getTemplate("navBar");
338
+ if (navbar) {
339
+ this.onFrameRenderedObservable.add(this._updateProgressBar);
340
+ this.templateManager.eventManager.registerCallback("navBar", this._handlePointerClick, "click");
341
+ // an example how to trigger the help button. publiclly available
342
+ this.templateManager.eventManager.registerCallback("navBar", function () {
343
+ // do your thing
344
+ }, "pointerdown", ".help-button");
345
+ this.templateManager.eventManager.registerCallback("navBar", function (event) {
346
+ var evt = event.event;
347
+ var element = evt.target;
348
+ if (!_this._currentAnimation) {
349
+ return;
350
+ }
351
+ var gotoFrame = (+element.value / 100) * _this._currentAnimation.frames;
352
+ if (isNaN(gotoFrame)) {
353
+ return;
354
+ }
355
+ _this._currentAnimation.goToFrame(gotoFrame);
356
+ }, "input");
357
+ this.templateManager.eventManager.registerCallback("navBar", function () {
358
+ if (_this._resumePlay) {
359
+ _this._togglePlayPause(true);
360
+ }
361
+ _this._resumePlay = false;
362
+ }, "pointerup", ".progress-wrapper");
363
+ if (window.devicePixelRatio === 1 && navbar.configuration.params && !navbar.configuration.params.hideHdButton) {
364
+ navbar.updateParams({
365
+ hideHdButton: true,
366
+ });
367
+ }
368
+ this.registerTemplatePlugin(new HDButtonPlugin(this));
369
+ this.registerTemplatePlugin(new PrintButtonPlugin(this));
370
+ }
371
+ };
372
+ DefaultViewer.prototype._initVR = function () {
373
+ var _this = this;
374
+ if (this.sceneManager.vrHelper) {
375
+ // due to the way the experience helper is exisintg VR, this must be added.
376
+ this.sceneManager.vrHelper.onExitingVR.add(function () {
377
+ var viewerTemplate = _this.templateManager.getTemplate("viewer");
378
+ var viewerElement = viewerTemplate && viewerTemplate.parent;
379
+ if (viewerElement) {
380
+ viewerElement.classList.remove("in-vr");
381
+ }
382
+ });
383
+ }
384
+ _super.prototype._initVR.call(this);
385
+ };
386
+ /**
387
+ * Preparing the container element to present the viewer
388
+ */
389
+ DefaultViewer.prototype._prepareContainerElement = function () {
390
+ var htmlElement = this.containerElement;
391
+ if (htmlElement.style) {
392
+ htmlElement.style.position = "relative";
393
+ htmlElement.style.height = "100%";
394
+ htmlElement.style.display = "flex";
395
+ }
396
+ };
397
+ /**
398
+ * This function will configure the templates and update them after a model was loaded
399
+ * It is mainly responsible to changing the title and subtitle etc'.
400
+ * @param model the model to be used to configure the templates by
401
+ */
402
+ DefaultViewer.prototype._configureTemplate = function (model) {
403
+ var navbar = this.templateManager.getTemplate("navBar");
404
+ if (!navbar) {
405
+ return;
406
+ }
407
+ var newParams = navbar.configuration.params || {};
408
+ if (!model) {
409
+ newParams.animations = null;
410
+ }
411
+ else {
412
+ var animationNames = model.getAnimationNames();
413
+ newParams.animations = animationNames.map(function (a) {
414
+ return { label: a, value: a };
415
+ });
416
+ if (animationNames.length) {
417
+ this._isAnimationPaused = (model.configuration.animation && !model.configuration.animation.autoStart) || !model.configuration.animation;
418
+ this._animationList = animationNames;
419
+ newParams.paused = this._isAnimationPaused;
420
+ var animationIndex = 0;
421
+ if (model.configuration.animation && typeof model.configuration.animation.autoStart === "string") {
422
+ animationIndex = animationNames.indexOf(model.configuration.animation.autoStart);
423
+ if (animationIndex === -1) {
424
+ animationIndex = 0;
425
+ }
426
+ }
427
+ this._updateAnimationType(newParams.animations[animationIndex], newParams);
428
+ }
429
+ else {
430
+ newParams.animations = null;
431
+ }
432
+ if (model.configuration.thumbnail) {
433
+ newParams.logoImage = model.configuration.thumbnail;
434
+ }
435
+ }
436
+ navbar.updateParams(newParams, false);
437
+ };
438
+ /**
439
+ * This will load a new model to the default viewer
440
+ * overriding the AbstractViewer's loadModel.
441
+ * The scene will automatically be cleared of the old models, if exist.
442
+ * @param model the configuration object (or URL) to load.
443
+ * @returns a promise that will be resolved when the model is loaded
444
+ */
445
+ DefaultViewer.prototype.loadModel = function (model) {
446
+ return __awaiter(this, void 0, void 0, function () {
447
+ var error_1;
448
+ return __generator(this, function (_a) {
449
+ switch (_a.label) {
450
+ case 0:
451
+ if (!model) {
452
+ model = this.configuration.model;
453
+ }
454
+ this.showLoadingScreen();
455
+ _a.label = 1;
456
+ case 1:
457
+ _a.trys.push([1, 3, , 5]);
458
+ return [4 /*yield*/, _super.prototype.loadModel.call(this, model, true)];
459
+ case 2: return [2 /*return*/, _a.sent()];
460
+ case 3:
461
+ error_1 = _a.sent();
462
+ Logger.Log(error_1);
463
+ this.hideLoadingScreen();
464
+ this.showOverlayScreen("error");
465
+ return [4 /*yield*/, Promise.reject(error_1)];
466
+ case 4: return [2 /*return*/, _a.sent()];
467
+ case 5: return [2 /*return*/];
468
+ }
469
+ });
470
+ });
471
+ };
472
+ /**
473
+ * Show the overlay and the defined sub-screen.
474
+ * Mainly used for help and errors
475
+ * @param subScreen the name of the subScreen. Those can be defined in the configuration object
476
+ * @returns a promise that will be resolved when the overlay is shown
477
+ */
478
+ DefaultViewer.prototype.showOverlayScreen = function (subScreen) {
479
+ var _this = this;
480
+ var template = this.templateManager.getTemplate("overlay");
481
+ if (!template) {
482
+ return Promise.resolve("Overlay template not found");
483
+ }
484
+ return template.show(function (template) {
485
+ var canvasRect = _this.containerElement.getBoundingClientRect();
486
+ template.parent.style.display = "flex";
487
+ template.parent.style.width = canvasRect.width + "px";
488
+ template.parent.style.height = canvasRect.height + "px";
489
+ template.parent.style.opacity = "1";
490
+ var subTemplate = _this.templateManager.getTemplate(subScreen);
491
+ if (!subTemplate) {
492
+ return Promise.reject(subScreen + " template not found");
493
+ }
494
+ return subTemplate.show(function (template) {
495
+ template.parent.style.display = "flex";
496
+ return Promise.resolve(template);
497
+ });
498
+ });
499
+ };
500
+ /**
501
+ * Hide the overlay screen.
502
+ * @returns a promise that will be resolved when the overlay is hidden
503
+ */
504
+ DefaultViewer.prototype.hideOverlayScreen = function () {
505
+ var template = this.templateManager.getTemplate("overlay");
506
+ if (!template) {
507
+ return Promise.resolve("Overlay template not found");
508
+ }
509
+ return template.hide(function (template) {
510
+ template.parent.style.opacity = "0";
511
+ var onTransitionEnd = function () {
512
+ template.parent.removeEventListener("transitionend", onTransitionEnd);
513
+ template.parent.style.display = "none";
514
+ };
515
+ template.parent.addEventListener("transitionend", onTransitionEnd);
516
+ var overlays = template.parent.querySelectorAll(".overlay");
517
+ if (overlays) {
518
+ for (var i = 0; i < overlays.length; ++i) {
519
+ var htmlElement = overlays.item(i);
520
+ htmlElement.style.display = "none";
521
+ }
522
+ }
523
+ return Promise.resolve(template);
524
+ });
525
+ };
526
+ /**
527
+ * show the viewer (in case it was hidden)
528
+ *
529
+ * @param visibilityFunction an optional function to execute in order to show the container
530
+ * @returns a promise that will be resolved when the viewer is shown
531
+ */
532
+ DefaultViewer.prototype.show = function (visibilityFunction) {
533
+ var template = this.templateManager.getTemplate("main");
534
+ //not possible, but yet:
535
+ if (!template) {
536
+ return Promise.reject("Main template not found");
537
+ }
538
+ return template.show(visibilityFunction);
539
+ };
540
+ /**
541
+ * hide the viewer (in case it is visible)
542
+ *
543
+ * @param visibilityFunction an optional function to execute in order to hide the container
544
+ * @returns a promise that will be resolved when the viewer is hidden
545
+ */
546
+ DefaultViewer.prototype.hide = function (visibilityFunction) {
547
+ var template = this.templateManager.getTemplate("main");
548
+ //not possible, but yet:
549
+ if (!template) {
550
+ return Promise.reject("Main template not found");
551
+ }
552
+ return template.hide(visibilityFunction);
553
+ };
554
+ /**
555
+ * Show the loading screen.
556
+ * The loading screen can be configured using the configuration object
557
+ * @returns a promise that will be resolved when the loading screen is shown
558
+ */
559
+ DefaultViewer.prototype.showLoadingScreen = function () {
560
+ var _this = this;
561
+ var template = this.templateManager.getTemplate("loadingScreen");
562
+ if (!template) {
563
+ return Promise.resolve("Loading Screen template not found");
564
+ }
565
+ return template.show(function (template) {
566
+ var canvasRect = _this.containerElement.getBoundingClientRect();
567
+ // var canvasPositioning = window.getComputedStyle(this.containerElement).position;
568
+ template.parent.style.display = "flex";
569
+ template.parent.style.width = canvasRect.width + "px";
570
+ template.parent.style.height = canvasRect.height + "px";
571
+ template.parent.style.opacity = "1";
572
+ // from the configuration!!!
573
+ var color = "black";
574
+ if (_this.configuration.templates && _this.configuration.templates.loadingScreen) {
575
+ color = (_this.configuration.templates.loadingScreen.params && _this.configuration.templates.loadingScreen.params.backgroundColor) || color;
576
+ }
577
+ template.parent.style.backgroundColor = color;
578
+ return Promise.resolve(template);
579
+ });
580
+ };
581
+ /**
582
+ * Hide the loading screen
583
+ * @returns a promise that will be resolved when the loading screen is hidden
584
+ */
585
+ DefaultViewer.prototype.hideLoadingScreen = function () {
586
+ var template = this.templateManager.getTemplate("loadingScreen");
587
+ if (!template) {
588
+ return Promise.resolve("Loading Screen template not found");
589
+ }
590
+ return template.hide(function (template) {
591
+ template.parent.style.opacity = "0";
592
+ var onTransitionEnd = function () {
593
+ template.parent.removeEventListener("transitionend", onTransitionEnd);
594
+ template.parent.style.display = "none";
595
+ };
596
+ template.parent.addEventListener("transitionend", onTransitionEnd);
597
+ return Promise.resolve(template);
598
+ });
599
+ };
600
+ DefaultViewer.prototype.dispose = function () {
601
+ this.templateManager.dispose();
602
+ _super.prototype.dispose.call(this);
603
+ };
604
+ DefaultViewer.prototype._onConfigurationLoaded = function (configuration) {
605
+ var _this = this;
606
+ _super.prototype._onConfigurationLoaded.call(this, configuration);
607
+ this.templateManager = new TemplateManager(this.containerElement);
608
+ // initialize the templates
609
+ var templateConfiguration = this.configuration.templates || {};
610
+ this.templateManager.initTemplate(templateConfiguration);
611
+ // when done, execute onTemplatesLoaded()
612
+ this.templateManager.onAllLoaded.add(function () {
613
+ var canvas = _this.templateManager.getCanvas();
614
+ if (canvas) {
615
+ _this._canvas = canvas;
616
+ }
617
+ _this._onTemplateLoaded();
618
+ });
619
+ };
620
+ /**
621
+ * An extension of the light configuration of the abstract viewer.
622
+ */
623
+ DefaultViewer.prototype._configureLights = function () {
624
+ var _this = this;
625
+ // labs feature - flashlight
626
+ if (this.configuration.lab && this.configuration.lab.flashlight) {
627
+ var lightTarget_1;
628
+ var angle = 0.5;
629
+ var exponent = Math.PI / 2;
630
+ if (typeof this.configuration.lab.flashlight === "object") {
631
+ exponent = this.configuration.lab.flashlight.exponent || exponent;
632
+ angle = this.configuration.lab.flashlight.angle || angle;
633
+ }
634
+ var flashlight_1 = new SpotLight("flashlight", Vector3.Zero(), Vector3.Zero(), exponent, angle, this.sceneManager.scene);
635
+ if (typeof this.configuration.lab.flashlight === "object") {
636
+ flashlight_1.intensity = this.configuration.lab.flashlight.intensity || flashlight_1.intensity;
637
+ if (this.configuration.lab.flashlight.diffuse) {
638
+ flashlight_1.diffuse.r = this.configuration.lab.flashlight.diffuse.r;
639
+ flashlight_1.diffuse.g = this.configuration.lab.flashlight.diffuse.g;
640
+ flashlight_1.diffuse.b = this.configuration.lab.flashlight.diffuse.b;
641
+ }
642
+ if (this.configuration.lab.flashlight.specular) {
643
+ flashlight_1.specular.r = this.configuration.lab.flashlight.specular.r;
644
+ flashlight_1.specular.g = this.configuration.lab.flashlight.specular.g;
645
+ flashlight_1.specular.b = this.configuration.lab.flashlight.specular.b;
646
+ }
647
+ }
648
+ this.sceneManager.scene.constantlyUpdateMeshUnderPointer = true;
649
+ this.sceneManager.scene.onPointerObservable.add(function (eventData) {
650
+ if (eventData.type === 4 && eventData.pickInfo) {
651
+ lightTarget_1 = eventData.pickInfo.pickedPoint;
652
+ }
653
+ else {
654
+ lightTarget_1 = undefined;
655
+ }
656
+ });
657
+ var updateFlashlightFunction = function () {
658
+ if (_this.sceneManager.camera && flashlight_1) {
659
+ flashlight_1.position.copyFrom(_this.sceneManager.camera.position);
660
+ if (lightTarget_1) {
661
+ lightTarget_1.subtractToRef(flashlight_1.position, flashlight_1.direction);
662
+ }
663
+ }
664
+ };
665
+ this.sceneManager.scene.registerBeforeRender(updateFlashlightFunction);
666
+ this._registeredOnBeforeRenderFunctions.push(updateFlashlightFunction);
667
+ }
668
+ };
669
+ return DefaultViewer;
670
+ }(AbstractViewerWithTemplate));
671
+ export { DefaultViewer };
672
+ //# sourceMappingURL=defaultViewer.js.map