angular-three 0.0.7 → 1.0.0-beta.0

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 (441) hide show
  1. package/esm2020/angular-three.mjs +1 -1
  2. package/esm2020/index.mjs +2 -35
  3. package/esm2020/lib/canvas.mjs +141 -128
  4. package/esm2020/lib/di/catalogue.mjs +7 -0
  5. package/esm2020/lib/directives/args.mjs +37 -17
  6. package/esm2020/lib/directives/repeat.mjs +5 -8
  7. package/esm2020/lib/events.mjs +341 -52
  8. package/esm2020/lib/loader.mjs +55 -0
  9. package/esm2020/lib/loop.mjs +137 -0
  10. package/esm2020/lib/renderer/di.mjs +3 -0
  11. package/esm2020/lib/renderer/enums.mjs +2 -0
  12. package/esm2020/lib/renderer/provider.mjs +19 -0
  13. package/esm2020/lib/renderer/renderer.mjs +293 -0
  14. package/esm2020/lib/renderer/state.mjs +350 -0
  15. package/esm2020/lib/renderer/utils.mjs +177 -0
  16. package/esm2020/lib/stores/rx-store.mjs +99 -0
  17. package/esm2020/lib/stores/store.mjs +190 -239
  18. package/esm2020/lib/types.mjs +1 -1
  19. package/esm2020/lib/utils/apply-props.mjs +37 -80
  20. package/esm2020/lib/utils/attach.mjs +29 -0
  21. package/esm2020/lib/utils/instance.mjs +43 -28
  22. package/esm2020/lib/utils/is.mjs +7 -11
  23. package/esm2020/lib/utils/make.mjs +30 -10
  24. package/esm2020/lib/utils/update.mjs +37 -0
  25. package/esm2020/lib/web/events.mjs +68 -0
  26. package/fesm2015/angular-three.mjs +2053 -2046
  27. package/fesm2015/angular-three.mjs.map +1 -1
  28. package/fesm2020/angular-three.mjs +2003 -1990
  29. package/fesm2020/angular-three.mjs.map +1 -1
  30. package/index.d.ts +1 -34
  31. package/lib/canvas.d.ts +29 -28
  32. package/lib/di/catalogue.d.ts +3 -0
  33. package/lib/directives/args.d.ts +8 -12
  34. package/lib/events.d.ts +7 -2
  35. package/lib/loader.d.ts +15 -0
  36. package/lib/{utils/loop.d.ts → loop.d.ts} +7 -6
  37. package/lib/renderer/di.d.ts +2 -0
  38. package/lib/renderer/enums.d.ts +25 -0
  39. package/lib/renderer/provider.d.ts +25 -0
  40. package/lib/renderer/renderer.d.ts +49 -0
  41. package/lib/renderer/state.d.ts +59 -0
  42. package/lib/renderer/utils.d.ts +20 -0
  43. package/lib/stores/rx-store.d.ts +17 -0
  44. package/lib/stores/store.d.ts +6 -23
  45. package/lib/types.d.ts +182 -191
  46. package/lib/utils/apply-props.d.ts +2 -6
  47. package/lib/utils/attach.d.ts +3 -0
  48. package/lib/utils/instance.d.ts +3 -3
  49. package/lib/utils/is.d.ts +6 -10
  50. package/lib/utils/make.d.ts +5 -2
  51. package/lib/utils/update.d.ts +4 -0
  52. package/lib/web/events.d.ts +4 -0
  53. package/package.json +30 -99
  54. package/attributes/README.md +0 -3
  55. package/attributes/index.d.ts +0 -22
  56. package/attributes/lib/buffer-attribute/buffer-attribute.d.ts +0 -8
  57. package/attributes/lib/color-attribute/color-attribute.d.ts +0 -8
  58. package/attributes/lib/common.d.ts +0 -1
  59. package/attributes/lib/float16-buffer-attribute/float16-buffer-attribute.d.ts +0 -8
  60. package/attributes/lib/float32-buffer-attribute/float32-buffer-attribute.d.ts +0 -8
  61. package/attributes/lib/float64-buffer-attribute/float64-buffer-attribute.d.ts +0 -8
  62. package/attributes/lib/fog-attribute/fog-attribute.d.ts +0 -8
  63. package/attributes/lib/fog-exp2-attribute/fog-exp2-attribute.d.ts +0 -8
  64. package/attributes/lib/instanced-buffer-attribute/instanced-buffer-attribute.d.ts +0 -8
  65. package/attributes/lib/int16-buffer-attribute/int16-buffer-attribute.d.ts +0 -8
  66. package/attributes/lib/int32-buffer-attribute/int32-buffer-attribute.d.ts +0 -8
  67. package/attributes/lib/int8-buffer-attribute/int8-buffer-attribute.d.ts +0 -8
  68. package/attributes/lib/interleaved-buffer-attribute/interleaved-buffer-attribute.d.ts +0 -8
  69. package/attributes/lib/matrix3-attribute/matrix3-attribute.d.ts +0 -8
  70. package/attributes/lib/matrix4-attribute/matrix4-attribute.d.ts +0 -8
  71. package/attributes/lib/uint16-buffer-attribute/uint16-buffer-attribute.d.ts +0 -8
  72. package/attributes/lib/uint32-buffer-attribute/uint32-buffer-attribute.d.ts +0 -8
  73. package/attributes/lib/uint8-buffer-attribute/uint8-buffer-attribute.d.ts +0 -8
  74. package/attributes/lib/uint8-clamped-buffer-attribute/uint8-clamped-buffer-attribute.d.ts +0 -8
  75. package/attributes/lib/value-attribute/value-attribute.d.ts +0 -8
  76. package/attributes/lib/vector2-attribute/vector2-attribute.d.ts +0 -8
  77. package/attributes/lib/vector3-attribute/vector3-attribute.d.ts +0 -8
  78. package/attributes/lib/vector4-attribute/vector4-attribute.d.ts +0 -8
  79. package/audios/README.md +0 -3
  80. package/audios/index.d.ts +0 -3
  81. package/audios/lib/audio/audio.d.ts +0 -49
  82. package/audios/lib/audio-listener/audio-listener.d.ts +0 -35
  83. package/audios/lib/common.d.ts +0 -3
  84. package/audios/lib/positional-audio/positional-audio.d.ts +0 -49
  85. package/cameras/README.md +0 -3
  86. package/cameras/index.d.ts +0 -5
  87. package/cameras/lib/array-camera/array-camera.d.ts +0 -56
  88. package/cameras/lib/common.d.ts +0 -3
  89. package/cameras/lib/cube-camera/cube-camera.d.ts +0 -36
  90. package/cameras/lib/orthographic-camera/orthographic-camera.d.ts +0 -54
  91. package/cameras/lib/perspective-camera/perspective-camera.d.ts +0 -55
  92. package/cameras/lib/stereo-camera/stereo-camera.d.ts +0 -42
  93. package/esm2020/attributes/angular-three-attributes.mjs +0 -5
  94. package/esm2020/attributes/index.mjs +0 -24
  95. package/esm2020/attributes/lib/buffer-attribute/buffer-attribute.mjs +0 -26
  96. package/esm2020/attributes/lib/color-attribute/color-attribute.mjs +0 -26
  97. package/esm2020/attributes/lib/common.mjs +0 -13
  98. package/esm2020/attributes/lib/float16-buffer-attribute/float16-buffer-attribute.mjs +0 -26
  99. package/esm2020/attributes/lib/float32-buffer-attribute/float32-buffer-attribute.mjs +0 -26
  100. package/esm2020/attributes/lib/float64-buffer-attribute/float64-buffer-attribute.mjs +0 -26
  101. package/esm2020/attributes/lib/fog-attribute/fog-attribute.mjs +0 -26
  102. package/esm2020/attributes/lib/fog-exp2-attribute/fog-exp2-attribute.mjs +0 -26
  103. package/esm2020/attributes/lib/instanced-buffer-attribute/instanced-buffer-attribute.mjs +0 -26
  104. package/esm2020/attributes/lib/int16-buffer-attribute/int16-buffer-attribute.mjs +0 -26
  105. package/esm2020/attributes/lib/int32-buffer-attribute/int32-buffer-attribute.mjs +0 -26
  106. package/esm2020/attributes/lib/int8-buffer-attribute/int8-buffer-attribute.mjs +0 -26
  107. package/esm2020/attributes/lib/interleaved-buffer-attribute/interleaved-buffer-attribute.mjs +0 -30
  108. package/esm2020/attributes/lib/matrix3-attribute/matrix3-attribute.mjs +0 -26
  109. package/esm2020/attributes/lib/matrix4-attribute/matrix4-attribute.mjs +0 -26
  110. package/esm2020/attributes/lib/uint16-buffer-attribute/uint16-buffer-attribute.mjs +0 -26
  111. package/esm2020/attributes/lib/uint32-buffer-attribute/uint32-buffer-attribute.mjs +0 -26
  112. package/esm2020/attributes/lib/uint8-buffer-attribute/uint8-buffer-attribute.mjs +0 -26
  113. package/esm2020/attributes/lib/uint8-clamped-buffer-attribute/uint8-clamped-buffer-attribute.mjs +0 -26
  114. package/esm2020/attributes/lib/value-attribute/value-attribute.mjs +0 -28
  115. package/esm2020/attributes/lib/vector2-attribute/vector2-attribute.mjs +0 -26
  116. package/esm2020/attributes/lib/vector3-attribute/vector3-attribute.mjs +0 -26
  117. package/esm2020/attributes/lib/vector4-attribute/vector4-attribute.mjs +0 -26
  118. package/esm2020/audios/angular-three-audios.mjs +0 -5
  119. package/esm2020/audios/index.mjs +0 -5
  120. package/esm2020/audios/lib/audio/audio.mjs +0 -45
  121. package/esm2020/audios/lib/audio-listener/audio-listener.mjs +0 -38
  122. package/esm2020/audios/lib/common.mjs +0 -54
  123. package/esm2020/audios/lib/positional-audio/positional-audio.mjs +0 -45
  124. package/esm2020/cameras/angular-three-cameras.mjs +0 -5
  125. package/esm2020/cameras/index.mjs +0 -7
  126. package/esm2020/cameras/lib/array-camera/array-camera.mjs +0 -44
  127. package/esm2020/cameras/lib/common.mjs +0 -54
  128. package/esm2020/cameras/lib/cube-camera/cube-camera.mjs +0 -30
  129. package/esm2020/cameras/lib/orthographic-camera/orthographic-camera.mjs +0 -42
  130. package/esm2020/cameras/lib/perspective-camera/perspective-camera.mjs +0 -43
  131. package/esm2020/cameras/lib/stereo-camera/stereo-camera.mjs +0 -38
  132. package/esm2020/geometries/angular-three-geometries.mjs +0 -5
  133. package/esm2020/geometries/index.mjs +0 -25
  134. package/esm2020/geometries/lib/box-geometry/box-geometry.mjs +0 -26
  135. package/esm2020/geometries/lib/buffer-geometry/buffer-geometry.mjs +0 -26
  136. package/esm2020/geometries/lib/capsule-geometry/capsule-geometry.mjs +0 -26
  137. package/esm2020/geometries/lib/circle-geometry/circle-geometry.mjs +0 -26
  138. package/esm2020/geometries/lib/common.mjs +0 -13
  139. package/esm2020/geometries/lib/cone-geometry/cone-geometry.mjs +0 -26
  140. package/esm2020/geometries/lib/cylinder-geometry/cylinder-geometry.mjs +0 -26
  141. package/esm2020/geometries/lib/dodecahedron-geometry/dodecahedron-geometry.mjs +0 -26
  142. package/esm2020/geometries/lib/edges-geometry/edges-geometry.mjs +0 -26
  143. package/esm2020/geometries/lib/extrude-geometry/extrude-geometry.mjs +0 -26
  144. package/esm2020/geometries/lib/icosahedron-geometry/icosahedron-geometry.mjs +0 -26
  145. package/esm2020/geometries/lib/instanced-buffer-geometry/instanced-buffer-geometry.mjs +0 -26
  146. package/esm2020/geometries/lib/lathe-geometry/lathe-geometry.mjs +0 -26
  147. package/esm2020/geometries/lib/octahedron-geometry/octahedron-geometry.mjs +0 -26
  148. package/esm2020/geometries/lib/plane-geometry/plane-geometry.mjs +0 -26
  149. package/esm2020/geometries/lib/polyhedron-geometry/polyhedron-geometry.mjs +0 -26
  150. package/esm2020/geometries/lib/ring-geometry/ring-geometry.mjs +0 -26
  151. package/esm2020/geometries/lib/shape-geometry/shape-geometry.mjs +0 -26
  152. package/esm2020/geometries/lib/sphere-geometry/sphere-geometry.mjs +0 -26
  153. package/esm2020/geometries/lib/tetrahedron-geometry/tetrahedron-geometry.mjs +0 -26
  154. package/esm2020/geometries/lib/torus-geometry/torus-geometry.mjs +0 -26
  155. package/esm2020/geometries/lib/torus-knot-geometry/torus-knot-geometry.mjs +0 -26
  156. package/esm2020/geometries/lib/tube-geometry/tube-geometry.mjs +0 -26
  157. package/esm2020/geometries/lib/wireframe-geometry/wireframe-geometry.mjs +0 -26
  158. package/esm2020/helpers/angular-three-helpers.mjs +0 -5
  159. package/esm2020/helpers/index.mjs +0 -15
  160. package/esm2020/helpers/lib/arrow-helper/arrow-helper.mjs +0 -26
  161. package/esm2020/helpers/lib/axes-helper/axes-helper.mjs +0 -26
  162. package/esm2020/helpers/lib/box-helper/box-helper.mjs +0 -36
  163. package/esm2020/helpers/lib/box3-helper/box3-helper.mjs +0 -36
  164. package/esm2020/helpers/lib/camera-helper/camera-helper.mjs +0 -36
  165. package/esm2020/helpers/lib/common.mjs +0 -13
  166. package/esm2020/helpers/lib/directional-light-helper/directional-light-helper.mjs +0 -36
  167. package/esm2020/helpers/lib/grid-helper/grid-helper.mjs +0 -26
  168. package/esm2020/helpers/lib/hemisphere-light-helper/hemisphere-light-helper.mjs +0 -36
  169. package/esm2020/helpers/lib/plane-helper/plane-helper.mjs +0 -36
  170. package/esm2020/helpers/lib/point-light-helper/point-light-helper.mjs +0 -36
  171. package/esm2020/helpers/lib/polar-grid-helper/polar-grid-helper.mjs +0 -26
  172. package/esm2020/helpers/lib/skeleton-helper/skeleton-helper.mjs +0 -36
  173. package/esm2020/helpers/lib/spot-light-helper/spot-light-helper.mjs +0 -36
  174. package/esm2020/lib/di/resize.mjs +0 -19
  175. package/esm2020/lib/di/window.mjs +0 -13
  176. package/esm2020/lib/directives/cursor.mjs +0 -35
  177. package/esm2020/lib/instance.mjs +0 -368
  178. package/esm2020/lib/pipes/math.mjs +0 -15
  179. package/esm2020/lib/pipes/pi.mjs +0 -14
  180. package/esm2020/lib/pipes/radian.mjs +0 -14
  181. package/esm2020/lib/pipes/side.mjs +0 -22
  182. package/esm2020/lib/ref.mjs +0 -15
  183. package/esm2020/lib/services/loader.mjs +0 -45
  184. package/esm2020/lib/services/resize.mjs +0 -127
  185. package/esm2020/lib/stores/component-store.mjs +0 -137
  186. package/esm2020/lib/utils/build-graph.mjs +0 -15
  187. package/esm2020/lib/utils/camera.mjs +0 -28
  188. package/esm2020/lib/utils/capitalize.mjs +0 -4
  189. package/esm2020/lib/utils/check-update.mjs +0 -22
  190. package/esm2020/lib/utils/events.mjs +0 -353
  191. package/esm2020/lib/utils/get-instance-local-state.mjs +0 -6
  192. package/esm2020/lib/utils/inject.mjs +0 -18
  193. package/esm2020/lib/utils/loop.mjs +0 -139
  194. package/esm2020/lib/utils/mutate.mjs +0 -24
  195. package/esm2020/lib/utils/proxy.mjs +0 -99
  196. package/esm2020/lib/utils/renderer.mjs +0 -15
  197. package/esm2020/lights/angular-three-lights.mjs +0 -5
  198. package/esm2020/lights/index.mjs +0 -11
  199. package/esm2020/lights/lib/ambient-light/ambient-light.mjs +0 -30
  200. package/esm2020/lights/lib/ambient-light-probe/ambient-light-probe.mjs +0 -30
  201. package/esm2020/lights/lib/common.mjs +0 -54
  202. package/esm2020/lights/lib/directional-light/directional-light.mjs +0 -30
  203. package/esm2020/lights/lib/hemisphere-light/hemisphere-light.mjs +0 -30
  204. package/esm2020/lights/lib/hemisphere-light-probe/hemisphere-light-probe.mjs +0 -30
  205. package/esm2020/lights/lib/light-probe/light-probe.mjs +0 -30
  206. package/esm2020/lights/lib/point-light/point-light.mjs +0 -30
  207. package/esm2020/lights/lib/rect-area-light/rect-area-light.mjs +0 -30
  208. package/esm2020/lights/lib/spot-light/spot-light.mjs +0 -42
  209. package/esm2020/materials/angular-three-materials.mjs +0 -5
  210. package/esm2020/materials/index.mjs +0 -19
  211. package/esm2020/materials/lib/common.mjs +0 -13
  212. package/esm2020/materials/lib/line-basic-material/line-basic-material.mjs +0 -77
  213. package/esm2020/materials/lib/line-dashed-material/line-dashed-material.mjs +0 -80
  214. package/esm2020/materials/lib/mesh-basic-material/mesh-basic-material.mjs +0 -89
  215. package/esm2020/materials/lib/mesh-depth-material/mesh-depth-material.mjs +0 -80
  216. package/esm2020/materials/lib/mesh-distance-material/mesh-distance-material.mjs +0 -80
  217. package/esm2020/materials/lib/mesh-lambert-material/mesh-lambert-material.mjs +0 -100
  218. package/esm2020/materials/lib/mesh-matcap-material/mesh-matcap-material.mjs +0 -86
  219. package/esm2020/materials/lib/mesh-normal-material/mesh-normal-material.mjs +0 -83
  220. package/esm2020/materials/lib/mesh-phong-material/mesh-phong-material.mjs +0 -103
  221. package/esm2020/materials/lib/mesh-physical-material/mesh-physical-material.mjs +0 -119
  222. package/esm2020/materials/lib/mesh-standard-material/mesh-standard-material.mjs +0 -100
  223. package/esm2020/materials/lib/mesh-toon-material/mesh-toon-material.mjs +0 -96
  224. package/esm2020/materials/lib/points-material/points-material.mjs +0 -78
  225. package/esm2020/materials/lib/raw-shader-material/raw-shader-material.mjs +0 -83
  226. package/esm2020/materials/lib/shader-material/shader-material.mjs +0 -83
  227. package/esm2020/materials/lib/shadow-material/shadow-material.mjs +0 -74
  228. package/esm2020/materials/lib/sprite-material/sprite-material.mjs +0 -78
  229. package/esm2020/objects/angular-three-objects.mjs +0 -5
  230. package/esm2020/objects/index.mjs +0 -14
  231. package/esm2020/objects/lib/bone/bone.mjs +0 -27
  232. package/esm2020/objects/lib/common.mjs +0 -54
  233. package/esm2020/objects/lib/group/group.mjs +0 -27
  234. package/esm2020/objects/lib/instanced-mesh/instanced-mesh.mjs +0 -40
  235. package/esm2020/objects/lib/line/line.mjs +0 -30
  236. package/esm2020/objects/lib/line-loop/line-loop.mjs +0 -30
  237. package/esm2020/objects/lib/line-segments/line-segments.mjs +0 -30
  238. package/esm2020/objects/lib/lod/lod.mjs +0 -30
  239. package/esm2020/objects/lib/mesh/mesh.mjs +0 -30
  240. package/esm2020/objects/lib/points/points.mjs +0 -30
  241. package/esm2020/objects/lib/skeleton/skeleton.mjs +0 -41
  242. package/esm2020/objects/lib/skinned-mesh/skinned-mesh.mjs +0 -39
  243. package/esm2020/objects/lib/sprite/sprite.mjs +0 -30
  244. package/esm2020/primitives/angular-three-primitives.mjs +0 -5
  245. package/esm2020/primitives/index.mjs +0 -3
  246. package/esm2020/primitives/lib/common.mjs +0 -54
  247. package/esm2020/primitives/lib/object-primitive/object-primitive.mjs +0 -27
  248. package/esm2020/primitives/lib/primitive/primitive.mjs +0 -38
  249. package/esm2020/stats/angular-three-stats.mjs +0 -5
  250. package/esm2020/stats/index.mjs +0 -2
  251. package/esm2020/stats/lib/stats/stats.mjs +0 -54
  252. package/esm2020/textures/angular-three-textures.mjs +0 -5
  253. package/esm2020/textures/index.mjs +0 -12
  254. package/esm2020/textures/lib/canvas-texture/canvas-texture.mjs +0 -26
  255. package/esm2020/textures/lib/common.mjs +0 -13
  256. package/esm2020/textures/lib/compressed-array-texture/compressed-array-texture.mjs +0 -26
  257. package/esm2020/textures/lib/compressed-texture/compressed-texture.mjs +0 -26
  258. package/esm2020/textures/lib/cube-texture/cube-texture.mjs +0 -26
  259. package/esm2020/textures/lib/data-array-texture/data-array-texture.mjs +0 -26
  260. package/esm2020/textures/lib/data-texture/data-texture.mjs +0 -26
  261. package/esm2020/textures/lib/data3-dtexture/data3-dtexture.mjs +0 -26
  262. package/esm2020/textures/lib/depth-texture/depth-texture.mjs +0 -26
  263. package/esm2020/textures/lib/framebuffer-texture/framebuffer-texture.mjs +0 -26
  264. package/esm2020/textures/lib/video-texture/video-texture.mjs +0 -26
  265. package/fesm2015/angular-three-attributes.mjs +0 -475
  266. package/fesm2015/angular-three-attributes.mjs.map +0 -1
  267. package/fesm2015/angular-three-audios.mjs +0 -179
  268. package/fesm2015/angular-three-audios.mjs.map +0 -1
  269. package/fesm2015/angular-three-cameras.mjs +0 -236
  270. package/fesm2015/angular-three-cameras.mjs.map +0 -1
  271. package/fesm2015/angular-three-geometries.mjs +0 -488
  272. package/fesm2015/angular-three-geometries.mjs.map +0 -1
  273. package/fesm2015/angular-three-helpers.mjs +0 -378
  274. package/fesm2015/angular-three-helpers.mjs.map +0 -1
  275. package/fesm2015/angular-three-lights.mjs +0 -297
  276. package/fesm2015/angular-three-lights.mjs.map +0 -1
  277. package/fesm2015/angular-three-materials.mjs +0 -1415
  278. package/fesm2015/angular-three-materials.mjs.map +0 -1
  279. package/fesm2015/angular-three-objects.mjs +0 -381
  280. package/fesm2015/angular-three-objects.mjs.map +0 -1
  281. package/fesm2015/angular-three-primitives.mjs +0 -120
  282. package/fesm2015/angular-three-primitives.mjs.map +0 -1
  283. package/fesm2015/angular-three-stats.mjs +0 -62
  284. package/fesm2015/angular-three-stats.mjs.map +0 -1
  285. package/fesm2015/angular-three-textures.mjs +0 -228
  286. package/fesm2015/angular-three-textures.mjs.map +0 -1
  287. package/fesm2020/angular-three-attributes.mjs +0 -475
  288. package/fesm2020/angular-three-attributes.mjs.map +0 -1
  289. package/fesm2020/angular-three-audios.mjs +0 -179
  290. package/fesm2020/angular-three-audios.mjs.map +0 -1
  291. package/fesm2020/angular-three-cameras.mjs +0 -236
  292. package/fesm2020/angular-three-cameras.mjs.map +0 -1
  293. package/fesm2020/angular-three-geometries.mjs +0 -488
  294. package/fesm2020/angular-three-geometries.mjs.map +0 -1
  295. package/fesm2020/angular-three-helpers.mjs +0 -378
  296. package/fesm2020/angular-three-helpers.mjs.map +0 -1
  297. package/fesm2020/angular-three-lights.mjs +0 -297
  298. package/fesm2020/angular-three-lights.mjs.map +0 -1
  299. package/fesm2020/angular-three-materials.mjs +0 -1415
  300. package/fesm2020/angular-three-materials.mjs.map +0 -1
  301. package/fesm2020/angular-three-objects.mjs +0 -381
  302. package/fesm2020/angular-three-objects.mjs.map +0 -1
  303. package/fesm2020/angular-three-primitives.mjs +0 -120
  304. package/fesm2020/angular-three-primitives.mjs.map +0 -1
  305. package/fesm2020/angular-three-stats.mjs +0 -62
  306. package/fesm2020/angular-three-stats.mjs.map +0 -1
  307. package/fesm2020/angular-three-textures.mjs +0 -228
  308. package/fesm2020/angular-three-textures.mjs.map +0 -1
  309. package/geometries/README.md +0 -3
  310. package/geometries/index.d.ts +0 -23
  311. package/geometries/lib/box-geometry/box-geometry.d.ts +0 -8
  312. package/geometries/lib/buffer-geometry/buffer-geometry.d.ts +0 -8
  313. package/geometries/lib/capsule-geometry/capsule-geometry.d.ts +0 -8
  314. package/geometries/lib/circle-geometry/circle-geometry.d.ts +0 -8
  315. package/geometries/lib/common.d.ts +0 -1
  316. package/geometries/lib/cone-geometry/cone-geometry.d.ts +0 -8
  317. package/geometries/lib/cylinder-geometry/cylinder-geometry.d.ts +0 -8
  318. package/geometries/lib/dodecahedron-geometry/dodecahedron-geometry.d.ts +0 -8
  319. package/geometries/lib/edges-geometry/edges-geometry.d.ts +0 -8
  320. package/geometries/lib/extrude-geometry/extrude-geometry.d.ts +0 -8
  321. package/geometries/lib/icosahedron-geometry/icosahedron-geometry.d.ts +0 -8
  322. package/geometries/lib/instanced-buffer-geometry/instanced-buffer-geometry.d.ts +0 -8
  323. package/geometries/lib/lathe-geometry/lathe-geometry.d.ts +0 -8
  324. package/geometries/lib/octahedron-geometry/octahedron-geometry.d.ts +0 -8
  325. package/geometries/lib/plane-geometry/plane-geometry.d.ts +0 -8
  326. package/geometries/lib/polyhedron-geometry/polyhedron-geometry.d.ts +0 -8
  327. package/geometries/lib/ring-geometry/ring-geometry.d.ts +0 -8
  328. package/geometries/lib/shape-geometry/shape-geometry.d.ts +0 -8
  329. package/geometries/lib/sphere-geometry/sphere-geometry.d.ts +0 -8
  330. package/geometries/lib/tetrahedron-geometry/tetrahedron-geometry.d.ts +0 -8
  331. package/geometries/lib/torus-geometry/torus-geometry.d.ts +0 -8
  332. package/geometries/lib/torus-knot-geometry/torus-knot-geometry.d.ts +0 -8
  333. package/geometries/lib/tube-geometry/tube-geometry.d.ts +0 -8
  334. package/geometries/lib/wireframe-geometry/wireframe-geometry.d.ts +0 -8
  335. package/helpers/README.md +0 -3
  336. package/helpers/index.d.ts +0 -13
  337. package/helpers/lib/arrow-helper/arrow-helper.d.ts +0 -8
  338. package/helpers/lib/axes-helper/axes-helper.d.ts +0 -8
  339. package/helpers/lib/box-helper/box-helper.d.ts +0 -8
  340. package/helpers/lib/box3-helper/box3-helper.d.ts +0 -8
  341. package/helpers/lib/camera-helper/camera-helper.d.ts +0 -8
  342. package/helpers/lib/common.d.ts +0 -1
  343. package/helpers/lib/directional-light-helper/directional-light-helper.d.ts +0 -8
  344. package/helpers/lib/grid-helper/grid-helper.d.ts +0 -8
  345. package/helpers/lib/hemisphere-light-helper/hemisphere-light-helper.d.ts +0 -8
  346. package/helpers/lib/plane-helper/plane-helper.d.ts +0 -8
  347. package/helpers/lib/point-light-helper/point-light-helper.d.ts +0 -8
  348. package/helpers/lib/polar-grid-helper/polar-grid-helper.d.ts +0 -8
  349. package/helpers/lib/skeleton-helper/skeleton-helper.d.ts +0 -8
  350. package/helpers/lib/spot-light-helper/spot-light-helper.d.ts +0 -8
  351. package/lib/di/resize.d.ts +0 -12
  352. package/lib/di/window.d.ts +0 -1
  353. package/lib/directives/cursor.d.ts +0 -7
  354. package/lib/instance.d.ts +0 -81
  355. package/lib/pipes/math.d.ts +0 -7
  356. package/lib/pipes/pi.d.ts +0 -7
  357. package/lib/pipes/radian.d.ts +0 -7
  358. package/lib/pipes/side.d.ts +0 -8
  359. package/lib/ref.d.ts +0 -5
  360. package/lib/services/loader.d.ts +0 -11
  361. package/lib/services/resize.d.ts +0 -19
  362. package/lib/stores/component-store.d.ts +0 -69
  363. package/lib/utils/build-graph.d.ts +0 -3
  364. package/lib/utils/camera.d.ts +0 -4
  365. package/lib/utils/capitalize.d.ts +0 -1
  366. package/lib/utils/check-update.d.ts +0 -2
  367. package/lib/utils/events.d.ts +0 -6
  368. package/lib/utils/get-instance-local-state.d.ts +0 -2
  369. package/lib/utils/inject.d.ts +0 -9
  370. package/lib/utils/mutate.d.ts +0 -2
  371. package/lib/utils/proxy.d.ts +0 -7
  372. package/lib/utils/renderer.d.ts +0 -3
  373. package/lights/README.md +0 -3
  374. package/lights/index.d.ts +0 -9
  375. package/lights/lib/ambient-light/ambient-light.d.ts +0 -39
  376. package/lights/lib/ambient-light-probe/ambient-light-probe.d.ts +0 -40
  377. package/lights/lib/common.d.ts +0 -3
  378. package/lights/lib/directional-light/directional-light.d.ts +0 -40
  379. package/lights/lib/hemisphere-light/hemisphere-light.d.ts +0 -41
  380. package/lights/lib/hemisphere-light-probe/hemisphere-light-probe.d.ts +0 -42
  381. package/lights/lib/light-probe/light-probe.d.ts +0 -40
  382. package/lights/lib/point-light/point-light.d.ts +0 -42
  383. package/lights/lib/rect-area-light/rect-area-light.d.ts +0 -42
  384. package/lights/lib/spot-light/spot-light.d.ts +0 -45
  385. package/materials/README.md +0 -3
  386. package/materials/index.d.ts +0 -17
  387. package/materials/lib/common.d.ts +0 -1
  388. package/materials/lib/line-basic-material/line-basic-material.d.ts +0 -55
  389. package/materials/lib/line-dashed-material/line-dashed-material.d.ts +0 -58
  390. package/materials/lib/mesh-basic-material/mesh-basic-material.d.ts +0 -67
  391. package/materials/lib/mesh-depth-material/mesh-depth-material.d.ts +0 -58
  392. package/materials/lib/mesh-distance-material/mesh-distance-material.d.ts +0 -58
  393. package/materials/lib/mesh-lambert-material/mesh-lambert-material.d.ts +0 -78
  394. package/materials/lib/mesh-matcap-material/mesh-matcap-material.d.ts +0 -64
  395. package/materials/lib/mesh-normal-material/mesh-normal-material.d.ts +0 -61
  396. package/materials/lib/mesh-phong-material/mesh-phong-material.d.ts +0 -81
  397. package/materials/lib/mesh-physical-material/mesh-physical-material.d.ts +0 -97
  398. package/materials/lib/mesh-standard-material/mesh-standard-material.d.ts +0 -78
  399. package/materials/lib/mesh-toon-material/mesh-toon-material.d.ts +0 -74
  400. package/materials/lib/points-material/points-material.d.ts +0 -56
  401. package/materials/lib/raw-shader-material/raw-shader-material.d.ts +0 -68
  402. package/materials/lib/shader-material/shader-material.d.ts +0 -68
  403. package/materials/lib/shadow-material/shadow-material.d.ts +0 -52
  404. package/materials/lib/sprite-material/sprite-material.d.ts +0 -56
  405. package/objects/README.md +0 -3
  406. package/objects/index.d.ts +0 -12
  407. package/objects/lib/bone/bone.d.ts +0 -35
  408. package/objects/lib/common.d.ts +0 -3
  409. package/objects/lib/group/group.d.ts +0 -35
  410. package/objects/lib/instanced-mesh/instanced-mesh.d.ts +0 -44
  411. package/objects/lib/line/line.d.ts +0 -41
  412. package/objects/lib/line-loop/line-loop.d.ts +0 -41
  413. package/objects/lib/line-segments/line-segments.d.ts +0 -41
  414. package/objects/lib/lod/lod.d.ts +0 -40
  415. package/objects/lib/mesh/mesh.d.ts +0 -41
  416. package/objects/lib/points/points.d.ts +0 -41
  417. package/objects/lib/skeleton/skeleton.d.ts +0 -16
  418. package/objects/lib/skinned-mesh/skinned-mesh.d.ts +0 -45
  419. package/objects/lib/sprite/sprite.d.ts +0 -38
  420. package/primitives/README.md +0 -3
  421. package/primitives/index.d.ts +0 -2
  422. package/primitives/lib/common.d.ts +0 -3
  423. package/primitives/lib/object-primitive/object-primitive.d.ts +0 -35
  424. package/primitives/lib/primitive/primitive.d.ts +0 -10
  425. package/schematics/README.md +0 -11
  426. package/stats/README.md +0 -3
  427. package/stats/index.d.ts +0 -1
  428. package/stats/lib/stats/stats.d.ts +0 -16
  429. package/textures/README.md +0 -3
  430. package/textures/index.d.ts +0 -10
  431. package/textures/lib/canvas-texture/canvas-texture.d.ts +0 -8
  432. package/textures/lib/common.d.ts +0 -1
  433. package/textures/lib/compressed-array-texture/compressed-array-texture.d.ts +0 -8
  434. package/textures/lib/compressed-texture/compressed-texture.d.ts +0 -8
  435. package/textures/lib/cube-texture/cube-texture.d.ts +0 -8
  436. package/textures/lib/data-array-texture/data-array-texture.d.ts +0 -8
  437. package/textures/lib/data-texture/data-texture.d.ts +0 -8
  438. package/textures/lib/data3-dtexture/data3-dtexture.d.ts +0 -8
  439. package/textures/lib/depth-texture/depth-texture.d.ts +0 -8
  440. package/textures/lib/framebuffer-texture/framebuffer-texture.d.ts +0 -8
  441. package/textures/lib/video-texture/video-texture.d.ts +0 -8
@@ -1,378 +0,0 @@
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 } from 'angular-three';
6
-
7
- // GENERATED - AngularThree v1.0.0
8
- const NGT_INSTANCE_INPUTS = [
9
- 'ref',
10
- 'attach',
11
- 'skipWrapper',
12
- 'skipInit',
13
- 'noAttach',
14
- 'beforeRender',
15
- 'priority',
16
- 'updateCallback',
17
- 'readyCallback',
18
- ];
19
-
20
- // GENERATED - AngularThree v1.0.0
21
- class NgtArrowHelper extends THREE.ArrowHelper {
22
- constructor() {
23
- super(...(injectArgs({ optional: true }) || []));
24
- return proxify(this);
25
- }
26
- }
27
- NgtArrowHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtArrowHelper, deps: [], target: i0.ɵɵFactoryTarget.Component });
28
- NgtArrowHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtArrowHelper, isStandalone: true, selector: "ngt-arrow-helper", providers: [provideInstanceRef(NgtArrowHelper)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
29
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtArrowHelper, decorators: [{
30
- type: Component,
31
- args: [{
32
- selector: 'ngt-arrow-helper',
33
- standalone: true,
34
- template: '<ng-content></ng-content>',
35
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
36
- providers: [provideInstanceRef(NgtArrowHelper)],
37
- }]
38
- }], ctorParameters: function () { return []; } });
39
-
40
- // GENERATED - AngularThree v1.0.0
41
- class NgtAxesHelper extends THREE.AxesHelper {
42
- constructor() {
43
- super(...(injectArgs({ optional: true }) || []));
44
- return proxify(this);
45
- }
46
- }
47
- NgtAxesHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtAxesHelper, deps: [], target: i0.ɵɵFactoryTarget.Component });
48
- NgtAxesHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtAxesHelper, isStandalone: true, selector: "ngt-axes-helper", providers: [provideInstanceRef(NgtAxesHelper)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
49
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtAxesHelper, decorators: [{
50
- type: Component,
51
- args: [{
52
- selector: 'ngt-axes-helper',
53
- standalone: true,
54
- template: '<ng-content></ng-content>',
55
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
56
- providers: [provideInstanceRef(NgtAxesHelper)],
57
- }]
58
- }], ctorParameters: function () { return []; } });
59
-
60
- // GENERATED - AngularThree v1.0.0
61
- class NgtGridHelper extends THREE.GridHelper {
62
- constructor() {
63
- super(...(injectArgs({ optional: true }) || []));
64
- return proxify(this);
65
- }
66
- }
67
- NgtGridHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtGridHelper, deps: [], target: i0.ɵɵFactoryTarget.Component });
68
- NgtGridHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtGridHelper, isStandalone: true, selector: "ngt-grid-helper", providers: [provideInstanceRef(NgtGridHelper)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
69
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtGridHelper, decorators: [{
70
- type: Component,
71
- args: [{
72
- selector: 'ngt-grid-helper',
73
- standalone: true,
74
- template: '<ng-content></ng-content>',
75
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
76
- providers: [provideInstanceRef(NgtGridHelper)],
77
- }]
78
- }], ctorParameters: function () { return []; } });
79
-
80
- // GENERATED - AngularThree v1.0.0
81
- class NgtPolarGridHelper extends THREE.PolarGridHelper {
82
- constructor() {
83
- super(...(injectArgs({ optional: true }) || []));
84
- return proxify(this);
85
- }
86
- }
87
- NgtPolarGridHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPolarGridHelper, deps: [], target: i0.ɵɵFactoryTarget.Component });
88
- NgtPolarGridHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtPolarGridHelper, isStandalone: true, selector: "ngt-polar-grid-helper", providers: [provideInstanceRef(NgtPolarGridHelper)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
89
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPolarGridHelper, decorators: [{
90
- type: Component,
91
- args: [{
92
- selector: 'ngt-polar-grid-helper',
93
- standalone: true,
94
- template: '<ng-content></ng-content>',
95
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
96
- providers: [provideInstanceRef(NgtPolarGridHelper)],
97
- }]
98
- }], ctorParameters: function () { return []; } });
99
-
100
- // GENERATED - AngularThree v1.0.0
101
- class NgtBoxHelper extends THREE.BoxHelper {
102
- constructor() {
103
- super(...injectArgs());
104
- return proxify(this, {
105
- attach: (_, helper, stateFactory) => {
106
- const { scene, internal } = stateFactory();
107
- scene.add(helper.value);
108
- const unsubscribe = internal.subscribe(() => helper.value.update(), 0, stateFactory, helper);
109
- return () => {
110
- scene.remove(helper.value);
111
- unsubscribe();
112
- };
113
- },
114
- });
115
- }
116
- }
117
- NgtBoxHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtBoxHelper, deps: [], target: i0.ɵɵFactoryTarget.Component });
118
- NgtBoxHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtBoxHelper, isStandalone: true, selector: "ngt-box-helper", providers: [provideInstanceRef(NgtBoxHelper)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
119
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtBoxHelper, decorators: [{
120
- type: Component,
121
- args: [{
122
- selector: 'ngt-box-helper',
123
- standalone: true,
124
- template: '<ng-content></ng-content>',
125
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
126
- providers: [provideInstanceRef(NgtBoxHelper)],
127
- }]
128
- }], ctorParameters: function () { return []; } });
129
-
130
- // GENERATED - AngularThree v1.0.0
131
- class NgtBox3Helper extends THREE.Box3Helper {
132
- constructor() {
133
- super(...injectArgs());
134
- return proxify(this, {
135
- attach: (_, helper, stateFactory) => {
136
- const { scene, internal } = stateFactory();
137
- scene.add(helper.value);
138
- const unsubscribe = internal.subscribe(() => helper.value.updateMatrixWorld(), 0, stateFactory, helper);
139
- return () => {
140
- scene.remove(helper.value);
141
- unsubscribe();
142
- };
143
- },
144
- });
145
- }
146
- }
147
- NgtBox3Helper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtBox3Helper, deps: [], target: i0.ɵɵFactoryTarget.Component });
148
- NgtBox3Helper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtBox3Helper, isStandalone: true, selector: "ngt-box3-helper", providers: [provideInstanceRef(NgtBox3Helper)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
149
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtBox3Helper, decorators: [{
150
- type: Component,
151
- args: [{
152
- selector: 'ngt-box3-helper',
153
- standalone: true,
154
- template: '<ng-content></ng-content>',
155
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
156
- providers: [provideInstanceRef(NgtBox3Helper)],
157
- }]
158
- }], ctorParameters: function () { return []; } });
159
-
160
- // GENERATED - AngularThree v1.0.0
161
- class NgtCameraHelper extends THREE.CameraHelper {
162
- constructor() {
163
- super(...injectArgs());
164
- return proxify(this, {
165
- attach: (_, helper, stateFactory) => {
166
- const { scene, internal } = stateFactory();
167
- scene.add(helper.value);
168
- const unsubscribe = internal.subscribe(() => helper.value.update(), 0, stateFactory, helper);
169
- return () => {
170
- scene.remove(helper.value);
171
- unsubscribe();
172
- };
173
- },
174
- });
175
- }
176
- }
177
- NgtCameraHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCameraHelper, deps: [], target: i0.ɵɵFactoryTarget.Component });
178
- NgtCameraHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtCameraHelper, isStandalone: true, selector: "ngt-camera-helper", providers: [provideInstanceRef(NgtCameraHelper)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
179
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtCameraHelper, decorators: [{
180
- type: Component,
181
- args: [{
182
- selector: 'ngt-camera-helper',
183
- standalone: true,
184
- template: '<ng-content></ng-content>',
185
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
186
- providers: [provideInstanceRef(NgtCameraHelper)],
187
- }]
188
- }], ctorParameters: function () { return []; } });
189
-
190
- // GENERATED - AngularThree v1.0.0
191
- class NgtDirectionalLightHelper extends THREE.DirectionalLightHelper {
192
- constructor() {
193
- super(...injectArgs());
194
- return proxify(this, {
195
- attach: (_, helper, stateFactory) => {
196
- const { scene, internal } = stateFactory();
197
- scene.add(helper.value);
198
- const unsubscribe = internal.subscribe(() => helper.value.update(), 0, stateFactory, helper);
199
- return () => {
200
- scene.remove(helper.value);
201
- unsubscribe();
202
- };
203
- },
204
- });
205
- }
206
- }
207
- NgtDirectionalLightHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtDirectionalLightHelper, deps: [], target: i0.ɵɵFactoryTarget.Component });
208
- NgtDirectionalLightHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtDirectionalLightHelper, isStandalone: true, selector: "ngt-directional-light-helper", providers: [provideInstanceRef(NgtDirectionalLightHelper)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
209
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtDirectionalLightHelper, decorators: [{
210
- type: Component,
211
- args: [{
212
- selector: 'ngt-directional-light-helper',
213
- standalone: true,
214
- template: '<ng-content></ng-content>',
215
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
216
- providers: [provideInstanceRef(NgtDirectionalLightHelper)],
217
- }]
218
- }], ctorParameters: function () { return []; } });
219
-
220
- // GENERATED - AngularThree v1.0.0
221
- class NgtHemisphereLightHelper extends THREE.HemisphereLightHelper {
222
- constructor() {
223
- super(...injectArgs());
224
- return proxify(this, {
225
- attach: (_, helper, stateFactory) => {
226
- const { scene, internal } = stateFactory();
227
- scene.add(helper.value);
228
- const unsubscribe = internal.subscribe(() => helper.value.update(), 0, stateFactory, helper);
229
- return () => {
230
- scene.remove(helper.value);
231
- unsubscribe();
232
- };
233
- },
234
- });
235
- }
236
- }
237
- NgtHemisphereLightHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtHemisphereLightHelper, deps: [], target: i0.ɵɵFactoryTarget.Component });
238
- NgtHemisphereLightHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtHemisphereLightHelper, isStandalone: true, selector: "ngt-hemisphere-light-helper", providers: [provideInstanceRef(NgtHemisphereLightHelper)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
239
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtHemisphereLightHelper, decorators: [{
240
- type: Component,
241
- args: [{
242
- selector: 'ngt-hemisphere-light-helper',
243
- standalone: true,
244
- template: '<ng-content></ng-content>',
245
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
246
- providers: [provideInstanceRef(NgtHemisphereLightHelper)],
247
- }]
248
- }], ctorParameters: function () { return []; } });
249
-
250
- // GENERATED - AngularThree v1.0.0
251
- class NgtPlaneHelper extends THREE.PlaneHelper {
252
- constructor() {
253
- super(...injectArgs());
254
- return proxify(this, {
255
- attach: (_, helper, stateFactory) => {
256
- const { scene, internal } = stateFactory();
257
- scene.add(helper.value);
258
- const unsubscribe = internal.subscribe(() => helper.value.updateMatrixWorld(), 0, stateFactory, helper);
259
- return () => {
260
- scene.remove(helper.value);
261
- unsubscribe();
262
- };
263
- },
264
- });
265
- }
266
- }
267
- NgtPlaneHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPlaneHelper, deps: [], target: i0.ɵɵFactoryTarget.Component });
268
- NgtPlaneHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtPlaneHelper, isStandalone: true, selector: "ngt-plane-helper", providers: [provideInstanceRef(NgtPlaneHelper)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
269
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPlaneHelper, decorators: [{
270
- type: Component,
271
- args: [{
272
- selector: 'ngt-plane-helper',
273
- standalone: true,
274
- template: '<ng-content></ng-content>',
275
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
276
- providers: [provideInstanceRef(NgtPlaneHelper)],
277
- }]
278
- }], ctorParameters: function () { return []; } });
279
-
280
- // GENERATED - AngularThree v1.0.0
281
- class NgtPointLightHelper extends THREE.PointLightHelper {
282
- constructor() {
283
- super(...injectArgs());
284
- return proxify(this, {
285
- attach: (_, helper, stateFactory) => {
286
- const { scene, internal } = stateFactory();
287
- scene.add(helper.value);
288
- const unsubscribe = internal.subscribe(() => helper.value.update(), 0, stateFactory, helper);
289
- return () => {
290
- scene.remove(helper.value);
291
- unsubscribe();
292
- };
293
- },
294
- });
295
- }
296
- }
297
- NgtPointLightHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPointLightHelper, deps: [], target: i0.ɵɵFactoryTarget.Component });
298
- NgtPointLightHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtPointLightHelper, isStandalone: true, selector: "ngt-point-light-helper", providers: [provideInstanceRef(NgtPointLightHelper)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
299
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPointLightHelper, decorators: [{
300
- type: Component,
301
- args: [{
302
- selector: 'ngt-point-light-helper',
303
- standalone: true,
304
- template: '<ng-content></ng-content>',
305
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
306
- providers: [provideInstanceRef(NgtPointLightHelper)],
307
- }]
308
- }], ctorParameters: function () { return []; } });
309
-
310
- // GENERATED - AngularThree v1.0.0
311
- class NgtSkeletonHelper extends THREE.SkeletonHelper {
312
- constructor() {
313
- super(...injectArgs());
314
- return proxify(this, {
315
- attach: (_, helper, stateFactory) => {
316
- const { scene, internal } = stateFactory();
317
- scene.add(helper.value);
318
- const unsubscribe = internal.subscribe(() => helper.value.update(), 0, stateFactory, helper);
319
- return () => {
320
- scene.remove(helper.value);
321
- unsubscribe();
322
- };
323
- },
324
- });
325
- }
326
- }
327
- NgtSkeletonHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtSkeletonHelper, deps: [], target: i0.ɵɵFactoryTarget.Component });
328
- NgtSkeletonHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtSkeletonHelper, isStandalone: true, selector: "ngt-skeleton-helper", providers: [provideInstanceRef(NgtSkeletonHelper)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
329
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtSkeletonHelper, decorators: [{
330
- type: Component,
331
- args: [{
332
- selector: 'ngt-skeleton-helper',
333
- standalone: true,
334
- template: '<ng-content></ng-content>',
335
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
336
- providers: [provideInstanceRef(NgtSkeletonHelper)],
337
- }]
338
- }], ctorParameters: function () { return []; } });
339
-
340
- // GENERATED - AngularThree v1.0.0
341
- class NgtSpotLightHelper extends THREE.SpotLightHelper {
342
- constructor() {
343
- super(...injectArgs());
344
- return proxify(this, {
345
- attach: (_, helper, stateFactory) => {
346
- const { scene, internal } = stateFactory();
347
- scene.add(helper.value);
348
- const unsubscribe = internal.subscribe(() => helper.value.update(), 0, stateFactory, helper);
349
- return () => {
350
- scene.remove(helper.value);
351
- unsubscribe();
352
- };
353
- },
354
- });
355
- }
356
- }
357
- NgtSpotLightHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtSpotLightHelper, deps: [], target: i0.ɵɵFactoryTarget.Component });
358
- NgtSpotLightHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtSpotLightHelper, isStandalone: true, selector: "ngt-spot-light-helper", providers: [provideInstanceRef(NgtSpotLightHelper)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
359
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtSpotLightHelper, decorators: [{
360
- type: Component,
361
- args: [{
362
- selector: 'ngt-spot-light-helper',
363
- standalone: true,
364
- template: '<ng-content></ng-content>',
365
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
366
- providers: [provideInstanceRef(NgtSpotLightHelper)],
367
- }]
368
- }], ctorParameters: function () { return []; } });
369
-
370
- // GENERATED - AngularThree v1.0.0
371
-
372
- /**
373
- * Generated bundle index. Do not edit.
374
- */
375
-
376
- export { NgtArrowHelper, NgtAxesHelper, NgtBox3Helper, NgtBoxHelper, NgtCameraHelper, NgtDirectionalLightHelper, NgtGridHelper, NgtHemisphereLightHelper, NgtPlaneHelper, NgtPointLightHelper, NgtPolarGridHelper, NgtSkeletonHelper, NgtSpotLightHelper };
377
- //# sourceMappingURL=angular-three-helpers.mjs.map
378
- //# sourceMappingURL=angular-three-helpers.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"angular-three-helpers.mjs","sources":["../../../../packages/angular-three/helpers/src/lib/common.ts","../../../../packages/angular-three/helpers/src/lib/arrow-helper/arrow-helper.ts","../../../../packages/angular-three/helpers/src/lib/axes-helper/axes-helper.ts","../../../../packages/angular-three/helpers/src/lib/grid-helper/grid-helper.ts","../../../../packages/angular-three/helpers/src/lib/polar-grid-helper/polar-grid-helper.ts","../../../../packages/angular-three/helpers/src/lib/box-helper/box-helper.ts","../../../../packages/angular-three/helpers/src/lib/box3-helper/box3-helper.ts","../../../../packages/angular-three/helpers/src/lib/camera-helper/camera-helper.ts","../../../../packages/angular-three/helpers/src/lib/directional-light-helper/directional-light-helper.ts","../../../../packages/angular-three/helpers/src/lib/hemisphere-light-helper/hemisphere-light-helper.ts","../../../../packages/angular-three/helpers/src/lib/plane-helper/plane-helper.ts","../../../../packages/angular-three/helpers/src/lib/point-light-helper/point-light-helper.ts","../../../../packages/angular-three/helpers/src/lib/skeleton-helper/skeleton-helper.ts","../../../../packages/angular-three/helpers/src/lib/spot-light-helper/spot-light-helper.ts","../../../../packages/angular-three/helpers/src/index.ts","../../../../packages/angular-three/helpers/src/angular-three-helpers.ts"],"sourcesContent":["// GENERATED - AngularThree v1.0.0\nexport const NGT_INSTANCE_INPUTS = [\n 'ref',\n 'attach',\n 'skipWrapper',\n 'skipInit',\n 'noAttach',\n 'beforeRender',\n 'priority',\n 'updateCallback',\n 'readyCallback',\n];\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-arrow-helper',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtArrowHelper)],\n})\nexport class NgtArrowHelper extends THREE.ArrowHelper {\n constructor() {\n super(...(injectArgs<typeof THREE.ArrowHelper>({ optional: true }) || []));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-axes-helper',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtAxesHelper)],\n})\nexport class NgtAxesHelper extends THREE.AxesHelper {\n constructor() {\n super(...(injectArgs<typeof THREE.AxesHelper>({ optional: true }) || []));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-grid-helper',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtGridHelper)],\n})\nexport class NgtGridHelper extends THREE.GridHelper {\n constructor() {\n super(...(injectArgs<typeof THREE.GridHelper>({ optional: true }) || []));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-polar-grid-helper',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtPolarGridHelper)],\n})\nexport class NgtPolarGridHelper extends THREE.PolarGridHelper {\n constructor() {\n super(...(injectArgs<typeof THREE.PolarGridHelper>({ optional: true }) || []));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-box-helper',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtBoxHelper)],\n})\nexport class NgtBoxHelper extends THREE.BoxHelper {\n constructor() {\n super(...injectArgs<typeof THREE.BoxHelper>());\n return proxify(this, {\n attach: (_, helper, stateFactory) => {\n const { scene, internal } = stateFactory();\n scene.add(helper.value);\n\n const unsubscribe = internal.subscribe(() => helper.value.update(), 0, stateFactory, helper);\n\n return () => {\n scene.remove(helper.value);\n unsubscribe();\n };\n },\n });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-box3-helper',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtBox3Helper)],\n})\nexport class NgtBox3Helper extends THREE.Box3Helper {\n constructor() {\n super(...injectArgs<typeof THREE.Box3Helper>());\n return proxify(this, {\n attach: (_, helper, stateFactory) => {\n const { scene, internal } = stateFactory();\n scene.add(helper.value);\n\n const unsubscribe = internal.subscribe(() => helper.value.updateMatrixWorld(), 0, stateFactory, helper);\n\n return () => {\n scene.remove(helper.value);\n unsubscribe();\n };\n },\n });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-camera-helper',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtCameraHelper)],\n})\nexport class NgtCameraHelper extends THREE.CameraHelper {\n constructor() {\n super(...injectArgs<typeof THREE.CameraHelper>());\n return proxify(this, {\n attach: (_, helper, stateFactory) => {\n const { scene, internal } = stateFactory();\n scene.add(helper.value);\n\n const unsubscribe = internal.subscribe(() => helper.value.update(), 0, stateFactory, helper);\n\n return () => {\n scene.remove(helper.value);\n unsubscribe();\n };\n },\n });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-directional-light-helper',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtDirectionalLightHelper)],\n})\nexport class NgtDirectionalLightHelper extends THREE.DirectionalLightHelper {\n constructor() {\n super(...injectArgs<typeof THREE.DirectionalLightHelper>());\n return proxify(this, {\n attach: (_, helper, stateFactory) => {\n const { scene, internal } = stateFactory();\n scene.add(helper.value);\n\n const unsubscribe = internal.subscribe(() => helper.value.update(), 0, stateFactory, helper);\n\n return () => {\n scene.remove(helper.value);\n unsubscribe();\n };\n },\n });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-hemisphere-light-helper',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtHemisphereLightHelper)],\n})\nexport class NgtHemisphereLightHelper extends THREE.HemisphereLightHelper {\n constructor() {\n super(...injectArgs<typeof THREE.HemisphereLightHelper>());\n return proxify(this, {\n attach: (_, helper, stateFactory) => {\n const { scene, internal } = stateFactory();\n scene.add(helper.value);\n\n const unsubscribe = internal.subscribe(() => helper.value.update(), 0, stateFactory, helper);\n\n return () => {\n scene.remove(helper.value);\n unsubscribe();\n };\n },\n });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-plane-helper',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtPlaneHelper)],\n})\nexport class NgtPlaneHelper extends THREE.PlaneHelper {\n constructor() {\n super(...injectArgs<typeof THREE.PlaneHelper>());\n return proxify(this, {\n attach: (_, helper, stateFactory) => {\n const { scene, internal } = stateFactory();\n scene.add(helper.value);\n\n const unsubscribe = internal.subscribe(() => helper.value.updateMatrixWorld(), 0, stateFactory, helper);\n\n return () => {\n scene.remove(helper.value);\n unsubscribe();\n };\n },\n });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-point-light-helper',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtPointLightHelper)],\n})\nexport class NgtPointLightHelper extends THREE.PointLightHelper {\n constructor() {\n super(...injectArgs<typeof THREE.PointLightHelper>());\n return proxify(this, {\n attach: (_, helper, stateFactory) => {\n const { scene, internal } = stateFactory();\n scene.add(helper.value);\n\n const unsubscribe = internal.subscribe(() => helper.value.update(), 0, stateFactory, helper);\n\n return () => {\n scene.remove(helper.value);\n unsubscribe();\n };\n },\n });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-skeleton-helper',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtSkeletonHelper)],\n})\nexport class NgtSkeletonHelper extends THREE.SkeletonHelper {\n constructor() {\n super(...injectArgs<typeof THREE.SkeletonHelper>());\n return proxify(this, {\n attach: (_, helper, stateFactory) => {\n const { scene, internal } = stateFactory();\n scene.add(helper.value);\n\n const unsubscribe = internal.subscribe(() => helper.value.update(), 0, stateFactory, helper);\n\n return () => {\n scene.remove(helper.value);\n unsubscribe();\n };\n },\n });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport * as THREE from 'three';\nimport { Component } from '@angular/core';\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-spot-light-helper',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtSpotLightHelper)],\n})\nexport class NgtSpotLightHelper extends THREE.SpotLightHelper {\n constructor() {\n super(...injectArgs<typeof THREE.SpotLightHelper>());\n return proxify(this, {\n attach: (_, helper, stateFactory) => {\n const { scene, internal } = stateFactory();\n scene.add(helper.value);\n\n const unsubscribe = internal.subscribe(() => helper.value.update(), 0, stateFactory, helper);\n\n return () => {\n scene.remove(helper.value);\n unsubscribe();\n };\n },\n });\n }\n}\n","// GENERATED - AngularThree v1.0.0\nexport * from './lib/arrow-helper/arrow-helper';\nexport * from './lib/axes-helper/axes-helper';\nexport * from './lib/grid-helper/grid-helper';\nexport * from './lib/polar-grid-helper/polar-grid-helper';\nexport * from './lib/box-helper/box-helper';\nexport * from './lib/box3-helper/box3-helper';\nexport * from './lib/camera-helper/camera-helper';\nexport * from './lib/directional-light-helper/directional-light-helper';\nexport * from './lib/hemisphere-light-helper/hemisphere-light-helper';\nexport * from './lib/plane-helper/plane-helper';\nexport * from './lib/point-light-helper/point-light-helper';\nexport * from './lib/skeleton-helper/skeleton-helper';\nexport * from './lib/spot-light-helper/spot-light-helper';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}