angular-three 0.0.2 → 0.0.3

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 (388) hide show
  1. package/attributes/README.md +3 -0
  2. package/attributes/index.d.ts +22 -0
  3. package/attributes/lib/buffer-attribute/buffer-attribute.d.ts +8 -0
  4. package/attributes/lib/color-attribute/color-attribute.d.ts +8 -0
  5. package/attributes/lib/float16-buffer-attribute/float16-buffer-attribute.d.ts +8 -0
  6. package/attributes/lib/float32-buffer-attribute/float32-buffer-attribute.d.ts +8 -0
  7. package/attributes/lib/float64-buffer-attribute/float64-buffer-attribute.d.ts +8 -0
  8. package/attributes/lib/fog-attribute/fog-attribute.d.ts +8 -0
  9. package/attributes/lib/fog-exp2-attribute/fog-exp2-attribute.d.ts +8 -0
  10. package/attributes/lib/instanced-buffer-attribute/instanced-buffer-attribute.d.ts +8 -0
  11. package/attributes/lib/int16-buffer-attribute/int16-buffer-attribute.d.ts +8 -0
  12. package/attributes/lib/int32-buffer-attribute/int32-buffer-attribute.d.ts +8 -0
  13. package/attributes/lib/int8-buffer-attribute/int8-buffer-attribute.d.ts +8 -0
  14. package/attributes/lib/interleaved-buffer-attribute/interleaved-buffer-attribute.d.ts +8 -0
  15. package/attributes/lib/matrix3-attribute/matrix3-attribute.d.ts +8 -0
  16. package/attributes/lib/matrix4-attribute/matrix4-attribute.d.ts +8 -0
  17. package/attributes/lib/uint16-buffer-attribute/uint16-buffer-attribute.d.ts +8 -0
  18. package/attributes/lib/uint32-buffer-attribute/uint32-buffer-attribute.d.ts +8 -0
  19. package/attributes/lib/uint8-buffer-attribute/uint8-buffer-attribute.d.ts +8 -0
  20. package/attributes/lib/uint8-clamped-buffer-attribute/uint8-clamped-buffer-attribute.d.ts +8 -0
  21. package/attributes/lib/value-attribute/value-attribute.d.ts +8 -0
  22. package/attributes/lib/vector2-attribute/vector2-attribute.d.ts +8 -0
  23. package/attributes/lib/vector3-attribute/vector3-attribute.d.ts +8 -0
  24. package/attributes/lib/vector4-attribute/vector4-attribute.d.ts +8 -0
  25. package/audios/README.md +3 -0
  26. package/audios/index.d.ts +3 -0
  27. package/audios/lib/audio/audio.d.ts +49 -0
  28. package/audios/lib/audio-listener/audio-listener.d.ts +35 -0
  29. package/audios/lib/positional-audio/positional-audio.d.ts +49 -0
  30. package/cameras/README.md +3 -0
  31. package/cameras/index.d.ts +5 -0
  32. package/cameras/lib/array-camera/array-camera.d.ts +56 -0
  33. package/cameras/lib/cube-camera/cube-camera.d.ts +36 -0
  34. package/cameras/lib/orthographic-camera/orthographic-camera.d.ts +54 -0
  35. package/cameras/lib/perspective-camera/perspective-camera.d.ts +55 -0
  36. package/cameras/lib/stereo-camera/stereo-camera.d.ts +42 -0
  37. package/esm2020/attributes/angular-three-attributes.mjs +5 -0
  38. package/esm2020/attributes/index.mjs +24 -0
  39. package/esm2020/attributes/lib/buffer-attribute/buffer-attribute.mjs +25 -0
  40. package/esm2020/attributes/lib/color-attribute/color-attribute.mjs +25 -0
  41. package/esm2020/attributes/lib/float16-buffer-attribute/float16-buffer-attribute.mjs +25 -0
  42. package/esm2020/attributes/lib/float32-buffer-attribute/float32-buffer-attribute.mjs +25 -0
  43. package/esm2020/attributes/lib/float64-buffer-attribute/float64-buffer-attribute.mjs +25 -0
  44. package/esm2020/attributes/lib/fog-attribute/fog-attribute.mjs +25 -0
  45. package/esm2020/attributes/lib/fog-exp2-attribute/fog-exp2-attribute.mjs +25 -0
  46. package/esm2020/attributes/lib/instanced-buffer-attribute/instanced-buffer-attribute.mjs +25 -0
  47. package/esm2020/attributes/lib/int16-buffer-attribute/int16-buffer-attribute.mjs +25 -0
  48. package/esm2020/attributes/lib/int32-buffer-attribute/int32-buffer-attribute.mjs +25 -0
  49. package/esm2020/attributes/lib/int8-buffer-attribute/int8-buffer-attribute.mjs +25 -0
  50. package/esm2020/attributes/lib/interleaved-buffer-attribute/interleaved-buffer-attribute.mjs +29 -0
  51. package/esm2020/attributes/lib/matrix3-attribute/matrix3-attribute.mjs +25 -0
  52. package/esm2020/attributes/lib/matrix4-attribute/matrix4-attribute.mjs +25 -0
  53. package/esm2020/attributes/lib/uint16-buffer-attribute/uint16-buffer-attribute.mjs +25 -0
  54. package/esm2020/attributes/lib/uint32-buffer-attribute/uint32-buffer-attribute.mjs +25 -0
  55. package/esm2020/attributes/lib/uint8-buffer-attribute/uint8-buffer-attribute.mjs +25 -0
  56. package/esm2020/attributes/lib/uint8-clamped-buffer-attribute/uint8-clamped-buffer-attribute.mjs +25 -0
  57. package/esm2020/attributes/lib/value-attribute/value-attribute.mjs +27 -0
  58. package/esm2020/attributes/lib/vector2-attribute/vector2-attribute.mjs +25 -0
  59. package/esm2020/attributes/lib/vector3-attribute/vector3-attribute.mjs +25 -0
  60. package/esm2020/attributes/lib/vector4-attribute/vector4-attribute.mjs +25 -0
  61. package/esm2020/audios/angular-three-audios.mjs +5 -0
  62. package/esm2020/audios/index.mjs +5 -0
  63. package/esm2020/audios/lib/audio/audio.mjs +68 -0
  64. package/esm2020/audios/lib/audio-listener/audio-listener.mjs +65 -0
  65. package/esm2020/audios/lib/positional-audio/positional-audio.mjs +68 -0
  66. package/esm2020/cameras/angular-three-cameras.mjs +5 -0
  67. package/esm2020/cameras/index.mjs +7 -0
  68. package/esm2020/cameras/lib/array-camera/array-camera.mjs +67 -0
  69. package/esm2020/cameras/lib/cube-camera/cube-camera.mjs +55 -0
  70. package/esm2020/cameras/lib/orthographic-camera/orthographic-camera.mjs +65 -0
  71. package/esm2020/cameras/lib/perspective-camera/perspective-camera.mjs +66 -0
  72. package/esm2020/cameras/lib/stereo-camera/stereo-camera.mjs +61 -0
  73. package/esm2020/geometries/angular-three-geometries.mjs +5 -0
  74. package/esm2020/geometries/index.mjs +25 -0
  75. package/esm2020/geometries/lib/box-geometry/box-geometry.mjs +25 -0
  76. package/esm2020/geometries/lib/buffer-geometry/buffer-geometry.mjs +25 -0
  77. package/esm2020/geometries/lib/capsule-geometry/capsule-geometry.mjs +25 -0
  78. package/esm2020/geometries/lib/circle-geometry/circle-geometry.mjs +25 -0
  79. package/esm2020/geometries/lib/cone-geometry/cone-geometry.mjs +25 -0
  80. package/esm2020/geometries/lib/cylinder-geometry/cylinder-geometry.mjs +25 -0
  81. package/esm2020/geometries/lib/dodecahedron-geometry/dodecahedron-geometry.mjs +25 -0
  82. package/esm2020/geometries/lib/edges-geometry/edges-geometry.mjs +25 -0
  83. package/esm2020/geometries/lib/extrude-geometry/extrude-geometry.mjs +25 -0
  84. package/esm2020/geometries/lib/icosahedron-geometry/icosahedron-geometry.mjs +25 -0
  85. package/esm2020/geometries/lib/instanced-buffer-geometry/instanced-buffer-geometry.mjs +25 -0
  86. package/esm2020/geometries/lib/lathe-geometry/lathe-geometry.mjs +25 -0
  87. package/esm2020/geometries/lib/octahedron-geometry/octahedron-geometry.mjs +25 -0
  88. package/esm2020/geometries/lib/plane-geometry/plane-geometry.mjs +25 -0
  89. package/esm2020/geometries/lib/polyhedron-geometry/polyhedron-geometry.mjs +25 -0
  90. package/esm2020/geometries/lib/ring-geometry/ring-geometry.mjs +25 -0
  91. package/esm2020/geometries/lib/shape-geometry/shape-geometry.mjs +25 -0
  92. package/esm2020/geometries/lib/sphere-geometry/sphere-geometry.mjs +25 -0
  93. package/esm2020/geometries/lib/tetrahedron-geometry/tetrahedron-geometry.mjs +25 -0
  94. package/esm2020/geometries/lib/torus-geometry/torus-geometry.mjs +25 -0
  95. package/esm2020/geometries/lib/torus-knot-geometry/torus-knot-geometry.mjs +25 -0
  96. package/esm2020/geometries/lib/tube-geometry/tube-geometry.mjs +25 -0
  97. package/esm2020/geometries/lib/wireframe-geometry/wireframe-geometry.mjs +25 -0
  98. package/esm2020/helpers/angular-three-helpers.mjs +5 -0
  99. package/esm2020/helpers/index.mjs +15 -0
  100. package/esm2020/helpers/lib/arrow-helper/arrow-helper.mjs +25 -0
  101. package/esm2020/helpers/lib/axes-helper/axes-helper.mjs +25 -0
  102. package/esm2020/helpers/lib/box-helper/box-helper.mjs +35 -0
  103. package/esm2020/helpers/lib/box3-helper/box3-helper.mjs +35 -0
  104. package/esm2020/helpers/lib/camera-helper/camera-helper.mjs +35 -0
  105. package/esm2020/helpers/lib/directional-light-helper/directional-light-helper.mjs +35 -0
  106. package/esm2020/helpers/lib/grid-helper/grid-helper.mjs +25 -0
  107. package/esm2020/helpers/lib/hemisphere-light-helper/hemisphere-light-helper.mjs +35 -0
  108. package/esm2020/helpers/lib/plane-helper/plane-helper.mjs +35 -0
  109. package/esm2020/helpers/lib/point-light-helper/point-light-helper.mjs +35 -0
  110. package/esm2020/helpers/lib/polar-grid-helper/polar-grid-helper.mjs +25 -0
  111. package/esm2020/helpers/lib/skeleton-helper/skeleton-helper.mjs +35 -0
  112. package/esm2020/helpers/lib/spot-light-helper/spot-light-helper.mjs +35 -0
  113. package/esm2020/index.mjs +12 -2
  114. package/esm2020/lib/canvas.mjs +227 -0
  115. package/esm2020/lib/di/resize.mjs +19 -0
  116. package/esm2020/lib/di/window.mjs +13 -0
  117. package/esm2020/lib/directives/args.mjs +30 -0
  118. package/esm2020/lib/events.mjs +53 -0
  119. package/esm2020/lib/instance.mjs +358 -0
  120. package/esm2020/lib/ref.mjs +15 -0
  121. package/esm2020/lib/services/loader.mjs +45 -0
  122. package/esm2020/lib/services/resize.mjs +127 -0
  123. package/esm2020/lib/stores/component-store.mjs +137 -0
  124. package/esm2020/lib/stores/store.mjs +433 -0
  125. package/esm2020/lib/types.mjs +2 -0
  126. package/esm2020/lib/utils/apply-props.mjs +135 -0
  127. package/esm2020/lib/utils/build-graph.mjs +15 -0
  128. package/esm2020/lib/utils/camera.mjs +28 -0
  129. package/esm2020/lib/utils/capitalize.mjs +4 -0
  130. package/esm2020/lib/utils/check-update.mjs +22 -0
  131. package/esm2020/lib/utils/events.mjs +353 -0
  132. package/esm2020/lib/utils/get-instance-local-state.mjs +6 -0
  133. package/esm2020/lib/utils/inject.mjs +18 -0
  134. package/esm2020/lib/utils/instance.mjs +35 -0
  135. package/esm2020/lib/utils/is.mjs +54 -0
  136. package/esm2020/lib/utils/loop.mjs +139 -0
  137. package/esm2020/lib/utils/make.mjs +30 -0
  138. package/esm2020/lib/utils/mutate.mjs +24 -0
  139. package/esm2020/lib/utils/proxy.mjs +99 -0
  140. package/esm2020/lib/utils/renderer.mjs +15 -0
  141. package/esm2020/lights/angular-three-lights.mjs +5 -0
  142. package/esm2020/lights/index.mjs +11 -0
  143. package/esm2020/lights/lib/ambient-light/ambient-light.mjs +68 -0
  144. package/esm2020/lights/lib/ambient-light-probe/ambient-light-probe.mjs +69 -0
  145. package/esm2020/lights/lib/directional-light/directional-light.mjs +69 -0
  146. package/esm2020/lights/lib/hemisphere-light/hemisphere-light.mjs +70 -0
  147. package/esm2020/lights/lib/hemisphere-light-probe/hemisphere-light-probe.mjs +71 -0
  148. package/esm2020/lights/lib/light-probe/light-probe.mjs +69 -0
  149. package/esm2020/lights/lib/point-light/point-light.mjs +71 -0
  150. package/esm2020/lights/lib/rect-area-light/rect-area-light.mjs +71 -0
  151. package/esm2020/lights/lib/spot-light/spot-light.mjs +74 -0
  152. package/esm2020/materials/angular-three-materials.mjs +5 -0
  153. package/esm2020/materials/index.mjs +19 -0
  154. package/esm2020/materials/lib/line-basic-material/line-basic-material.mjs +76 -0
  155. package/esm2020/materials/lib/line-dashed-material/line-dashed-material.mjs +79 -0
  156. package/esm2020/materials/lib/mesh-basic-material/mesh-basic-material.mjs +88 -0
  157. package/esm2020/materials/lib/mesh-depth-material/mesh-depth-material.mjs +79 -0
  158. package/esm2020/materials/lib/mesh-distance-material/mesh-distance-material.mjs +79 -0
  159. package/esm2020/materials/lib/mesh-lambert-material/mesh-lambert-material.mjs +99 -0
  160. package/esm2020/materials/lib/mesh-matcap-material/mesh-matcap-material.mjs +85 -0
  161. package/esm2020/materials/lib/mesh-normal-material/mesh-normal-material.mjs +82 -0
  162. package/esm2020/materials/lib/mesh-phong-material/mesh-phong-material.mjs +102 -0
  163. package/esm2020/materials/lib/mesh-physical-material/mesh-physical-material.mjs +118 -0
  164. package/esm2020/materials/lib/mesh-standard-material/mesh-standard-material.mjs +99 -0
  165. package/esm2020/materials/lib/mesh-toon-material/mesh-toon-material.mjs +95 -0
  166. package/esm2020/materials/lib/points-material/points-material.mjs +77 -0
  167. package/esm2020/materials/lib/raw-shader-material/raw-shader-material.mjs +82 -0
  168. package/esm2020/materials/lib/shader-material/shader-material.mjs +82 -0
  169. package/esm2020/materials/lib/shadow-material/shadow-material.mjs +73 -0
  170. package/esm2020/materials/lib/sprite-material/sprite-material.mjs +77 -0
  171. package/esm2020/objects/angular-three-objects.mjs +5 -0
  172. package/esm2020/objects/index.mjs +14 -0
  173. package/esm2020/objects/lib/bone/bone.mjs +54 -0
  174. package/esm2020/objects/lib/group/group.mjs +54 -0
  175. package/esm2020/objects/lib/instanced-mesh/instanced-mesh.mjs +63 -0
  176. package/esm2020/objects/lib/line/line.mjs +58 -0
  177. package/esm2020/objects/lib/line-loop/line-loop.mjs +58 -0
  178. package/esm2020/objects/lib/line-segments/line-segments.mjs +58 -0
  179. package/esm2020/objects/lib/lod/lod.mjs +57 -0
  180. package/esm2020/objects/lib/mesh/mesh.mjs +58 -0
  181. package/esm2020/objects/lib/points/points.mjs +58 -0
  182. package/esm2020/objects/lib/skeleton/skeleton.mjs +49 -0
  183. package/esm2020/objects/lib/skinned-mesh/skinned-mesh.mjs +62 -0
  184. package/esm2020/objects/lib/sprite/sprite.mjs +57 -0
  185. package/esm2020/primitives/angular-three-primitives.mjs +5 -0
  186. package/esm2020/primitives/index.mjs +3 -0
  187. package/esm2020/primitives/lib/object-primitive/object-primitive.mjs +54 -0
  188. package/esm2020/primitives/lib/primitive/primitive.mjs +37 -0
  189. package/esm2020/stats/angular-three-stats.mjs +5 -0
  190. package/esm2020/stats/index.mjs +2 -0
  191. package/esm2020/stats/lib/stats/stats.mjs +54 -0
  192. package/esm2020/textures/angular-three-textures.mjs +5 -0
  193. package/esm2020/textures/index.mjs +12 -0
  194. package/esm2020/textures/lib/canvas-texture/canvas-texture.mjs +25 -0
  195. package/esm2020/textures/lib/compressed-array-texture/compressed-array-texture.mjs +25 -0
  196. package/esm2020/textures/lib/compressed-texture/compressed-texture.mjs +25 -0
  197. package/esm2020/textures/lib/cube-texture/cube-texture.mjs +25 -0
  198. package/esm2020/textures/lib/data-array-texture/data-array-texture.mjs +25 -0
  199. package/esm2020/textures/lib/data-texture/data-texture.mjs +25 -0
  200. package/esm2020/textures/lib/data3-dtexture/data3-dtexture.mjs +25 -0
  201. package/esm2020/textures/lib/depth-texture/depth-texture.mjs +25 -0
  202. package/esm2020/textures/lib/framebuffer-texture/framebuffer-texture.mjs +25 -0
  203. package/esm2020/textures/lib/video-texture/video-texture.mjs +25 -0
  204. package/fesm2015/angular-three-attributes.mjs +462 -0
  205. package/fesm2015/angular-three-attributes.mjs.map +1 -0
  206. package/fesm2015/angular-three-audios.mjs +200 -0
  207. package/fesm2015/angular-three-audios.mjs.map +1 -0
  208. package/fesm2015/angular-three-cameras.mjs +304 -0
  209. package/fesm2015/angular-three-cameras.mjs.map +1 -0
  210. package/fesm2015/angular-three-geometries.mjs +475 -0
  211. package/fesm2015/angular-three-geometries.mjs.map +1 -0
  212. package/fesm2015/angular-three-helpers.mjs +365 -0
  213. package/fesm2015/angular-three-helpers.mjs.map +1 -0
  214. package/fesm2015/angular-three-lights.mjs +602 -0
  215. package/fesm2015/angular-three-lights.mjs.map +1 -0
  216. package/fesm2015/angular-three-materials.mjs +1402 -0
  217. package/fesm2015/angular-three-materials.mjs.map +1 -0
  218. package/fesm2015/angular-three-objects.mjs +641 -0
  219. package/fesm2015/angular-three-objects.mjs.map +1 -0
  220. package/fesm2015/angular-three-primitives.mjs +95 -0
  221. package/fesm2015/angular-three-primitives.mjs.map +1 -0
  222. package/fesm2015/angular-three-stats.mjs +62 -0
  223. package/fesm2015/angular-three-stats.mjs.map +1 -0
  224. package/fesm2015/angular-three-textures.mjs +215 -0
  225. package/fesm2015/angular-three-textures.mjs.map +1 -0
  226. package/fesm2015/angular-three.mjs +2327 -10
  227. package/fesm2015/angular-three.mjs.map +1 -1
  228. package/fesm2020/angular-three-attributes.mjs +462 -0
  229. package/fesm2020/angular-three-attributes.mjs.map +1 -0
  230. package/fesm2020/angular-three-audios.mjs +200 -0
  231. package/fesm2020/angular-three-audios.mjs.map +1 -0
  232. package/fesm2020/angular-three-cameras.mjs +304 -0
  233. package/fesm2020/angular-three-cameras.mjs.map +1 -0
  234. package/fesm2020/angular-three-geometries.mjs +475 -0
  235. package/fesm2020/angular-three-geometries.mjs.map +1 -0
  236. package/fesm2020/angular-three-helpers.mjs +365 -0
  237. package/fesm2020/angular-three-helpers.mjs.map +1 -0
  238. package/fesm2020/angular-three-lights.mjs +602 -0
  239. package/fesm2020/angular-three-lights.mjs.map +1 -0
  240. package/fesm2020/angular-three-materials.mjs +1402 -0
  241. package/fesm2020/angular-three-materials.mjs.map +1 -0
  242. package/fesm2020/angular-three-objects.mjs +641 -0
  243. package/fesm2020/angular-three-objects.mjs.map +1 -0
  244. package/fesm2020/angular-three-primitives.mjs +95 -0
  245. package/fesm2020/angular-three-primitives.mjs.map +1 -0
  246. package/fesm2020/angular-three-stats.mjs +62 -0
  247. package/fesm2020/angular-three-stats.mjs.map +1 -0
  248. package/fesm2020/angular-three-textures.mjs +215 -0
  249. package/fesm2020/angular-three-textures.mjs.map +1 -0
  250. package/fesm2020/angular-three.mjs +2344 -10
  251. package/fesm2020/angular-three.mjs.map +1 -1
  252. package/geometries/README.md +3 -0
  253. package/geometries/index.d.ts +23 -0
  254. package/geometries/lib/box-geometry/box-geometry.d.ts +8 -0
  255. package/geometries/lib/buffer-geometry/buffer-geometry.d.ts +8 -0
  256. package/geometries/lib/capsule-geometry/capsule-geometry.d.ts +8 -0
  257. package/geometries/lib/circle-geometry/circle-geometry.d.ts +8 -0
  258. package/geometries/lib/cone-geometry/cone-geometry.d.ts +8 -0
  259. package/geometries/lib/cylinder-geometry/cylinder-geometry.d.ts +8 -0
  260. package/geometries/lib/dodecahedron-geometry/dodecahedron-geometry.d.ts +8 -0
  261. package/geometries/lib/edges-geometry/edges-geometry.d.ts +8 -0
  262. package/geometries/lib/extrude-geometry/extrude-geometry.d.ts +8 -0
  263. package/geometries/lib/icosahedron-geometry/icosahedron-geometry.d.ts +8 -0
  264. package/geometries/lib/instanced-buffer-geometry/instanced-buffer-geometry.d.ts +8 -0
  265. package/geometries/lib/lathe-geometry/lathe-geometry.d.ts +8 -0
  266. package/geometries/lib/octahedron-geometry/octahedron-geometry.d.ts +8 -0
  267. package/geometries/lib/plane-geometry/plane-geometry.d.ts +8 -0
  268. package/geometries/lib/polyhedron-geometry/polyhedron-geometry.d.ts +8 -0
  269. package/geometries/lib/ring-geometry/ring-geometry.d.ts +8 -0
  270. package/geometries/lib/shape-geometry/shape-geometry.d.ts +8 -0
  271. package/geometries/lib/sphere-geometry/sphere-geometry.d.ts +8 -0
  272. package/geometries/lib/tetrahedron-geometry/tetrahedron-geometry.d.ts +8 -0
  273. package/geometries/lib/torus-geometry/torus-geometry.d.ts +8 -0
  274. package/geometries/lib/torus-knot-geometry/torus-knot-geometry.d.ts +8 -0
  275. package/geometries/lib/tube-geometry/tube-geometry.d.ts +8 -0
  276. package/geometries/lib/wireframe-geometry/wireframe-geometry.d.ts +8 -0
  277. package/helpers/README.md +3 -0
  278. package/helpers/index.d.ts +13 -0
  279. package/helpers/lib/arrow-helper/arrow-helper.d.ts +8 -0
  280. package/helpers/lib/axes-helper/axes-helper.d.ts +8 -0
  281. package/helpers/lib/box-helper/box-helper.d.ts +8 -0
  282. package/helpers/lib/box3-helper/box3-helper.d.ts +8 -0
  283. package/helpers/lib/camera-helper/camera-helper.d.ts +8 -0
  284. package/helpers/lib/directional-light-helper/directional-light-helper.d.ts +8 -0
  285. package/helpers/lib/grid-helper/grid-helper.d.ts +8 -0
  286. package/helpers/lib/hemisphere-light-helper/hemisphere-light-helper.d.ts +8 -0
  287. package/helpers/lib/plane-helper/plane-helper.d.ts +8 -0
  288. package/helpers/lib/point-light-helper/point-light-helper.d.ts +8 -0
  289. package/helpers/lib/polar-grid-helper/polar-grid-helper.d.ts +8 -0
  290. package/helpers/lib/skeleton-helper/skeleton-helper.d.ts +8 -0
  291. package/helpers/lib/spot-light-helper/spot-light-helper.d.ts +8 -0
  292. package/index.d.ts +11 -1
  293. package/lib/canvas.d.ts +46 -0
  294. package/lib/di/resize.d.ts +12 -0
  295. package/lib/di/window.d.ts +1 -0
  296. package/lib/directives/args.d.ts +19 -0
  297. package/lib/events.d.ts +2 -0
  298. package/lib/instance.d.ts +81 -0
  299. package/lib/ref.d.ts +5 -0
  300. package/lib/services/loader.d.ts +11 -0
  301. package/lib/services/resize.d.ts +19 -0
  302. package/lib/stores/component-store.d.ts +69 -0
  303. package/lib/stores/store.d.ts +32 -0
  304. package/lib/types.d.ts +358 -0
  305. package/lib/utils/apply-props.d.ts +6 -0
  306. package/lib/utils/build-graph.d.ts +3 -0
  307. package/lib/utils/camera.d.ts +4 -0
  308. package/lib/utils/capitalize.d.ts +1 -0
  309. package/lib/utils/check-update.d.ts +2 -0
  310. package/lib/utils/events.d.ts +6 -0
  311. package/lib/utils/get-instance-local-state.d.ts +2 -0
  312. package/lib/utils/inject.d.ts +9 -0
  313. package/lib/utils/instance.d.ts +4 -0
  314. package/lib/utils/is.d.ts +21 -0
  315. package/lib/utils/loop.d.ts +32 -0
  316. package/lib/utils/make.d.ts +4 -0
  317. package/lib/utils/mutate.d.ts +2 -0
  318. package/lib/utils/proxy.d.ts +7 -0
  319. package/lib/utils/renderer.d.ts +3 -0
  320. package/lights/README.md +3 -0
  321. package/lights/index.d.ts +9 -0
  322. package/lights/lib/ambient-light/ambient-light.d.ts +49 -0
  323. package/lights/lib/ambient-light-probe/ambient-light-probe.d.ts +50 -0
  324. package/lights/lib/directional-light/directional-light.d.ts +50 -0
  325. package/lights/lib/hemisphere-light/hemisphere-light.d.ts +51 -0
  326. package/lights/lib/hemisphere-light-probe/hemisphere-light-probe.d.ts +52 -0
  327. package/lights/lib/light-probe/light-probe.d.ts +50 -0
  328. package/lights/lib/point-light/point-light.d.ts +52 -0
  329. package/lights/lib/rect-area-light/rect-area-light.d.ts +52 -0
  330. package/lights/lib/spot-light/spot-light.d.ts +55 -0
  331. package/materials/README.md +3 -0
  332. package/materials/index.d.ts +17 -0
  333. package/materials/lib/line-basic-material/line-basic-material.d.ts +55 -0
  334. package/materials/lib/line-dashed-material/line-dashed-material.d.ts +58 -0
  335. package/materials/lib/mesh-basic-material/mesh-basic-material.d.ts +67 -0
  336. package/materials/lib/mesh-depth-material/mesh-depth-material.d.ts +58 -0
  337. package/materials/lib/mesh-distance-material/mesh-distance-material.d.ts +58 -0
  338. package/materials/lib/mesh-lambert-material/mesh-lambert-material.d.ts +78 -0
  339. package/materials/lib/mesh-matcap-material/mesh-matcap-material.d.ts +64 -0
  340. package/materials/lib/mesh-normal-material/mesh-normal-material.d.ts +61 -0
  341. package/materials/lib/mesh-phong-material/mesh-phong-material.d.ts +81 -0
  342. package/materials/lib/mesh-physical-material/mesh-physical-material.d.ts +97 -0
  343. package/materials/lib/mesh-standard-material/mesh-standard-material.d.ts +78 -0
  344. package/materials/lib/mesh-toon-material/mesh-toon-material.d.ts +74 -0
  345. package/materials/lib/points-material/points-material.d.ts +56 -0
  346. package/materials/lib/raw-shader-material/raw-shader-material.d.ts +68 -0
  347. package/materials/lib/shader-material/shader-material.d.ts +68 -0
  348. package/materials/lib/shadow-material/shadow-material.d.ts +52 -0
  349. package/materials/lib/sprite-material/sprite-material.d.ts +56 -0
  350. package/objects/README.md +3 -0
  351. package/objects/index.d.ts +12 -0
  352. package/objects/lib/bone/bone.d.ts +35 -0
  353. package/objects/lib/group/group.d.ts +35 -0
  354. package/objects/lib/instanced-mesh/instanced-mesh.d.ts +44 -0
  355. package/objects/lib/line/line.d.ts +41 -0
  356. package/objects/lib/line-loop/line-loop.d.ts +41 -0
  357. package/objects/lib/line-segments/line-segments.d.ts +41 -0
  358. package/objects/lib/lod/lod.d.ts +41 -0
  359. package/objects/lib/mesh/mesh.d.ts +41 -0
  360. package/objects/lib/points/points.d.ts +41 -0
  361. package/objects/lib/skeleton/skeleton.d.ts +17 -0
  362. package/objects/lib/skinned-mesh/skinned-mesh.d.ts +45 -0
  363. package/objects/lib/sprite/sprite.d.ts +38 -0
  364. package/package.json +93 -2
  365. package/primitives/README.md +3 -0
  366. package/primitives/index.d.ts +2 -0
  367. package/primitives/lib/object-primitive/object-primitive.d.ts +35 -0
  368. package/primitives/lib/primitive/primitive.d.ts +10 -0
  369. package/schematics/src/generators/init/generator.d.ts +1 -1
  370. package/schematics/src/generators/init/generator.js +4 -4
  371. package/schematics/src/generators/init/generator.js.map +1 -1
  372. package/stats/README.md +3 -0
  373. package/stats/index.d.ts +1 -0
  374. package/stats/lib/stats/stats.d.ts +16 -0
  375. package/textures/README.md +3 -0
  376. package/textures/index.d.ts +10 -0
  377. package/textures/lib/canvas-texture/canvas-texture.d.ts +8 -0
  378. package/textures/lib/compressed-array-texture/compressed-array-texture.d.ts +8 -0
  379. package/textures/lib/compressed-texture/compressed-texture.d.ts +8 -0
  380. package/textures/lib/cube-texture/cube-texture.d.ts +8 -0
  381. package/textures/lib/data-array-texture/data-array-texture.d.ts +8 -0
  382. package/textures/lib/data-texture/data-texture.d.ts +8 -0
  383. package/textures/lib/data3-dtexture/data3-dtexture.d.ts +8 -0
  384. package/textures/lib/depth-texture/depth-texture.d.ts +8 -0
  385. package/textures/lib/framebuffer-texture/framebuffer-texture.d.ts +8 -0
  386. package/textures/lib/video-texture/video-texture.d.ts +8 -0
  387. package/esm2020/lib/angular-three.module.mjs +0 -15
  388. package/lib/angular-three.module.d.ts +0 -7
@@ -0,0 +1,602 @@
1
+ import * as THREE from 'three';
2
+ import * as i0 from '@angular/core';
3
+ import { Component } from '@angular/core';
4
+ import * as i1 from 'angular-three';
5
+ import { injectArgs, proxify, provideInstanceRef, NgtInstance, NGT_INSTANCE_INPUTS, NGT_INSTANCE_OUTPUTS } from 'angular-three';
6
+
7
+ // GENERATED - AngularThree v1.0.0
8
+ class NgtLightProbe extends THREE.LightProbe {
9
+ constructor() {
10
+ super(...(injectArgs({ optional: true }) || []));
11
+ return proxify(this);
12
+ }
13
+ }
14
+ NgtLightProbe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtLightProbe, deps: [], target: i0.ɵɵFactoryTarget.Component });
15
+ NgtLightProbe.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtLightProbe, isStandalone: true, selector: "ngt-light-probe", inputs: { sh: "sh", intensity: "intensity", hex: "hex", color: "color", shadow: "shadow", shadowCameraFov: "shadowCameraFov", shadowCameraLeft: "shadowCameraLeft", shadowCameraRight: "shadowCameraRight", shadowCameraTop: "shadowCameraTop", shadowCameraBottom: "shadowCameraBottom", shadowCameraNear: "shadowCameraNear", shadowCameraFar: "shadowCameraFar", shadowBias: "shadowBias", shadowMapWidth: "shadowMapWidth", shadowMapHeight: "shadowMapHeight", name: "name", position: "position", rotation: "rotation", quaternion: "quaternion", scale: "scale", modelViewMatrix: "modelViewMatrix", normalMatrix: "normalMatrix", matrix: "matrix", matrixWorld: "matrixWorld", matrixAutoUpdate: "matrixAutoUpdate", matrixWorldAutoUpdate: "matrixWorldAutoUpdate", matrixWorldNeedsUpdate: "matrixWorldNeedsUpdate", layers: "layers", visible: "visible", castShadow: "castShadow", receiveShadow: "receiveShadow", frustumCulled: "frustumCulled", renderOrder: "renderOrder", animations: "animations", userData: "userData", customDepthMaterial: "customDepthMaterial", customDistanceMaterial: "customDistanceMaterial", onBeforeRender: "onBeforeRender", onAfterRender: "onAfterRender" }, providers: [provideInstanceRef(NgtLightProbe)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
16
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtLightProbe, decorators: [{
17
+ type: Component,
18
+ args: [{
19
+ selector: 'ngt-light-probe',
20
+ standalone: true,
21
+ template: '<ng-content></ng-content>',
22
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
23
+ providers: [provideInstanceRef(NgtLightProbe)],
24
+ inputs: [...getInputs$8()],
25
+ }]
26
+ }], ctorParameters: function () { return []; } });
27
+ function getInputs$8() {
28
+ return [
29
+ 'sh',
30
+ 'intensity',
31
+ 'hex',
32
+ 'color',
33
+ 'shadow',
34
+ 'shadowCameraFov',
35
+ 'shadowCameraLeft',
36
+ 'shadowCameraRight',
37
+ 'shadowCameraTop',
38
+ 'shadowCameraBottom',
39
+ 'shadowCameraNear',
40
+ 'shadowCameraFar',
41
+ 'shadowBias',
42
+ 'shadowMapWidth',
43
+ 'shadowMapHeight',
44
+ 'name',
45
+ 'position',
46
+ 'rotation',
47
+ 'quaternion',
48
+ 'scale',
49
+ 'modelViewMatrix',
50
+ 'normalMatrix',
51
+ 'matrix',
52
+ 'matrixWorld',
53
+ 'matrixAutoUpdate',
54
+ 'matrixWorldAutoUpdate',
55
+ 'matrixWorldNeedsUpdate',
56
+ 'layers',
57
+ 'visible',
58
+ 'castShadow',
59
+ 'receiveShadow',
60
+ 'frustumCulled',
61
+ 'renderOrder',
62
+ 'animations',
63
+ 'userData',
64
+ 'customDepthMaterial',
65
+ 'customDistanceMaterial',
66
+ 'onBeforeRender',
67
+ 'onAfterRender',
68
+ ];
69
+ }
70
+
71
+ // GENERATED - AngularThree v1.0.0
72
+ class NgtAmbientLight extends THREE.AmbientLight {
73
+ constructor() {
74
+ super(...(injectArgs({ optional: true }) || []));
75
+ return proxify(this);
76
+ }
77
+ }
78
+ NgtAmbientLight.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtAmbientLight, deps: [], target: i0.ɵɵFactoryTarget.Component });
79
+ NgtAmbientLight.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtAmbientLight, isStandalone: true, selector: "ngt-ambient-light", inputs: { color: "color", intensity: "intensity", hex: "hex", shadow: "shadow", shadowCameraFov: "shadowCameraFov", shadowCameraLeft: "shadowCameraLeft", shadowCameraRight: "shadowCameraRight", shadowCameraTop: "shadowCameraTop", shadowCameraBottom: "shadowCameraBottom", shadowCameraNear: "shadowCameraNear", shadowCameraFar: "shadowCameraFar", shadowBias: "shadowBias", shadowMapWidth: "shadowMapWidth", shadowMapHeight: "shadowMapHeight", name: "name", position: "position", rotation: "rotation", quaternion: "quaternion", scale: "scale", modelViewMatrix: "modelViewMatrix", normalMatrix: "normalMatrix", matrix: "matrix", matrixWorld: "matrixWorld", matrixAutoUpdate: "matrixAutoUpdate", matrixWorldAutoUpdate: "matrixWorldAutoUpdate", matrixWorldNeedsUpdate: "matrixWorldNeedsUpdate", layers: "layers", visible: "visible", castShadow: "castShadow", receiveShadow: "receiveShadow", frustumCulled: "frustumCulled", renderOrder: "renderOrder", animations: "animations", userData: "userData", customDepthMaterial: "customDepthMaterial", customDistanceMaterial: "customDistanceMaterial", onBeforeRender: "onBeforeRender", onAfterRender: "onAfterRender" }, providers: [provideInstanceRef(NgtAmbientLight)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
80
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtAmbientLight, decorators: [{
81
+ type: Component,
82
+ args: [{
83
+ selector: 'ngt-ambient-light',
84
+ standalone: true,
85
+ template: '<ng-content></ng-content>',
86
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
87
+ providers: [provideInstanceRef(NgtAmbientLight)],
88
+ inputs: [...getInputs$7()],
89
+ }]
90
+ }], ctorParameters: function () { return []; } });
91
+ function getInputs$7() {
92
+ return [
93
+ 'color',
94
+ 'intensity',
95
+ 'hex',
96
+ 'shadow',
97
+ 'shadowCameraFov',
98
+ 'shadowCameraLeft',
99
+ 'shadowCameraRight',
100
+ 'shadowCameraTop',
101
+ 'shadowCameraBottom',
102
+ 'shadowCameraNear',
103
+ 'shadowCameraFar',
104
+ 'shadowBias',
105
+ 'shadowMapWidth',
106
+ 'shadowMapHeight',
107
+ 'name',
108
+ 'position',
109
+ 'rotation',
110
+ 'quaternion',
111
+ 'scale',
112
+ 'modelViewMatrix',
113
+ 'normalMatrix',
114
+ 'matrix',
115
+ 'matrixWorld',
116
+ 'matrixAutoUpdate',
117
+ 'matrixWorldAutoUpdate',
118
+ 'matrixWorldNeedsUpdate',
119
+ 'layers',
120
+ 'visible',
121
+ 'castShadow',
122
+ 'receiveShadow',
123
+ 'frustumCulled',
124
+ 'renderOrder',
125
+ 'animations',
126
+ 'userData',
127
+ 'customDepthMaterial',
128
+ 'customDistanceMaterial',
129
+ 'onBeforeRender',
130
+ 'onAfterRender',
131
+ ];
132
+ }
133
+
134
+ // GENERATED - AngularThree v1.0.0
135
+ class NgtAmbientLightProbe extends THREE.AmbientLightProbe {
136
+ constructor() {
137
+ super(...(injectArgs({ optional: true }) || []));
138
+ return proxify(this);
139
+ }
140
+ }
141
+ NgtAmbientLightProbe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtAmbientLightProbe, deps: [], target: i0.ɵɵFactoryTarget.Component });
142
+ NgtAmbientLightProbe.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtAmbientLightProbe, isStandalone: true, selector: "ngt-ambient-light-probe", inputs: { color: "color", intensity: "intensity", sh: "sh", hex: "hex", shadow: "shadow", shadowCameraFov: "shadowCameraFov", shadowCameraLeft: "shadowCameraLeft", shadowCameraRight: "shadowCameraRight", shadowCameraTop: "shadowCameraTop", shadowCameraBottom: "shadowCameraBottom", shadowCameraNear: "shadowCameraNear", shadowCameraFar: "shadowCameraFar", shadowBias: "shadowBias", shadowMapWidth: "shadowMapWidth", shadowMapHeight: "shadowMapHeight", name: "name", position: "position", rotation: "rotation", quaternion: "quaternion", scale: "scale", modelViewMatrix: "modelViewMatrix", normalMatrix: "normalMatrix", matrix: "matrix", matrixWorld: "matrixWorld", matrixAutoUpdate: "matrixAutoUpdate", matrixWorldAutoUpdate: "matrixWorldAutoUpdate", matrixWorldNeedsUpdate: "matrixWorldNeedsUpdate", layers: "layers", visible: "visible", castShadow: "castShadow", receiveShadow: "receiveShadow", frustumCulled: "frustumCulled", renderOrder: "renderOrder", animations: "animations", userData: "userData", customDepthMaterial: "customDepthMaterial", customDistanceMaterial: "customDistanceMaterial", onBeforeRender: "onBeforeRender", onAfterRender: "onAfterRender" }, providers: [provideInstanceRef(NgtAmbientLightProbe)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
143
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtAmbientLightProbe, decorators: [{
144
+ type: Component,
145
+ args: [{
146
+ selector: 'ngt-ambient-light-probe',
147
+ standalone: true,
148
+ template: '<ng-content></ng-content>',
149
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
150
+ providers: [provideInstanceRef(NgtAmbientLightProbe)],
151
+ inputs: [...getInputs$6()],
152
+ }]
153
+ }], ctorParameters: function () { return []; } });
154
+ function getInputs$6() {
155
+ return [
156
+ 'color',
157
+ 'intensity',
158
+ 'sh',
159
+ 'hex',
160
+ 'shadow',
161
+ 'shadowCameraFov',
162
+ 'shadowCameraLeft',
163
+ 'shadowCameraRight',
164
+ 'shadowCameraTop',
165
+ 'shadowCameraBottom',
166
+ 'shadowCameraNear',
167
+ 'shadowCameraFar',
168
+ 'shadowBias',
169
+ 'shadowMapWidth',
170
+ 'shadowMapHeight',
171
+ 'name',
172
+ 'position',
173
+ 'rotation',
174
+ 'quaternion',
175
+ 'scale',
176
+ 'modelViewMatrix',
177
+ 'normalMatrix',
178
+ 'matrix',
179
+ 'matrixWorld',
180
+ 'matrixAutoUpdate',
181
+ 'matrixWorldAutoUpdate',
182
+ 'matrixWorldNeedsUpdate',
183
+ 'layers',
184
+ 'visible',
185
+ 'castShadow',
186
+ 'receiveShadow',
187
+ 'frustumCulled',
188
+ 'renderOrder',
189
+ 'animations',
190
+ 'userData',
191
+ 'customDepthMaterial',
192
+ 'customDistanceMaterial',
193
+ 'onBeforeRender',
194
+ 'onAfterRender',
195
+ ];
196
+ }
197
+
198
+ // GENERATED - AngularThree v1.0.0
199
+ class NgtHemisphereLight extends THREE.HemisphereLight {
200
+ constructor() {
201
+ super(...(injectArgs({ optional: true }) || []));
202
+ return proxify(this);
203
+ }
204
+ }
205
+ NgtHemisphereLight.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtHemisphereLight, deps: [], target: i0.ɵɵFactoryTarget.Component });
206
+ NgtHemisphereLight.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtHemisphereLight, isStandalone: true, selector: "ngt-hemisphere-light", inputs: { skyColor: "skyColor", groundColor: "groundColor", intensity: "intensity", position: "position", hex: "hex", color: "color", shadow: "shadow", shadowCameraFov: "shadowCameraFov", shadowCameraLeft: "shadowCameraLeft", shadowCameraRight: "shadowCameraRight", shadowCameraTop: "shadowCameraTop", shadowCameraBottom: "shadowCameraBottom", shadowCameraNear: "shadowCameraNear", shadowCameraFar: "shadowCameraFar", shadowBias: "shadowBias", shadowMapWidth: "shadowMapWidth", shadowMapHeight: "shadowMapHeight", name: "name", rotation: "rotation", quaternion: "quaternion", scale: "scale", modelViewMatrix: "modelViewMatrix", normalMatrix: "normalMatrix", matrix: "matrix", matrixWorld: "matrixWorld", matrixAutoUpdate: "matrixAutoUpdate", matrixWorldAutoUpdate: "matrixWorldAutoUpdate", matrixWorldNeedsUpdate: "matrixWorldNeedsUpdate", layers: "layers", visible: "visible", castShadow: "castShadow", receiveShadow: "receiveShadow", frustumCulled: "frustumCulled", renderOrder: "renderOrder", animations: "animations", userData: "userData", customDepthMaterial: "customDepthMaterial", customDistanceMaterial: "customDistanceMaterial", onBeforeRender: "onBeforeRender", onAfterRender: "onAfterRender" }, providers: [provideInstanceRef(NgtHemisphereLight)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
207
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtHemisphereLight, decorators: [{
208
+ type: Component,
209
+ args: [{
210
+ selector: 'ngt-hemisphere-light',
211
+ standalone: true,
212
+ template: '<ng-content></ng-content>',
213
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
214
+ providers: [provideInstanceRef(NgtHemisphereLight)],
215
+ inputs: [...getInputs$5()],
216
+ }]
217
+ }], ctorParameters: function () { return []; } });
218
+ function getInputs$5() {
219
+ return [
220
+ 'skyColor',
221
+ 'groundColor',
222
+ 'intensity',
223
+ 'position',
224
+ 'hex',
225
+ 'color',
226
+ 'shadow',
227
+ 'shadowCameraFov',
228
+ 'shadowCameraLeft',
229
+ 'shadowCameraRight',
230
+ 'shadowCameraTop',
231
+ 'shadowCameraBottom',
232
+ 'shadowCameraNear',
233
+ 'shadowCameraFar',
234
+ 'shadowBias',
235
+ 'shadowMapWidth',
236
+ 'shadowMapHeight',
237
+ 'name',
238
+ 'rotation',
239
+ 'quaternion',
240
+ 'scale',
241
+ 'modelViewMatrix',
242
+ 'normalMatrix',
243
+ 'matrix',
244
+ 'matrixWorld',
245
+ 'matrixAutoUpdate',
246
+ 'matrixWorldAutoUpdate',
247
+ 'matrixWorldNeedsUpdate',
248
+ 'layers',
249
+ 'visible',
250
+ 'castShadow',
251
+ 'receiveShadow',
252
+ 'frustumCulled',
253
+ 'renderOrder',
254
+ 'animations',
255
+ 'userData',
256
+ 'customDepthMaterial',
257
+ 'customDistanceMaterial',
258
+ 'onBeforeRender',
259
+ 'onAfterRender',
260
+ ];
261
+ }
262
+
263
+ // GENERATED - AngularThree v1.0.0
264
+ class NgtHemisphereLightProbe extends THREE.HemisphereLightProbe {
265
+ constructor() {
266
+ super(...(injectArgs({ optional: true }) || []));
267
+ return proxify(this);
268
+ }
269
+ }
270
+ NgtHemisphereLightProbe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtHemisphereLightProbe, deps: [], target: i0.ɵɵFactoryTarget.Component });
271
+ NgtHemisphereLightProbe.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtHemisphereLightProbe, isStandalone: true, selector: "ngt-hemisphere-light-probe", inputs: { skyColor: "skyColor", groundColor: "groundColor", intensity: "intensity", sh: "sh", hex: "hex", color: "color", shadow: "shadow", shadowCameraFov: "shadowCameraFov", shadowCameraLeft: "shadowCameraLeft", shadowCameraRight: "shadowCameraRight", shadowCameraTop: "shadowCameraTop", shadowCameraBottom: "shadowCameraBottom", shadowCameraNear: "shadowCameraNear", shadowCameraFar: "shadowCameraFar", shadowBias: "shadowBias", shadowMapWidth: "shadowMapWidth", shadowMapHeight: "shadowMapHeight", name: "name", position: "position", rotation: "rotation", quaternion: "quaternion", scale: "scale", modelViewMatrix: "modelViewMatrix", normalMatrix: "normalMatrix", matrix: "matrix", matrixWorld: "matrixWorld", matrixAutoUpdate: "matrixAutoUpdate", matrixWorldAutoUpdate: "matrixWorldAutoUpdate", matrixWorldNeedsUpdate: "matrixWorldNeedsUpdate", layers: "layers", visible: "visible", castShadow: "castShadow", receiveShadow: "receiveShadow", frustumCulled: "frustumCulled", renderOrder: "renderOrder", animations: "animations", userData: "userData", customDepthMaterial: "customDepthMaterial", customDistanceMaterial: "customDistanceMaterial", onBeforeRender: "onBeforeRender", onAfterRender: "onAfterRender" }, providers: [provideInstanceRef(NgtHemisphereLightProbe)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
272
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtHemisphereLightProbe, decorators: [{
273
+ type: Component,
274
+ args: [{
275
+ selector: 'ngt-hemisphere-light-probe',
276
+ standalone: true,
277
+ template: '<ng-content></ng-content>',
278
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
279
+ providers: [provideInstanceRef(NgtHemisphereLightProbe)],
280
+ inputs: [...getInputs$4()],
281
+ }]
282
+ }], ctorParameters: function () { return []; } });
283
+ function getInputs$4() {
284
+ return [
285
+ 'skyColor',
286
+ 'groundColor',
287
+ 'intensity',
288
+ 'sh',
289
+ 'hex',
290
+ 'color',
291
+ 'shadow',
292
+ 'shadowCameraFov',
293
+ 'shadowCameraLeft',
294
+ 'shadowCameraRight',
295
+ 'shadowCameraTop',
296
+ 'shadowCameraBottom',
297
+ 'shadowCameraNear',
298
+ 'shadowCameraFar',
299
+ 'shadowBias',
300
+ 'shadowMapWidth',
301
+ 'shadowMapHeight',
302
+ 'name',
303
+ 'position',
304
+ 'rotation',
305
+ 'quaternion',
306
+ 'scale',
307
+ 'modelViewMatrix',
308
+ 'normalMatrix',
309
+ 'matrix',
310
+ 'matrixWorld',
311
+ 'matrixAutoUpdate',
312
+ 'matrixWorldAutoUpdate',
313
+ 'matrixWorldNeedsUpdate',
314
+ 'layers',
315
+ 'visible',
316
+ 'castShadow',
317
+ 'receiveShadow',
318
+ 'frustumCulled',
319
+ 'renderOrder',
320
+ 'animations',
321
+ 'userData',
322
+ 'customDepthMaterial',
323
+ 'customDistanceMaterial',
324
+ 'onBeforeRender',
325
+ 'onAfterRender',
326
+ ];
327
+ }
328
+
329
+ // GENERATED - AngularThree v1.0.0
330
+ class NgtDirectionalLight extends THREE.DirectionalLight {
331
+ constructor() {
332
+ super(...(injectArgs({ optional: true }) || []));
333
+ return proxify(this);
334
+ }
335
+ }
336
+ NgtDirectionalLight.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtDirectionalLight, deps: [], target: i0.ɵɵFactoryTarget.Component });
337
+ NgtDirectionalLight.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtDirectionalLight, isStandalone: true, selector: "ngt-directional-light", inputs: { color: "color", intensity: "intensity", position: "position", target: "target", shadow: "shadow", hex: "hex", shadowCameraFov: "shadowCameraFov", shadowCameraLeft: "shadowCameraLeft", shadowCameraRight: "shadowCameraRight", shadowCameraTop: "shadowCameraTop", shadowCameraBottom: "shadowCameraBottom", shadowCameraNear: "shadowCameraNear", shadowCameraFar: "shadowCameraFar", shadowBias: "shadowBias", shadowMapWidth: "shadowMapWidth", shadowMapHeight: "shadowMapHeight", name: "name", rotation: "rotation", quaternion: "quaternion", scale: "scale", modelViewMatrix: "modelViewMatrix", normalMatrix: "normalMatrix", matrix: "matrix", matrixWorld: "matrixWorld", matrixAutoUpdate: "matrixAutoUpdate", matrixWorldAutoUpdate: "matrixWorldAutoUpdate", matrixWorldNeedsUpdate: "matrixWorldNeedsUpdate", layers: "layers", visible: "visible", castShadow: "castShadow", receiveShadow: "receiveShadow", frustumCulled: "frustumCulled", renderOrder: "renderOrder", animations: "animations", userData: "userData", customDepthMaterial: "customDepthMaterial", customDistanceMaterial: "customDistanceMaterial", onBeforeRender: "onBeforeRender", onAfterRender: "onAfterRender" }, providers: [provideInstanceRef(NgtDirectionalLight)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
338
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtDirectionalLight, decorators: [{
339
+ type: Component,
340
+ args: [{
341
+ selector: 'ngt-directional-light',
342
+ standalone: true,
343
+ template: '<ng-content></ng-content>',
344
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
345
+ providers: [provideInstanceRef(NgtDirectionalLight)],
346
+ inputs: [...getInputs$3()],
347
+ }]
348
+ }], ctorParameters: function () { return []; } });
349
+ function getInputs$3() {
350
+ return [
351
+ 'color',
352
+ 'intensity',
353
+ 'position',
354
+ 'target',
355
+ 'shadow',
356
+ 'hex',
357
+ 'shadowCameraFov',
358
+ 'shadowCameraLeft',
359
+ 'shadowCameraRight',
360
+ 'shadowCameraTop',
361
+ 'shadowCameraBottom',
362
+ 'shadowCameraNear',
363
+ 'shadowCameraFar',
364
+ 'shadowBias',
365
+ 'shadowMapWidth',
366
+ 'shadowMapHeight',
367
+ 'name',
368
+ 'rotation',
369
+ 'quaternion',
370
+ 'scale',
371
+ 'modelViewMatrix',
372
+ 'normalMatrix',
373
+ 'matrix',
374
+ 'matrixWorld',
375
+ 'matrixAutoUpdate',
376
+ 'matrixWorldAutoUpdate',
377
+ 'matrixWorldNeedsUpdate',
378
+ 'layers',
379
+ 'visible',
380
+ 'castShadow',
381
+ 'receiveShadow',
382
+ 'frustumCulled',
383
+ 'renderOrder',
384
+ 'animations',
385
+ 'userData',
386
+ 'customDepthMaterial',
387
+ 'customDistanceMaterial',
388
+ 'onBeforeRender',
389
+ 'onAfterRender',
390
+ ];
391
+ }
392
+
393
+ // GENERATED - AngularThree v1.0.0
394
+ class NgtPointLight extends THREE.PointLight {
395
+ constructor() {
396
+ super(...(injectArgs({ optional: true }) || []));
397
+ return proxify(this);
398
+ }
399
+ }
400
+ NgtPointLight.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPointLight, deps: [], target: i0.ɵɵFactoryTarget.Component });
401
+ NgtPointLight.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtPointLight, isStandalone: true, selector: "ngt-point-light", inputs: { color: "color", intensity: "intensity", distance: "distance", decay: "decay", shadow: "shadow", power: "power", hex: "hex", shadowCameraFov: "shadowCameraFov", shadowCameraLeft: "shadowCameraLeft", shadowCameraRight: "shadowCameraRight", shadowCameraTop: "shadowCameraTop", shadowCameraBottom: "shadowCameraBottom", shadowCameraNear: "shadowCameraNear", shadowCameraFar: "shadowCameraFar", shadowBias: "shadowBias", shadowMapWidth: "shadowMapWidth", shadowMapHeight: "shadowMapHeight", name: "name", position: "position", rotation: "rotation", quaternion: "quaternion", scale: "scale", modelViewMatrix: "modelViewMatrix", normalMatrix: "normalMatrix", matrix: "matrix", matrixWorld: "matrixWorld", matrixAutoUpdate: "matrixAutoUpdate", matrixWorldAutoUpdate: "matrixWorldAutoUpdate", matrixWorldNeedsUpdate: "matrixWorldNeedsUpdate", layers: "layers", visible: "visible", castShadow: "castShadow", receiveShadow: "receiveShadow", frustumCulled: "frustumCulled", renderOrder: "renderOrder", animations: "animations", userData: "userData", customDepthMaterial: "customDepthMaterial", customDistanceMaterial: "customDistanceMaterial", onBeforeRender: "onBeforeRender", onAfterRender: "onAfterRender" }, providers: [provideInstanceRef(NgtPointLight)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
402
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPointLight, decorators: [{
403
+ type: Component,
404
+ args: [{
405
+ selector: 'ngt-point-light',
406
+ standalone: true,
407
+ template: '<ng-content></ng-content>',
408
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
409
+ providers: [provideInstanceRef(NgtPointLight)],
410
+ inputs: [...getInputs$2()],
411
+ }]
412
+ }], ctorParameters: function () { return []; } });
413
+ function getInputs$2() {
414
+ return [
415
+ 'color',
416
+ 'intensity',
417
+ 'distance',
418
+ 'decay',
419
+ 'shadow',
420
+ 'power',
421
+ 'hex',
422
+ 'shadowCameraFov',
423
+ 'shadowCameraLeft',
424
+ 'shadowCameraRight',
425
+ 'shadowCameraTop',
426
+ 'shadowCameraBottom',
427
+ 'shadowCameraNear',
428
+ 'shadowCameraFar',
429
+ 'shadowBias',
430
+ 'shadowMapWidth',
431
+ 'shadowMapHeight',
432
+ 'name',
433
+ 'position',
434
+ 'rotation',
435
+ 'quaternion',
436
+ 'scale',
437
+ 'modelViewMatrix',
438
+ 'normalMatrix',
439
+ 'matrix',
440
+ 'matrixWorld',
441
+ 'matrixAutoUpdate',
442
+ 'matrixWorldAutoUpdate',
443
+ 'matrixWorldNeedsUpdate',
444
+ 'layers',
445
+ 'visible',
446
+ 'castShadow',
447
+ 'receiveShadow',
448
+ 'frustumCulled',
449
+ 'renderOrder',
450
+ 'animations',
451
+ 'userData',
452
+ 'customDepthMaterial',
453
+ 'customDistanceMaterial',
454
+ 'onBeforeRender',
455
+ 'onAfterRender',
456
+ ];
457
+ }
458
+
459
+ // GENERATED - AngularThree v1.0.0
460
+ class NgtSpotLight extends THREE.SpotLight {
461
+ constructor() {
462
+ super(...(injectArgs({ optional: true }) || []));
463
+ return proxify(this);
464
+ }
465
+ }
466
+ NgtSpotLight.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtSpotLight, deps: [], target: i0.ɵɵFactoryTarget.Component });
467
+ NgtSpotLight.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtSpotLight, isStandalone: true, selector: "ngt-spot-light", inputs: { color: "color", intensity: "intensity", distance: "distance", angle: "angle", penumbra: "penumbra", decay: "decay", position: "position", target: "target", shadow: "shadow", power: "power", hex: "hex", shadowCameraFov: "shadowCameraFov", shadowCameraLeft: "shadowCameraLeft", shadowCameraRight: "shadowCameraRight", shadowCameraTop: "shadowCameraTop", shadowCameraBottom: "shadowCameraBottom", shadowCameraNear: "shadowCameraNear", shadowCameraFar: "shadowCameraFar", shadowBias: "shadowBias", shadowMapWidth: "shadowMapWidth", shadowMapHeight: "shadowMapHeight", name: "name", rotation: "rotation", quaternion: "quaternion", scale: "scale", modelViewMatrix: "modelViewMatrix", normalMatrix: "normalMatrix", matrix: "matrix", matrixWorld: "matrixWorld", matrixAutoUpdate: "matrixAutoUpdate", matrixWorldAutoUpdate: "matrixWorldAutoUpdate", matrixWorldNeedsUpdate: "matrixWorldNeedsUpdate", layers: "layers", visible: "visible", castShadow: "castShadow", receiveShadow: "receiveShadow", frustumCulled: "frustumCulled", renderOrder: "renderOrder", animations: "animations", userData: "userData", customDepthMaterial: "customDepthMaterial", customDistanceMaterial: "customDistanceMaterial", onBeforeRender: "onBeforeRender", onAfterRender: "onAfterRender" }, providers: [provideInstanceRef(NgtSpotLight)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
468
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtSpotLight, decorators: [{
469
+ type: Component,
470
+ args: [{
471
+ selector: 'ngt-spot-light',
472
+ standalone: true,
473
+ template: '<ng-content></ng-content>',
474
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
475
+ providers: [provideInstanceRef(NgtSpotLight)],
476
+ inputs: [...getInputs$1()],
477
+ }]
478
+ }], ctorParameters: function () { return []; } });
479
+ function getInputs$1() {
480
+ return [
481
+ 'color',
482
+ 'intensity',
483
+ 'distance',
484
+ 'angle',
485
+ 'penumbra',
486
+ 'decay',
487
+ 'position',
488
+ 'target',
489
+ 'shadow',
490
+ 'power',
491
+ 'hex',
492
+ 'shadowCameraFov',
493
+ 'shadowCameraLeft',
494
+ 'shadowCameraRight',
495
+ 'shadowCameraTop',
496
+ 'shadowCameraBottom',
497
+ 'shadowCameraNear',
498
+ 'shadowCameraFar',
499
+ 'shadowBias',
500
+ 'shadowMapWidth',
501
+ 'shadowMapHeight',
502
+ 'name',
503
+ 'rotation',
504
+ 'quaternion',
505
+ 'scale',
506
+ 'modelViewMatrix',
507
+ 'normalMatrix',
508
+ 'matrix',
509
+ 'matrixWorld',
510
+ 'matrixAutoUpdate',
511
+ 'matrixWorldAutoUpdate',
512
+ 'matrixWorldNeedsUpdate',
513
+ 'layers',
514
+ 'visible',
515
+ 'castShadow',
516
+ 'receiveShadow',
517
+ 'frustumCulled',
518
+ 'renderOrder',
519
+ 'animations',
520
+ 'userData',
521
+ 'customDepthMaterial',
522
+ 'customDistanceMaterial',
523
+ 'onBeforeRender',
524
+ 'onAfterRender',
525
+ ];
526
+ }
527
+
528
+ // GENERATED - AngularThree v1.0.0
529
+ class NgtRectAreaLight extends THREE.RectAreaLight {
530
+ constructor() {
531
+ super(...(injectArgs({ optional: true }) || []));
532
+ return proxify(this);
533
+ }
534
+ }
535
+ NgtRectAreaLight.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtRectAreaLight, deps: [], target: i0.ɵɵFactoryTarget.Component });
536
+ NgtRectAreaLight.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtRectAreaLight, isStandalone: true, selector: "ngt-rect-area-light", inputs: { color: "color", intensity: "intensity", width: "width", height: "height", power: "power", hex: "hex", shadow: "shadow", shadowCameraFov: "shadowCameraFov", shadowCameraLeft: "shadowCameraLeft", shadowCameraRight: "shadowCameraRight", shadowCameraTop: "shadowCameraTop", shadowCameraBottom: "shadowCameraBottom", shadowCameraNear: "shadowCameraNear", shadowCameraFar: "shadowCameraFar", shadowBias: "shadowBias", shadowMapWidth: "shadowMapWidth", shadowMapHeight: "shadowMapHeight", name: "name", position: "position", rotation: "rotation", quaternion: "quaternion", scale: "scale", modelViewMatrix: "modelViewMatrix", normalMatrix: "normalMatrix", matrix: "matrix", matrixWorld: "matrixWorld", matrixAutoUpdate: "matrixAutoUpdate", matrixWorldAutoUpdate: "matrixWorldAutoUpdate", matrixWorldNeedsUpdate: "matrixWorldNeedsUpdate", layers: "layers", visible: "visible", castShadow: "castShadow", receiveShadow: "receiveShadow", frustumCulled: "frustumCulled", renderOrder: "renderOrder", animations: "animations", userData: "userData", customDepthMaterial: "customDepthMaterial", customDistanceMaterial: "customDistanceMaterial", onBeforeRender: "onBeforeRender", onAfterRender: "onAfterRender" }, providers: [provideInstanceRef(NgtRectAreaLight)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
537
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtRectAreaLight, decorators: [{
538
+ type: Component,
539
+ args: [{
540
+ selector: 'ngt-rect-area-light',
541
+ standalone: true,
542
+ template: '<ng-content></ng-content>',
543
+ hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS, outputs: NGT_INSTANCE_OUTPUTS }],
544
+ providers: [provideInstanceRef(NgtRectAreaLight)],
545
+ inputs: [...getInputs()],
546
+ }]
547
+ }], ctorParameters: function () { return []; } });
548
+ function getInputs() {
549
+ return [
550
+ 'color',
551
+ 'intensity',
552
+ 'width',
553
+ 'height',
554
+ 'power',
555
+ 'hex',
556
+ 'shadow',
557
+ 'shadowCameraFov',
558
+ 'shadowCameraLeft',
559
+ 'shadowCameraRight',
560
+ 'shadowCameraTop',
561
+ 'shadowCameraBottom',
562
+ 'shadowCameraNear',
563
+ 'shadowCameraFar',
564
+ 'shadowBias',
565
+ 'shadowMapWidth',
566
+ 'shadowMapHeight',
567
+ 'name',
568
+ 'position',
569
+ 'rotation',
570
+ 'quaternion',
571
+ 'scale',
572
+ 'modelViewMatrix',
573
+ 'normalMatrix',
574
+ 'matrix',
575
+ 'matrixWorld',
576
+ 'matrixAutoUpdate',
577
+ 'matrixWorldAutoUpdate',
578
+ 'matrixWorldNeedsUpdate',
579
+ 'layers',
580
+ 'visible',
581
+ 'castShadow',
582
+ 'receiveShadow',
583
+ 'frustumCulled',
584
+ 'renderOrder',
585
+ 'animations',
586
+ 'userData',
587
+ 'customDepthMaterial',
588
+ 'customDistanceMaterial',
589
+ 'onBeforeRender',
590
+ 'onAfterRender',
591
+ ];
592
+ }
593
+
594
+ // GENERATED - AngularThree v1.0.0
595
+
596
+ /**
597
+ * Generated bundle index. Do not edit.
598
+ */
599
+
600
+ export { NgtAmbientLight, NgtAmbientLightProbe, NgtDirectionalLight, NgtHemisphereLight, NgtHemisphereLightProbe, NgtLightProbe, NgtPointLight, NgtRectAreaLight, NgtSpotLight };
601
+ //# sourceMappingURL=angular-three-lights.mjs.map
602
+ //# sourceMappingURL=angular-three-lights.mjs.map