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,1415 +0,0 @@
1
- import * as i1 from 'angular-three';
2
- import { proxify, provideInstanceRef, NgtInstance } from 'angular-three';
3
- import * as i0 from '@angular/core';
4
- import { Component } from '@angular/core';
5
- import * as THREE from '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 NgtLineBasicMaterial extends THREE.LineBasicMaterial {
22
- constructor() {
23
- super();
24
- return proxify(this, { attach: 'material' });
25
- }
26
- }
27
- NgtLineBasicMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtLineBasicMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
28
- NgtLineBasicMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtLineBasicMaterial, isStandalone: true, selector: "ngt-line-basic-material", inputs: { color: "color", fog: "fog", linewidth: "linewidth", linecap: "linecap", linejoin: "linejoin", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtLineBasicMaterial)], 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: NgtLineBasicMaterial, decorators: [{
30
- type: Component,
31
- args: [{
32
- selector: 'ngt-line-basic-material',
33
- standalone: true,
34
- template: '<ng-content></ng-content>',
35
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
36
- providers: [provideInstanceRef(NgtLineBasicMaterial)],
37
- inputs: [...getInputs$g()],
38
- }]
39
- }], ctorParameters: function () { return []; } });
40
- function getInputs$g() {
41
- return [
42
- 'color',
43
- 'fog',
44
- 'linewidth',
45
- 'linecap',
46
- 'linejoin',
47
- 'alphaTest',
48
- 'alphaToCoverage',
49
- 'blendDst',
50
- 'blendDstAlpha',
51
- 'blendEquation',
52
- 'blendEquationAlpha',
53
- 'blending',
54
- 'blendSrc',
55
- 'blendSrcAlpha',
56
- 'clipIntersection',
57
- 'clippingPlanes',
58
- 'clipShadows',
59
- 'colorWrite',
60
- 'defines',
61
- 'depthFunc',
62
- 'depthTest',
63
- 'depthWrite',
64
- 'name',
65
- 'opacity',
66
- 'polygonOffset',
67
- 'polygonOffsetFactor',
68
- 'polygonOffsetUnits',
69
- 'precision',
70
- 'premultipliedAlpha',
71
- 'dithering',
72
- 'side',
73
- 'shadowSide',
74
- 'toneMapped',
75
- 'transparent',
76
- 'vertexColors',
77
- 'visible',
78
- 'format',
79
- 'stencilWrite',
80
- 'stencilFunc',
81
- 'stencilRef',
82
- 'stencilWriteMask',
83
- 'stencilFuncMask',
84
- 'stencilFail',
85
- 'stencilZFail',
86
- 'stencilZPass',
87
- 'userData',
88
- ];
89
- }
90
-
91
- // GENERATED - AngularThree v1.0.0
92
- class NgtLineDashedMaterial extends THREE.LineDashedMaterial {
93
- constructor() {
94
- super();
95
- return proxify(this, { attach: 'material' });
96
- }
97
- }
98
- NgtLineDashedMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtLineDashedMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
99
- NgtLineDashedMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtLineDashedMaterial, isStandalone: true, selector: "ngt-line-dashed-material", inputs: { scale: "scale", dashSize: "dashSize", gapSize: "gapSize", color: "color", fog: "fog", linewidth: "linewidth", linecap: "linecap", linejoin: "linejoin", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtLineDashedMaterial)], 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 });
100
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtLineDashedMaterial, decorators: [{
101
- type: Component,
102
- args: [{
103
- selector: 'ngt-line-dashed-material',
104
- standalone: true,
105
- template: '<ng-content></ng-content>',
106
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
107
- providers: [provideInstanceRef(NgtLineDashedMaterial)],
108
- inputs: [...getInputs$f()],
109
- }]
110
- }], ctorParameters: function () { return []; } });
111
- function getInputs$f() {
112
- return [
113
- 'scale',
114
- 'dashSize',
115
- 'gapSize',
116
- 'color',
117
- 'fog',
118
- 'linewidth',
119
- 'linecap',
120
- 'linejoin',
121
- 'alphaTest',
122
- 'alphaToCoverage',
123
- 'blendDst',
124
- 'blendDstAlpha',
125
- 'blendEquation',
126
- 'blendEquationAlpha',
127
- 'blending',
128
- 'blendSrc',
129
- 'blendSrcAlpha',
130
- 'clipIntersection',
131
- 'clippingPlanes',
132
- 'clipShadows',
133
- 'colorWrite',
134
- 'defines',
135
- 'depthFunc',
136
- 'depthTest',
137
- 'depthWrite',
138
- 'name',
139
- 'opacity',
140
- 'polygonOffset',
141
- 'polygonOffsetFactor',
142
- 'polygonOffsetUnits',
143
- 'precision',
144
- 'premultipliedAlpha',
145
- 'dithering',
146
- 'side',
147
- 'shadowSide',
148
- 'toneMapped',
149
- 'transparent',
150
- 'vertexColors',
151
- 'visible',
152
- 'format',
153
- 'stencilWrite',
154
- 'stencilFunc',
155
- 'stencilRef',
156
- 'stencilWriteMask',
157
- 'stencilFuncMask',
158
- 'stencilFail',
159
- 'stencilZFail',
160
- 'stencilZPass',
161
- 'userData',
162
- ];
163
- }
164
-
165
- // GENERATED - AngularThree v1.0.0
166
- class NgtMeshBasicMaterial extends THREE.MeshBasicMaterial {
167
- constructor() {
168
- super();
169
- return proxify(this, { attach: 'material' });
170
- }
171
- }
172
- NgtMeshBasicMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshBasicMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
173
- NgtMeshBasicMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMeshBasicMaterial, isStandalone: true, selector: "ngt-mesh-basic-material", inputs: { color: "color", opacity: "opacity", map: "map", lightMap: "lightMap", lightMapIntensity: "lightMapIntensity", aoMap: "aoMap", aoMapIntensity: "aoMapIntensity", specularMap: "specularMap", alphaMap: "alphaMap", fog: "fog", envMap: "envMap", combine: "combine", reflectivity: "reflectivity", refractionRatio: "refractionRatio", wireframe: "wireframe", wireframeLinewidth: "wireframeLinewidth", wireframeLinecap: "wireframeLinecap", wireframeLinejoin: "wireframeLinejoin", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtMeshBasicMaterial)], 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 });
174
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshBasicMaterial, decorators: [{
175
- type: Component,
176
- args: [{
177
- selector: 'ngt-mesh-basic-material',
178
- standalone: true,
179
- template: '<ng-content></ng-content>',
180
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
181
- providers: [provideInstanceRef(NgtMeshBasicMaterial)],
182
- inputs: [...getInputs$e()],
183
- }]
184
- }], ctorParameters: function () { return []; } });
185
- function getInputs$e() {
186
- return [
187
- 'color',
188
- 'opacity',
189
- 'map',
190
- 'lightMap',
191
- 'lightMapIntensity',
192
- 'aoMap',
193
- 'aoMapIntensity',
194
- 'specularMap',
195
- 'alphaMap',
196
- 'fog',
197
- 'envMap',
198
- 'combine',
199
- 'reflectivity',
200
- 'refractionRatio',
201
- 'wireframe',
202
- 'wireframeLinewidth',
203
- 'wireframeLinecap',
204
- 'wireframeLinejoin',
205
- 'alphaTest',
206
- 'alphaToCoverage',
207
- 'blendDst',
208
- 'blendDstAlpha',
209
- 'blendEquation',
210
- 'blendEquationAlpha',
211
- 'blending',
212
- 'blendSrc',
213
- 'blendSrcAlpha',
214
- 'clipIntersection',
215
- 'clippingPlanes',
216
- 'clipShadows',
217
- 'colorWrite',
218
- 'defines',
219
- 'depthFunc',
220
- 'depthTest',
221
- 'depthWrite',
222
- 'name',
223
- 'polygonOffset',
224
- 'polygonOffsetFactor',
225
- 'polygonOffsetUnits',
226
- 'precision',
227
- 'premultipliedAlpha',
228
- 'dithering',
229
- 'side',
230
- 'shadowSide',
231
- 'toneMapped',
232
- 'transparent',
233
- 'vertexColors',
234
- 'visible',
235
- 'format',
236
- 'stencilWrite',
237
- 'stencilFunc',
238
- 'stencilRef',
239
- 'stencilWriteMask',
240
- 'stencilFuncMask',
241
- 'stencilFail',
242
- 'stencilZFail',
243
- 'stencilZPass',
244
- 'userData',
245
- ];
246
- }
247
-
248
- // GENERATED - AngularThree v1.0.0
249
- class NgtMeshDepthMaterial extends THREE.MeshDepthMaterial {
250
- constructor() {
251
- super();
252
- return proxify(this, { attach: 'material' });
253
- }
254
- }
255
- NgtMeshDepthMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshDepthMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
256
- NgtMeshDepthMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMeshDepthMaterial, isStandalone: true, selector: "ngt-mesh-depth-material", inputs: { map: "map", alphaMap: "alphaMap", depthPacking: "depthPacking", displacementMap: "displacementMap", displacementScale: "displacementScale", displacementBias: "displacementBias", wireframe: "wireframe", wireframeLinewidth: "wireframeLinewidth", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtMeshDepthMaterial)], 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 });
257
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshDepthMaterial, decorators: [{
258
- type: Component,
259
- args: [{
260
- selector: 'ngt-mesh-depth-material',
261
- standalone: true,
262
- template: '<ng-content></ng-content>',
263
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
264
- providers: [provideInstanceRef(NgtMeshDepthMaterial)],
265
- inputs: [...getInputs$d()],
266
- }]
267
- }], ctorParameters: function () { return []; } });
268
- function getInputs$d() {
269
- return [
270
- 'map',
271
- 'alphaMap',
272
- 'depthPacking',
273
- 'displacementMap',
274
- 'displacementScale',
275
- 'displacementBias',
276
- 'wireframe',
277
- 'wireframeLinewidth',
278
- 'alphaTest',
279
- 'alphaToCoverage',
280
- 'blendDst',
281
- 'blendDstAlpha',
282
- 'blendEquation',
283
- 'blendEquationAlpha',
284
- 'blending',
285
- 'blendSrc',
286
- 'blendSrcAlpha',
287
- 'clipIntersection',
288
- 'clippingPlanes',
289
- 'clipShadows',
290
- 'colorWrite',
291
- 'defines',
292
- 'depthFunc',
293
- 'depthTest',
294
- 'depthWrite',
295
- 'name',
296
- 'opacity',
297
- 'polygonOffset',
298
- 'polygonOffsetFactor',
299
- 'polygonOffsetUnits',
300
- 'precision',
301
- 'premultipliedAlpha',
302
- 'dithering',
303
- 'side',
304
- 'shadowSide',
305
- 'toneMapped',
306
- 'transparent',
307
- 'vertexColors',
308
- 'visible',
309
- 'format',
310
- 'stencilWrite',
311
- 'stencilFunc',
312
- 'stencilRef',
313
- 'stencilWriteMask',
314
- 'stencilFuncMask',
315
- 'stencilFail',
316
- 'stencilZFail',
317
- 'stencilZPass',
318
- 'userData',
319
- ];
320
- }
321
-
322
- // GENERATED - AngularThree v1.0.0
323
- class NgtMeshDistanceMaterial extends THREE.MeshDistanceMaterial {
324
- constructor() {
325
- super();
326
- return proxify(this, { attach: 'material' });
327
- }
328
- }
329
- NgtMeshDistanceMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshDistanceMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
330
- NgtMeshDistanceMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMeshDistanceMaterial, isStandalone: true, selector: "ngt-mesh-distance-material", inputs: { map: "map", alphaMap: "alphaMap", displacementMap: "displacementMap", displacementScale: "displacementScale", displacementBias: "displacementBias", farDistance: "farDistance", nearDistance: "nearDistance", referencePosition: "referencePosition", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtMeshDistanceMaterial)], 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 });
331
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshDistanceMaterial, decorators: [{
332
- type: Component,
333
- args: [{
334
- selector: 'ngt-mesh-distance-material',
335
- standalone: true,
336
- template: '<ng-content></ng-content>',
337
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
338
- providers: [provideInstanceRef(NgtMeshDistanceMaterial)],
339
- inputs: [...getInputs$c()],
340
- }]
341
- }], ctorParameters: function () { return []; } });
342
- function getInputs$c() {
343
- return [
344
- 'map',
345
- 'alphaMap',
346
- 'displacementMap',
347
- 'displacementScale',
348
- 'displacementBias',
349
- 'farDistance',
350
- 'nearDistance',
351
- 'referencePosition',
352
- 'alphaTest',
353
- 'alphaToCoverage',
354
- 'blendDst',
355
- 'blendDstAlpha',
356
- 'blendEquation',
357
- 'blendEquationAlpha',
358
- 'blending',
359
- 'blendSrc',
360
- 'blendSrcAlpha',
361
- 'clipIntersection',
362
- 'clippingPlanes',
363
- 'clipShadows',
364
- 'colorWrite',
365
- 'defines',
366
- 'depthFunc',
367
- 'depthTest',
368
- 'depthWrite',
369
- 'name',
370
- 'opacity',
371
- 'polygonOffset',
372
- 'polygonOffsetFactor',
373
- 'polygonOffsetUnits',
374
- 'precision',
375
- 'premultipliedAlpha',
376
- 'dithering',
377
- 'side',
378
- 'shadowSide',
379
- 'toneMapped',
380
- 'transparent',
381
- 'vertexColors',
382
- 'visible',
383
- 'format',
384
- 'stencilWrite',
385
- 'stencilFunc',
386
- 'stencilRef',
387
- 'stencilWriteMask',
388
- 'stencilFuncMask',
389
- 'stencilFail',
390
- 'stencilZFail',
391
- 'stencilZPass',
392
- 'userData',
393
- ];
394
- }
395
-
396
- // GENERATED - AngularThree v1.0.0
397
- class NgtMeshLambertMaterial extends THREE.MeshLambertMaterial {
398
- constructor() {
399
- super();
400
- return proxify(this, { attach: 'material' });
401
- }
402
- }
403
- NgtMeshLambertMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshLambertMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
404
- NgtMeshLambertMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMeshLambertMaterial, isStandalone: true, selector: "ngt-mesh-lambert-material", inputs: { bumpMap: "bumpMap", bumpScale: "bumpScale", color: "color", displacementMap: "displacementMap", displacementScale: "displacementScale", displacementBias: "displacementBias", emissive: "emissive", emissiveIntensity: "emissiveIntensity", emissiveMap: "emissiveMap", flatShading: "flatShading", map: "map", lightMap: "lightMap", lightMapIntensity: "lightMapIntensity", normalMap: "normalMap", normalScale: "normalScale", aoMap: "aoMap", aoMapIntensity: "aoMapIntensity", specularMap: "specularMap", alphaMap: "alphaMap", envMap: "envMap", combine: "combine", reflectivity: "reflectivity", refractionRatio: "refractionRatio", wireframe: "wireframe", wireframeLinewidth: "wireframeLinewidth", wireframeLinecap: "wireframeLinecap", wireframeLinejoin: "wireframeLinejoin", fog: "fog", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtMeshLambertMaterial)], 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 });
405
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshLambertMaterial, decorators: [{
406
- type: Component,
407
- args: [{
408
- selector: 'ngt-mesh-lambert-material',
409
- standalone: true,
410
- template: '<ng-content></ng-content>',
411
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
412
- providers: [provideInstanceRef(NgtMeshLambertMaterial)],
413
- inputs: [...getInputs$b()],
414
- }]
415
- }], ctorParameters: function () { return []; } });
416
- function getInputs$b() {
417
- return [
418
- 'bumpMap',
419
- 'bumpScale',
420
- 'color',
421
- 'displacementMap',
422
- 'displacementScale',
423
- 'displacementBias',
424
- 'emissive',
425
- 'emissiveIntensity',
426
- 'emissiveMap',
427
- 'flatShading',
428
- 'map',
429
- 'lightMap',
430
- 'lightMapIntensity',
431
- 'normalMap',
432
- 'normalScale',
433
- 'aoMap',
434
- 'aoMapIntensity',
435
- 'specularMap',
436
- 'alphaMap',
437
- 'envMap',
438
- 'combine',
439
- 'reflectivity',
440
- 'refractionRatio',
441
- 'wireframe',
442
- 'wireframeLinewidth',
443
- 'wireframeLinecap',
444
- 'wireframeLinejoin',
445
- 'fog',
446
- 'alphaTest',
447
- 'alphaToCoverage',
448
- 'blendDst',
449
- 'blendDstAlpha',
450
- 'blendEquation',
451
- 'blendEquationAlpha',
452
- 'blending',
453
- 'blendSrc',
454
- 'blendSrcAlpha',
455
- 'clipIntersection',
456
- 'clippingPlanes',
457
- 'clipShadows',
458
- 'colorWrite',
459
- 'defines',
460
- 'depthFunc',
461
- 'depthTest',
462
- 'depthWrite',
463
- 'name',
464
- 'opacity',
465
- 'polygonOffset',
466
- 'polygonOffsetFactor',
467
- 'polygonOffsetUnits',
468
- 'precision',
469
- 'premultipliedAlpha',
470
- 'dithering',
471
- 'side',
472
- 'shadowSide',
473
- 'toneMapped',
474
- 'transparent',
475
- 'vertexColors',
476
- 'visible',
477
- 'format',
478
- 'stencilWrite',
479
- 'stencilFunc',
480
- 'stencilRef',
481
- 'stencilWriteMask',
482
- 'stencilFuncMask',
483
- 'stencilFail',
484
- 'stencilZFail',
485
- 'stencilZPass',
486
- 'userData',
487
- ];
488
- }
489
-
490
- // GENERATED - AngularThree v1.0.0
491
- class NgtMeshMatcapMaterial extends THREE.MeshMatcapMaterial {
492
- constructor() {
493
- super();
494
- return proxify(this, { attach: 'material' });
495
- }
496
- }
497
- NgtMeshMatcapMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshMatcapMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
498
- NgtMeshMatcapMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMeshMatcapMaterial, isStandalone: true, selector: "ngt-mesh-matcap-material", inputs: { color: "color", matcap: "matcap", map: "map", bumpMap: "bumpMap", bumpScale: "bumpScale", normalMap: "normalMap", normalMapType: "normalMapType", normalScale: "normalScale", displacementMap: "displacementMap", displacementScale: "displacementScale", displacementBias: "displacementBias", alphaMap: "alphaMap", fog: "fog", flatShading: "flatShading", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtMeshMatcapMaterial)], 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 });
499
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshMatcapMaterial, decorators: [{
500
- type: Component,
501
- args: [{
502
- selector: 'ngt-mesh-matcap-material',
503
- standalone: true,
504
- template: '<ng-content></ng-content>',
505
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
506
- providers: [provideInstanceRef(NgtMeshMatcapMaterial)],
507
- inputs: [...getInputs$a()],
508
- }]
509
- }], ctorParameters: function () { return []; } });
510
- function getInputs$a() {
511
- return [
512
- 'color',
513
- 'matcap',
514
- 'map',
515
- 'bumpMap',
516
- 'bumpScale',
517
- 'normalMap',
518
- 'normalMapType',
519
- 'normalScale',
520
- 'displacementMap',
521
- 'displacementScale',
522
- 'displacementBias',
523
- 'alphaMap',
524
- 'fog',
525
- 'flatShading',
526
- 'alphaTest',
527
- 'alphaToCoverage',
528
- 'blendDst',
529
- 'blendDstAlpha',
530
- 'blendEquation',
531
- 'blendEquationAlpha',
532
- 'blending',
533
- 'blendSrc',
534
- 'blendSrcAlpha',
535
- 'clipIntersection',
536
- 'clippingPlanes',
537
- 'clipShadows',
538
- 'colorWrite',
539
- 'defines',
540
- 'depthFunc',
541
- 'depthTest',
542
- 'depthWrite',
543
- 'name',
544
- 'opacity',
545
- 'polygonOffset',
546
- 'polygonOffsetFactor',
547
- 'polygonOffsetUnits',
548
- 'precision',
549
- 'premultipliedAlpha',
550
- 'dithering',
551
- 'side',
552
- 'shadowSide',
553
- 'toneMapped',
554
- 'transparent',
555
- 'vertexColors',
556
- 'visible',
557
- 'format',
558
- 'stencilWrite',
559
- 'stencilFunc',
560
- 'stencilRef',
561
- 'stencilWriteMask',
562
- 'stencilFuncMask',
563
- 'stencilFail',
564
- 'stencilZFail',
565
- 'stencilZPass',
566
- 'userData',
567
- ];
568
- }
569
-
570
- // GENERATED - AngularThree v1.0.0
571
- class NgtMeshNormalMaterial extends THREE.MeshNormalMaterial {
572
- constructor() {
573
- super();
574
- return proxify(this, { attach: 'material' });
575
- }
576
- }
577
- NgtMeshNormalMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshNormalMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
578
- NgtMeshNormalMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMeshNormalMaterial, isStandalone: true, selector: "ngt-mesh-normal-material", inputs: { bumpMap: "bumpMap", bumpScale: "bumpScale", normalMap: "normalMap", normalMapType: "normalMapType", normalScale: "normalScale", displacementMap: "displacementMap", displacementScale: "displacementScale", displacementBias: "displacementBias", wireframe: "wireframe", wireframeLinewidth: "wireframeLinewidth", flatShading: "flatShading", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtMeshNormalMaterial)], 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 });
579
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshNormalMaterial, decorators: [{
580
- type: Component,
581
- args: [{
582
- selector: 'ngt-mesh-normal-material',
583
- standalone: true,
584
- template: '<ng-content></ng-content>',
585
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
586
- providers: [provideInstanceRef(NgtMeshNormalMaterial)],
587
- inputs: [...getInputs$9()],
588
- }]
589
- }], ctorParameters: function () { return []; } });
590
- function getInputs$9() {
591
- return [
592
- 'bumpMap',
593
- 'bumpScale',
594
- 'normalMap',
595
- 'normalMapType',
596
- 'normalScale',
597
- 'displacementMap',
598
- 'displacementScale',
599
- 'displacementBias',
600
- 'wireframe',
601
- 'wireframeLinewidth',
602
- 'flatShading',
603
- 'alphaTest',
604
- 'alphaToCoverage',
605
- 'blendDst',
606
- 'blendDstAlpha',
607
- 'blendEquation',
608
- 'blendEquationAlpha',
609
- 'blending',
610
- 'blendSrc',
611
- 'blendSrcAlpha',
612
- 'clipIntersection',
613
- 'clippingPlanes',
614
- 'clipShadows',
615
- 'colorWrite',
616
- 'defines',
617
- 'depthFunc',
618
- 'depthTest',
619
- 'depthWrite',
620
- 'name',
621
- 'opacity',
622
- 'polygonOffset',
623
- 'polygonOffsetFactor',
624
- 'polygonOffsetUnits',
625
- 'precision',
626
- 'premultipliedAlpha',
627
- 'dithering',
628
- 'side',
629
- 'shadowSide',
630
- 'toneMapped',
631
- 'transparent',
632
- 'vertexColors',
633
- 'visible',
634
- 'format',
635
- 'stencilWrite',
636
- 'stencilFunc',
637
- 'stencilRef',
638
- 'stencilWriteMask',
639
- 'stencilFuncMask',
640
- 'stencilFail',
641
- 'stencilZFail',
642
- 'stencilZPass',
643
- 'userData',
644
- ];
645
- }
646
-
647
- // GENERATED - AngularThree v1.0.0
648
- class NgtMeshPhongMaterial extends THREE.MeshPhongMaterial {
649
- constructor() {
650
- super();
651
- return proxify(this, { attach: 'material' });
652
- }
653
- }
654
- NgtMeshPhongMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshPhongMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
655
- NgtMeshPhongMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMeshPhongMaterial, isStandalone: true, selector: "ngt-mesh-phong-material", inputs: { color: "color", specular: "specular", shininess: "shininess", opacity: "opacity", map: "map", lightMap: "lightMap", lightMapIntensity: "lightMapIntensity", aoMap: "aoMap", aoMapIntensity: "aoMapIntensity", emissive: "emissive", emissiveIntensity: "emissiveIntensity", emissiveMap: "emissiveMap", bumpMap: "bumpMap", bumpScale: "bumpScale", normalMap: "normalMap", normalMapType: "normalMapType", normalScale: "normalScale", displacementMap: "displacementMap", displacementScale: "displacementScale", displacementBias: "displacementBias", specularMap: "specularMap", alphaMap: "alphaMap", envMap: "envMap", combine: "combine", reflectivity: "reflectivity", refractionRatio: "refractionRatio", wireframe: "wireframe", wireframeLinewidth: "wireframeLinewidth", wireframeLinecap: "wireframeLinecap", wireframeLinejoin: "wireframeLinejoin", fog: "fog", flatShading: "flatShading", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtMeshPhongMaterial)], 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 });
656
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshPhongMaterial, decorators: [{
657
- type: Component,
658
- args: [{
659
- selector: 'ngt-mesh-phong-material',
660
- standalone: true,
661
- template: '<ng-content></ng-content>',
662
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
663
- providers: [provideInstanceRef(NgtMeshPhongMaterial)],
664
- inputs: [...getInputs$8()],
665
- }]
666
- }], ctorParameters: function () { return []; } });
667
- function getInputs$8() {
668
- return [
669
- 'color',
670
- 'specular',
671
- 'shininess',
672
- 'opacity',
673
- 'map',
674
- 'lightMap',
675
- 'lightMapIntensity',
676
- 'aoMap',
677
- 'aoMapIntensity',
678
- 'emissive',
679
- 'emissiveIntensity',
680
- 'emissiveMap',
681
- 'bumpMap',
682
- 'bumpScale',
683
- 'normalMap',
684
- 'normalMapType',
685
- 'normalScale',
686
- 'displacementMap',
687
- 'displacementScale',
688
- 'displacementBias',
689
- 'specularMap',
690
- 'alphaMap',
691
- 'envMap',
692
- 'combine',
693
- 'reflectivity',
694
- 'refractionRatio',
695
- 'wireframe',
696
- 'wireframeLinewidth',
697
- 'wireframeLinecap',
698
- 'wireframeLinejoin',
699
- 'fog',
700
- 'flatShading',
701
- 'alphaTest',
702
- 'alphaToCoverage',
703
- 'blendDst',
704
- 'blendDstAlpha',
705
- 'blendEquation',
706
- 'blendEquationAlpha',
707
- 'blending',
708
- 'blendSrc',
709
- 'blendSrcAlpha',
710
- 'clipIntersection',
711
- 'clippingPlanes',
712
- 'clipShadows',
713
- 'colorWrite',
714
- 'defines',
715
- 'depthFunc',
716
- 'depthTest',
717
- 'depthWrite',
718
- 'name',
719
- 'polygonOffset',
720
- 'polygonOffsetFactor',
721
- 'polygonOffsetUnits',
722
- 'precision',
723
- 'premultipliedAlpha',
724
- 'dithering',
725
- 'side',
726
- 'shadowSide',
727
- 'toneMapped',
728
- 'transparent',
729
- 'vertexColors',
730
- 'visible',
731
- 'format',
732
- 'stencilWrite',
733
- 'stencilFunc',
734
- 'stencilRef',
735
- 'stencilWriteMask',
736
- 'stencilFuncMask',
737
- 'stencilFail',
738
- 'stencilZFail',
739
- 'stencilZPass',
740
- 'userData',
741
- ];
742
- }
743
-
744
- // GENERATED - AngularThree v1.0.0
745
- class NgtMeshPhysicalMaterial extends THREE.MeshPhysicalMaterial {
746
- constructor() {
747
- super();
748
- return proxify(this, { attach: 'material' });
749
- }
750
- }
751
- NgtMeshPhysicalMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshPhysicalMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
752
- NgtMeshPhysicalMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMeshPhysicalMaterial, isStandalone: true, selector: "ngt-mesh-physical-material", inputs: { clearcoat: "clearcoat", clearcoatMap: "clearcoatMap", clearcoatRoughness: "clearcoatRoughness", clearcoatRoughnessMap: "clearcoatRoughnessMap", clearcoatNormalScale: "clearcoatNormalScale", clearcoatNormalMap: "clearcoatNormalMap", reflectivity: "reflectivity", ior: "ior", sheen: "sheen", sheenColor: "sheenColor", sheenRoughness: "sheenRoughness", transmission: "transmission", transmissionMap: "transmissionMap", attenuationDistance: "attenuationDistance", attenuationColor: "attenuationColor", specularIntensity: "specularIntensity", specularColor: "specularColor", specularIntensityMap: "specularIntensityMap", specularColorMap: "specularColorMap", color: "color", roughness: "roughness", metalness: "metalness", map: "map", lightMap: "lightMap", lightMapIntensity: "lightMapIntensity", aoMap: "aoMap", aoMapIntensity: "aoMapIntensity", emissive: "emissive", emissiveIntensity: "emissiveIntensity", emissiveMap: "emissiveMap", bumpMap: "bumpMap", bumpScale: "bumpScale", normalMap: "normalMap", normalMapType: "normalMapType", normalScale: "normalScale", displacementMap: "displacementMap", displacementScale: "displacementScale", displacementBias: "displacementBias", roughnessMap: "roughnessMap", metalnessMap: "metalnessMap", alphaMap: "alphaMap", envMap: "envMap", envMapIntensity: "envMapIntensity", wireframe: "wireframe", wireframeLinewidth: "wireframeLinewidth", fog: "fog", flatShading: "flatShading", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtMeshPhysicalMaterial)], 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 });
753
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshPhysicalMaterial, decorators: [{
754
- type: Component,
755
- args: [{
756
- selector: 'ngt-mesh-physical-material',
757
- standalone: true,
758
- template: '<ng-content></ng-content>',
759
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
760
- providers: [provideInstanceRef(NgtMeshPhysicalMaterial)],
761
- inputs: [...getInputs$7()],
762
- }]
763
- }], ctorParameters: function () { return []; } });
764
- function getInputs$7() {
765
- return [
766
- 'clearcoat',
767
- 'clearcoatMap',
768
- 'clearcoatRoughness',
769
- 'clearcoatRoughnessMap',
770
- 'clearcoatNormalScale',
771
- 'clearcoatNormalMap',
772
- 'reflectivity',
773
- 'ior',
774
- 'sheen',
775
- 'sheenColor',
776
- 'sheenRoughness',
777
- 'transmission',
778
- 'transmissionMap',
779
- 'attenuationDistance',
780
- 'attenuationColor',
781
- 'specularIntensity',
782
- 'specularColor',
783
- 'specularIntensityMap',
784
- 'specularColorMap',
785
- 'color',
786
- 'roughness',
787
- 'metalness',
788
- 'map',
789
- 'lightMap',
790
- 'lightMapIntensity',
791
- 'aoMap',
792
- 'aoMapIntensity',
793
- 'emissive',
794
- 'emissiveIntensity',
795
- 'emissiveMap',
796
- 'bumpMap',
797
- 'bumpScale',
798
- 'normalMap',
799
- 'normalMapType',
800
- 'normalScale',
801
- 'displacementMap',
802
- 'displacementScale',
803
- 'displacementBias',
804
- 'roughnessMap',
805
- 'metalnessMap',
806
- 'alphaMap',
807
- 'envMap',
808
- 'envMapIntensity',
809
- 'wireframe',
810
- 'wireframeLinewidth',
811
- 'fog',
812
- 'flatShading',
813
- 'alphaTest',
814
- 'alphaToCoverage',
815
- 'blendDst',
816
- 'blendDstAlpha',
817
- 'blendEquation',
818
- 'blendEquationAlpha',
819
- 'blending',
820
- 'blendSrc',
821
- 'blendSrcAlpha',
822
- 'clipIntersection',
823
- 'clippingPlanes',
824
- 'clipShadows',
825
- 'colorWrite',
826
- 'defines',
827
- 'depthFunc',
828
- 'depthTest',
829
- 'depthWrite',
830
- 'name',
831
- 'opacity',
832
- 'polygonOffset',
833
- 'polygonOffsetFactor',
834
- 'polygonOffsetUnits',
835
- 'precision',
836
- 'premultipliedAlpha',
837
- 'dithering',
838
- 'side',
839
- 'shadowSide',
840
- 'toneMapped',
841
- 'transparent',
842
- 'vertexColors',
843
- 'visible',
844
- 'format',
845
- 'stencilWrite',
846
- 'stencilFunc',
847
- 'stencilRef',
848
- 'stencilWriteMask',
849
- 'stencilFuncMask',
850
- 'stencilFail',
851
- 'stencilZFail',
852
- 'stencilZPass',
853
- 'userData',
854
- ];
855
- }
856
-
857
- // GENERATED - AngularThree v1.0.0
858
- class NgtMeshStandardMaterial extends THREE.MeshStandardMaterial {
859
- constructor() {
860
- super();
861
- return proxify(this, { attach: 'material' });
862
- }
863
- }
864
- NgtMeshStandardMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshStandardMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
865
- NgtMeshStandardMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMeshStandardMaterial, isStandalone: true, selector: "ngt-mesh-standard-material", inputs: { color: "color", roughness: "roughness", metalness: "metalness", map: "map", lightMap: "lightMap", lightMapIntensity: "lightMapIntensity", aoMap: "aoMap", aoMapIntensity: "aoMapIntensity", emissive: "emissive", emissiveIntensity: "emissiveIntensity", emissiveMap: "emissiveMap", bumpMap: "bumpMap", bumpScale: "bumpScale", normalMap: "normalMap", normalMapType: "normalMapType", normalScale: "normalScale", displacementMap: "displacementMap", displacementScale: "displacementScale", displacementBias: "displacementBias", roughnessMap: "roughnessMap", metalnessMap: "metalnessMap", alphaMap: "alphaMap", envMap: "envMap", envMapIntensity: "envMapIntensity", wireframe: "wireframe", wireframeLinewidth: "wireframeLinewidth", fog: "fog", flatShading: "flatShading", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtMeshStandardMaterial)], 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 });
866
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshStandardMaterial, decorators: [{
867
- type: Component,
868
- args: [{
869
- selector: 'ngt-mesh-standard-material',
870
- standalone: true,
871
- template: '<ng-content></ng-content>',
872
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
873
- providers: [provideInstanceRef(NgtMeshStandardMaterial)],
874
- inputs: [...getInputs$6()],
875
- }]
876
- }], ctorParameters: function () { return []; } });
877
- function getInputs$6() {
878
- return [
879
- 'color',
880
- 'roughness',
881
- 'metalness',
882
- 'map',
883
- 'lightMap',
884
- 'lightMapIntensity',
885
- 'aoMap',
886
- 'aoMapIntensity',
887
- 'emissive',
888
- 'emissiveIntensity',
889
- 'emissiveMap',
890
- 'bumpMap',
891
- 'bumpScale',
892
- 'normalMap',
893
- 'normalMapType',
894
- 'normalScale',
895
- 'displacementMap',
896
- 'displacementScale',
897
- 'displacementBias',
898
- 'roughnessMap',
899
- 'metalnessMap',
900
- 'alphaMap',
901
- 'envMap',
902
- 'envMapIntensity',
903
- 'wireframe',
904
- 'wireframeLinewidth',
905
- 'fog',
906
- 'flatShading',
907
- 'alphaTest',
908
- 'alphaToCoverage',
909
- 'blendDst',
910
- 'blendDstAlpha',
911
- 'blendEquation',
912
- 'blendEquationAlpha',
913
- 'blending',
914
- 'blendSrc',
915
- 'blendSrcAlpha',
916
- 'clipIntersection',
917
- 'clippingPlanes',
918
- 'clipShadows',
919
- 'colorWrite',
920
- 'defines',
921
- 'depthFunc',
922
- 'depthTest',
923
- 'depthWrite',
924
- 'name',
925
- 'opacity',
926
- 'polygonOffset',
927
- 'polygonOffsetFactor',
928
- 'polygonOffsetUnits',
929
- 'precision',
930
- 'premultipliedAlpha',
931
- 'dithering',
932
- 'side',
933
- 'shadowSide',
934
- 'toneMapped',
935
- 'transparent',
936
- 'vertexColors',
937
- 'visible',
938
- 'format',
939
- 'stencilWrite',
940
- 'stencilFunc',
941
- 'stencilRef',
942
- 'stencilWriteMask',
943
- 'stencilFuncMask',
944
- 'stencilFail',
945
- 'stencilZFail',
946
- 'stencilZPass',
947
- 'userData',
948
- ];
949
- }
950
-
951
- // GENERATED - AngularThree v1.0.0
952
- class NgtMeshToonMaterial extends THREE.MeshToonMaterial {
953
- constructor() {
954
- super();
955
- return proxify(this, { attach: 'material' });
956
- }
957
- }
958
- NgtMeshToonMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshToonMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
959
- NgtMeshToonMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMeshToonMaterial, isStandalone: true, selector: "ngt-mesh-toon-material", inputs: { color: "color", opacity: "opacity", gradientMap: "gradientMap", map: "map", lightMap: "lightMap", lightMapIntensity: "lightMapIntensity", aoMap: "aoMap", aoMapIntensity: "aoMapIntensity", emissive: "emissive", emissiveIntensity: "emissiveIntensity", emissiveMap: "emissiveMap", bumpMap: "bumpMap", bumpScale: "bumpScale", normalMap: "normalMap", normalMapType: "normalMapType", normalScale: "normalScale", displacementMap: "displacementMap", displacementScale: "displacementScale", displacementBias: "displacementBias", alphaMap: "alphaMap", wireframe: "wireframe", wireframeLinewidth: "wireframeLinewidth", wireframeLinecap: "wireframeLinecap", wireframeLinejoin: "wireframeLinejoin", fog: "fog", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtMeshToonMaterial)], 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 });
960
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMeshToonMaterial, decorators: [{
961
- type: Component,
962
- args: [{
963
- selector: 'ngt-mesh-toon-material',
964
- standalone: true,
965
- template: '<ng-content></ng-content>',
966
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
967
- providers: [provideInstanceRef(NgtMeshToonMaterial)],
968
- inputs: [...getInputs$5()],
969
- }]
970
- }], ctorParameters: function () { return []; } });
971
- function getInputs$5() {
972
- return [
973
- 'color',
974
- 'opacity',
975
- 'gradientMap',
976
- 'map',
977
- 'lightMap',
978
- 'lightMapIntensity',
979
- 'aoMap',
980
- 'aoMapIntensity',
981
- 'emissive',
982
- 'emissiveIntensity',
983
- 'emissiveMap',
984
- 'bumpMap',
985
- 'bumpScale',
986
- 'normalMap',
987
- 'normalMapType',
988
- 'normalScale',
989
- 'displacementMap',
990
- 'displacementScale',
991
- 'displacementBias',
992
- 'alphaMap',
993
- 'wireframe',
994
- 'wireframeLinewidth',
995
- 'wireframeLinecap',
996
- 'wireframeLinejoin',
997
- 'fog',
998
- 'alphaTest',
999
- 'alphaToCoverage',
1000
- 'blendDst',
1001
- 'blendDstAlpha',
1002
- 'blendEquation',
1003
- 'blendEquationAlpha',
1004
- 'blending',
1005
- 'blendSrc',
1006
- 'blendSrcAlpha',
1007
- 'clipIntersection',
1008
- 'clippingPlanes',
1009
- 'clipShadows',
1010
- 'colorWrite',
1011
- 'defines',
1012
- 'depthFunc',
1013
- 'depthTest',
1014
- 'depthWrite',
1015
- 'name',
1016
- 'polygonOffset',
1017
- 'polygonOffsetFactor',
1018
- 'polygonOffsetUnits',
1019
- 'precision',
1020
- 'premultipliedAlpha',
1021
- 'dithering',
1022
- 'side',
1023
- 'shadowSide',
1024
- 'toneMapped',
1025
- 'transparent',
1026
- 'vertexColors',
1027
- 'visible',
1028
- 'format',
1029
- 'stencilWrite',
1030
- 'stencilFunc',
1031
- 'stencilRef',
1032
- 'stencilWriteMask',
1033
- 'stencilFuncMask',
1034
- 'stencilFail',
1035
- 'stencilZFail',
1036
- 'stencilZPass',
1037
- 'userData',
1038
- ];
1039
- }
1040
-
1041
- // GENERATED - AngularThree v1.0.0
1042
- class NgtPointsMaterial extends THREE.PointsMaterial {
1043
- constructor() {
1044
- super();
1045
- return proxify(this, { attach: 'material' });
1046
- }
1047
- }
1048
- NgtPointsMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPointsMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
1049
- NgtPointsMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtPointsMaterial, isStandalone: true, selector: "ngt-points-material", inputs: { color: "color", map: "map", alphaMap: "alphaMap", size: "size", sizeAttenuation: "sizeAttenuation", fog: "fog", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtPointsMaterial)], 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 });
1050
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtPointsMaterial, decorators: [{
1051
- type: Component,
1052
- args: [{
1053
- selector: 'ngt-points-material',
1054
- standalone: true,
1055
- template: '<ng-content></ng-content>',
1056
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
1057
- providers: [provideInstanceRef(NgtPointsMaterial)],
1058
- inputs: [...getInputs$4()],
1059
- }]
1060
- }], ctorParameters: function () { return []; } });
1061
- function getInputs$4() {
1062
- return [
1063
- 'color',
1064
- 'map',
1065
- 'alphaMap',
1066
- 'size',
1067
- 'sizeAttenuation',
1068
- 'fog',
1069
- 'alphaTest',
1070
- 'alphaToCoverage',
1071
- 'blendDst',
1072
- 'blendDstAlpha',
1073
- 'blendEquation',
1074
- 'blendEquationAlpha',
1075
- 'blending',
1076
- 'blendSrc',
1077
- 'blendSrcAlpha',
1078
- 'clipIntersection',
1079
- 'clippingPlanes',
1080
- 'clipShadows',
1081
- 'colorWrite',
1082
- 'defines',
1083
- 'depthFunc',
1084
- 'depthTest',
1085
- 'depthWrite',
1086
- 'name',
1087
- 'opacity',
1088
- 'polygonOffset',
1089
- 'polygonOffsetFactor',
1090
- 'polygonOffsetUnits',
1091
- 'precision',
1092
- 'premultipliedAlpha',
1093
- 'dithering',
1094
- 'side',
1095
- 'shadowSide',
1096
- 'toneMapped',
1097
- 'transparent',
1098
- 'vertexColors',
1099
- 'visible',
1100
- 'format',
1101
- 'stencilWrite',
1102
- 'stencilFunc',
1103
- 'stencilRef',
1104
- 'stencilWriteMask',
1105
- 'stencilFuncMask',
1106
- 'stencilFail',
1107
- 'stencilZFail',
1108
- 'stencilZPass',
1109
- 'userData',
1110
- ];
1111
- }
1112
-
1113
- // GENERATED - AngularThree v1.0.0
1114
- class NgtRawShaderMaterial extends THREE.RawShaderMaterial {
1115
- constructor() {
1116
- super();
1117
- return proxify(this, { attach: 'material' });
1118
- }
1119
- }
1120
- NgtRawShaderMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtRawShaderMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
1121
- NgtRawShaderMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtRawShaderMaterial, isStandalone: true, selector: "ngt-raw-shader-material", inputs: { uniforms: "uniforms", vertexShader: "vertexShader", fragmentShader: "fragmentShader", linewidth: "linewidth", wireframe: "wireframe", wireframeLinewidth: "wireframeLinewidth", lights: "lights", clipping: "clipping", fog: "fog", extensions: "extensions", glslVersion: "glslVersion", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtRawShaderMaterial)], 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 });
1122
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtRawShaderMaterial, decorators: [{
1123
- type: Component,
1124
- args: [{
1125
- selector: 'ngt-raw-shader-material',
1126
- standalone: true,
1127
- template: '<ng-content></ng-content>',
1128
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
1129
- providers: [provideInstanceRef(NgtRawShaderMaterial)],
1130
- inputs: [...getInputs$3()],
1131
- }]
1132
- }], ctorParameters: function () { return []; } });
1133
- function getInputs$3() {
1134
- return [
1135
- 'uniforms',
1136
- 'vertexShader',
1137
- 'fragmentShader',
1138
- 'linewidth',
1139
- 'wireframe',
1140
- 'wireframeLinewidth',
1141
- 'lights',
1142
- 'clipping',
1143
- 'fog',
1144
- 'extensions',
1145
- 'glslVersion',
1146
- 'alphaTest',
1147
- 'alphaToCoverage',
1148
- 'blendDst',
1149
- 'blendDstAlpha',
1150
- 'blendEquation',
1151
- 'blendEquationAlpha',
1152
- 'blending',
1153
- 'blendSrc',
1154
- 'blendSrcAlpha',
1155
- 'clipIntersection',
1156
- 'clippingPlanes',
1157
- 'clipShadows',
1158
- 'colorWrite',
1159
- 'defines',
1160
- 'depthFunc',
1161
- 'depthTest',
1162
- 'depthWrite',
1163
- 'name',
1164
- 'opacity',
1165
- 'polygonOffset',
1166
- 'polygonOffsetFactor',
1167
- 'polygonOffsetUnits',
1168
- 'precision',
1169
- 'premultipliedAlpha',
1170
- 'dithering',
1171
- 'side',
1172
- 'shadowSide',
1173
- 'toneMapped',
1174
- 'transparent',
1175
- 'vertexColors',
1176
- 'visible',
1177
- 'format',
1178
- 'stencilWrite',
1179
- 'stencilFunc',
1180
- 'stencilRef',
1181
- 'stencilWriteMask',
1182
- 'stencilFuncMask',
1183
- 'stencilFail',
1184
- 'stencilZFail',
1185
- 'stencilZPass',
1186
- 'userData',
1187
- ];
1188
- }
1189
-
1190
- // GENERATED - AngularThree v1.0.0
1191
- class NgtShaderMaterial extends THREE.ShaderMaterial {
1192
- constructor() {
1193
- super();
1194
- return proxify(this, { attach: 'material' });
1195
- }
1196
- }
1197
- NgtShaderMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtShaderMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
1198
- NgtShaderMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtShaderMaterial, isStandalone: true, selector: "ngt-shader-material", inputs: { uniforms: "uniforms", vertexShader: "vertexShader", fragmentShader: "fragmentShader", linewidth: "linewidth", wireframe: "wireframe", wireframeLinewidth: "wireframeLinewidth", lights: "lights", clipping: "clipping", fog: "fog", extensions: "extensions", glslVersion: "glslVersion", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtShaderMaterial)], 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 });
1199
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtShaderMaterial, decorators: [{
1200
- type: Component,
1201
- args: [{
1202
- selector: 'ngt-shader-material',
1203
- standalone: true,
1204
- template: '<ng-content></ng-content>',
1205
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
1206
- providers: [provideInstanceRef(NgtShaderMaterial)],
1207
- inputs: [...getInputs$2()],
1208
- }]
1209
- }], ctorParameters: function () { return []; } });
1210
- function getInputs$2() {
1211
- return [
1212
- 'uniforms',
1213
- 'vertexShader',
1214
- 'fragmentShader',
1215
- 'linewidth',
1216
- 'wireframe',
1217
- 'wireframeLinewidth',
1218
- 'lights',
1219
- 'clipping',
1220
- 'fog',
1221
- 'extensions',
1222
- 'glslVersion',
1223
- 'alphaTest',
1224
- 'alphaToCoverage',
1225
- 'blendDst',
1226
- 'blendDstAlpha',
1227
- 'blendEquation',
1228
- 'blendEquationAlpha',
1229
- 'blending',
1230
- 'blendSrc',
1231
- 'blendSrcAlpha',
1232
- 'clipIntersection',
1233
- 'clippingPlanes',
1234
- 'clipShadows',
1235
- 'colorWrite',
1236
- 'defines',
1237
- 'depthFunc',
1238
- 'depthTest',
1239
- 'depthWrite',
1240
- 'name',
1241
- 'opacity',
1242
- 'polygonOffset',
1243
- 'polygonOffsetFactor',
1244
- 'polygonOffsetUnits',
1245
- 'precision',
1246
- 'premultipliedAlpha',
1247
- 'dithering',
1248
- 'side',
1249
- 'shadowSide',
1250
- 'toneMapped',
1251
- 'transparent',
1252
- 'vertexColors',
1253
- 'visible',
1254
- 'format',
1255
- 'stencilWrite',
1256
- 'stencilFunc',
1257
- 'stencilRef',
1258
- 'stencilWriteMask',
1259
- 'stencilFuncMask',
1260
- 'stencilFail',
1261
- 'stencilZFail',
1262
- 'stencilZPass',
1263
- 'userData',
1264
- ];
1265
- }
1266
-
1267
- // GENERATED - AngularThree v1.0.0
1268
- class NgtShadowMaterial extends THREE.ShadowMaterial {
1269
- constructor() {
1270
- super();
1271
- return proxify(this, { attach: 'material' });
1272
- }
1273
- }
1274
- NgtShadowMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtShadowMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
1275
- NgtShadowMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtShadowMaterial, isStandalone: true, selector: "ngt-shadow-material", inputs: { color: "color", fog: "fog", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtShadowMaterial)], 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 });
1276
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtShadowMaterial, decorators: [{
1277
- type: Component,
1278
- args: [{
1279
- selector: 'ngt-shadow-material',
1280
- standalone: true,
1281
- template: '<ng-content></ng-content>',
1282
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
1283
- providers: [provideInstanceRef(NgtShadowMaterial)],
1284
- inputs: [...getInputs$1()],
1285
- }]
1286
- }], ctorParameters: function () { return []; } });
1287
- function getInputs$1() {
1288
- return [
1289
- 'color',
1290
- 'fog',
1291
- 'alphaTest',
1292
- 'alphaToCoverage',
1293
- 'blendDst',
1294
- 'blendDstAlpha',
1295
- 'blendEquation',
1296
- 'blendEquationAlpha',
1297
- 'blending',
1298
- 'blendSrc',
1299
- 'blendSrcAlpha',
1300
- 'clipIntersection',
1301
- 'clippingPlanes',
1302
- 'clipShadows',
1303
- 'colorWrite',
1304
- 'defines',
1305
- 'depthFunc',
1306
- 'depthTest',
1307
- 'depthWrite',
1308
- 'name',
1309
- 'opacity',
1310
- 'polygonOffset',
1311
- 'polygonOffsetFactor',
1312
- 'polygonOffsetUnits',
1313
- 'precision',
1314
- 'premultipliedAlpha',
1315
- 'dithering',
1316
- 'side',
1317
- 'shadowSide',
1318
- 'toneMapped',
1319
- 'transparent',
1320
- 'vertexColors',
1321
- 'visible',
1322
- 'format',
1323
- 'stencilWrite',
1324
- 'stencilFunc',
1325
- 'stencilRef',
1326
- 'stencilWriteMask',
1327
- 'stencilFuncMask',
1328
- 'stencilFail',
1329
- 'stencilZFail',
1330
- 'stencilZPass',
1331
- 'userData',
1332
- ];
1333
- }
1334
-
1335
- // GENERATED - AngularThree v1.0.0
1336
- class NgtSpriteMaterial extends THREE.SpriteMaterial {
1337
- constructor() {
1338
- super();
1339
- return proxify(this, { attach: 'material' });
1340
- }
1341
- }
1342
- NgtSpriteMaterial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtSpriteMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component });
1343
- NgtSpriteMaterial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtSpriteMaterial, isStandalone: true, selector: "ngt-sprite-material", inputs: { color: "color", map: "map", alphaMap: "alphaMap", rotation: "rotation", sizeAttenuation: "sizeAttenuation", fog: "fog", alphaTest: "alphaTest", alphaToCoverage: "alphaToCoverage", blendDst: "blendDst", blendDstAlpha: "blendDstAlpha", blendEquation: "blendEquation", blendEquationAlpha: "blendEquationAlpha", blending: "blending", blendSrc: "blendSrc", blendSrcAlpha: "blendSrcAlpha", clipIntersection: "clipIntersection", clippingPlanes: "clippingPlanes", clipShadows: "clipShadows", colorWrite: "colorWrite", defines: "defines", depthFunc: "depthFunc", depthTest: "depthTest", depthWrite: "depthWrite", name: "name", opacity: "opacity", polygonOffset: "polygonOffset", polygonOffsetFactor: "polygonOffsetFactor", polygonOffsetUnits: "polygonOffsetUnits", precision: "precision", premultipliedAlpha: "premultipliedAlpha", dithering: "dithering", side: "side", shadowSide: "shadowSide", toneMapped: "toneMapped", transparent: "transparent", vertexColors: "vertexColors", visible: "visible", format: "format", stencilWrite: "stencilWrite", stencilFunc: "stencilFunc", stencilRef: "stencilRef", stencilWriteMask: "stencilWriteMask", stencilFuncMask: "stencilFuncMask", stencilFail: "stencilFail", stencilZFail: "stencilZFail", stencilZPass: "stencilZPass", userData: "userData" }, providers: [provideInstanceRef(NgtSpriteMaterial)], 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 });
1344
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtSpriteMaterial, decorators: [{
1345
- type: Component,
1346
- args: [{
1347
- selector: 'ngt-sprite-material',
1348
- standalone: true,
1349
- template: '<ng-content></ng-content>',
1350
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
1351
- providers: [provideInstanceRef(NgtSpriteMaterial)],
1352
- inputs: [...getInputs()],
1353
- }]
1354
- }], ctorParameters: function () { return []; } });
1355
- function getInputs() {
1356
- return [
1357
- 'color',
1358
- 'map',
1359
- 'alphaMap',
1360
- 'rotation',
1361
- 'sizeAttenuation',
1362
- 'fog',
1363
- 'alphaTest',
1364
- 'alphaToCoverage',
1365
- 'blendDst',
1366
- 'blendDstAlpha',
1367
- 'blendEquation',
1368
- 'blendEquationAlpha',
1369
- 'blending',
1370
- 'blendSrc',
1371
- 'blendSrcAlpha',
1372
- 'clipIntersection',
1373
- 'clippingPlanes',
1374
- 'clipShadows',
1375
- 'colorWrite',
1376
- 'defines',
1377
- 'depthFunc',
1378
- 'depthTest',
1379
- 'depthWrite',
1380
- 'name',
1381
- 'opacity',
1382
- 'polygonOffset',
1383
- 'polygonOffsetFactor',
1384
- 'polygonOffsetUnits',
1385
- 'precision',
1386
- 'premultipliedAlpha',
1387
- 'dithering',
1388
- 'side',
1389
- 'shadowSide',
1390
- 'toneMapped',
1391
- 'transparent',
1392
- 'vertexColors',
1393
- 'visible',
1394
- 'format',
1395
- 'stencilWrite',
1396
- 'stencilFunc',
1397
- 'stencilRef',
1398
- 'stencilWriteMask',
1399
- 'stencilFuncMask',
1400
- 'stencilFail',
1401
- 'stencilZFail',
1402
- 'stencilZPass',
1403
- 'userData',
1404
- ];
1405
- }
1406
-
1407
- // GENERATED - AngularThree v1.0.0
1408
-
1409
- /**
1410
- * Generated bundle index. Do not edit.
1411
- */
1412
-
1413
- export { NgtLineBasicMaterial, NgtLineDashedMaterial, NgtMeshBasicMaterial, NgtMeshDepthMaterial, NgtMeshDistanceMaterial, NgtMeshLambertMaterial, NgtMeshMatcapMaterial, NgtMeshNormalMaterial, NgtMeshPhongMaterial, NgtMeshPhysicalMaterial, NgtMeshStandardMaterial, NgtMeshToonMaterial, NgtPointsMaterial, NgtRawShaderMaterial, NgtShaderMaterial, NgtShadowMaterial, NgtSpriteMaterial };
1414
- //# sourceMappingURL=angular-three-materials.mjs.map
1415
- //# sourceMappingURL=angular-three-materials.mjs.map