angular-three-soba 2.0.0-beta.7 → 2.0.0-beta.8

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 (296) hide show
  1. package/abstractions/billboard/billboard.d.ts +11 -7
  2. package/abstractions/detailed/detailed.d.ts +26 -0
  3. package/abstractions/edges/edges.d.ts +23 -11
  4. package/abstractions/grid/grid.d.ts +41 -50
  5. package/abstractions/index.d.ts +1 -7
  6. package/abstractions/text/text.d.ts +10 -4
  7. package/abstractions/text-3d/text-3d.d.ts +47 -40
  8. package/cameras/camera/camera-content.d.ts +1 -1
  9. package/cameras/camera/camera.d.ts +16 -13
  10. package/cameras/cube-camera/cube-camera.d.ts +50 -23
  11. package/cameras/index.d.ts +0 -1
  12. package/cameras/orthographic-camera/orthographic-camera.d.ts +29 -18
  13. package/cameras/perspective-camera/perspective-camera.d.ts +10 -1
  14. package/controls/orbit-controls/orbit-controls.d.ts +30 -13
  15. package/esm2022/abstractions/billboard/billboard.mjs +36 -33
  16. package/esm2022/abstractions/detailed/detailed.mjs +64 -0
  17. package/esm2022/abstractions/edges/edges.mjs +58 -63
  18. package/esm2022/abstractions/grid/grid.mjs +140 -110
  19. package/esm2022/abstractions/index.mjs +2 -8
  20. package/esm2022/abstractions/text/text.mjs +123 -122
  21. package/esm2022/abstractions/text-3d/text-3d.mjs +119 -121
  22. package/esm2022/cameras/camera/camera-content.mjs +5 -6
  23. package/esm2022/cameras/camera/camera.mjs +48 -42
  24. package/esm2022/cameras/cube-camera/cube-camera.mjs +129 -99
  25. package/esm2022/cameras/index.mjs +1 -2
  26. package/esm2022/cameras/orthographic-camera/orthographic-camera.mjs +78 -75
  27. package/esm2022/cameras/perspective-camera/perspective-camera.mjs +25 -26
  28. package/esm2022/controls/orbit-controls/orbit-controls.mjs +94 -90
  29. package/esm2022/loaders/gltf-loader/gltf-loader.mjs +3 -6
  30. package/esm2022/loaders/loader/loader.mjs +92 -87
  31. package/esm2022/loaders/progress/progress.mjs +1 -1
  32. package/esm2022/loaders/texture-loader/texture-loader.mjs +4 -4
  33. package/esm2022/materials/index.mjs +2 -1
  34. package/esm2022/materials/mesh-distort-material/mesh-distort-material.mjs +60 -51
  35. package/esm2022/materials/mesh-reflector-material/mesh-reflector-material.mjs +239 -255
  36. package/esm2022/materials/mesh-refraction-material/mesh-refraction-material.mjs +99 -97
  37. package/esm2022/materials/mesh-transmission-material/mesh-transmission-material.mjs +167 -146
  38. package/esm2022/materials/mesh-wobble-material/mesh-wobble-material.mjs +44 -42
  39. package/esm2022/materials/point-material/point-material.mjs +46 -0
  40. package/esm2022/misc/animations/animations.mjs +20 -16
  41. package/esm2022/misc/bake-shadows/bake-shadows.mjs +13 -13
  42. package/esm2022/misc/caustics/caustics.mjs +387 -0
  43. package/esm2022/misc/decal/decal.mjs +187 -0
  44. package/esm2022/misc/depth-buffer/depth-buffer.mjs +33 -35
  45. package/esm2022/misc/example/example.mjs +160 -0
  46. package/esm2022/misc/fbo/fbo.mjs +35 -35
  47. package/esm2022/misc/html/html-wrapper.mjs +478 -0
  48. package/esm2022/misc/html/html.mjs +304 -0
  49. package/esm2022/misc/index.mjs +10 -1
  50. package/esm2022/misc/sampler/sampler.mjs +142 -0
  51. package/esm2022/misc/shadow/shadow.mjs +111 -0
  52. package/esm2022/misc/stats-gl/stats-gl.mjs +61 -0
  53. package/esm2022/misc/trail/trail.mjs +209 -0
  54. package/esm2022/misc/trail-texture/inject-trail-texture.mjs +17 -0
  55. package/esm2022/misc/trail-texture/trail-texture.mjs +106 -0
  56. package/esm2022/modifiers/angular-three-soba-modifiers.mjs +5 -0
  57. package/esm2022/modifiers/curve-modifier/curve-modifier.mjs +64 -0
  58. package/esm2022/modifiers/index.mjs +2 -0
  59. package/esm2022/performances/adaptive-dpr/adaptive-dpr.mjs +44 -0
  60. package/esm2022/performances/adaptive-events/adaptive-events.mjs +27 -0
  61. package/esm2022/performances/angular-three-soba-performances.mjs +5 -0
  62. package/esm2022/performances/index.mjs +6 -0
  63. package/esm2022/performances/points/points-input.mjs +64 -0
  64. package/esm2022/performances/points/points.mjs +329 -0
  65. package/esm2022/performances/points/position-point.mjs +54 -0
  66. package/esm2022/performances/segments/segment-object.mjs +9 -0
  67. package/esm2022/performances/segments/segments.mjs +182 -0
  68. package/esm2022/shaders/blur-pass/blur-pass.mjs +1 -1
  69. package/esm2022/shaders/caustics/caustics-material.mjs +130 -0
  70. package/esm2022/shaders/caustics/caustics-projection-material.mjs +31 -0
  71. package/esm2022/shaders/convolution-material/convolution-material.mjs +1 -1
  72. package/esm2022/shaders/discard-material/discard-material.mjs +1 -1
  73. package/esm2022/shaders/grid-material/grid-material.mjs +29 -14
  74. package/esm2022/shaders/index.mjs +5 -3
  75. package/esm2022/shaders/mesh-distort-material/mesh-distort-material.mjs +42 -41
  76. package/esm2022/shaders/mesh-reflector-material/mesh-reflector-material.mjs +1 -1
  77. package/esm2022/shaders/mesh-refraction-material/mesh-refraction-material.mjs +2 -2
  78. package/esm2022/shaders/mesh-transmission-material/mesh-transmission-material.mjs +4 -4
  79. package/esm2022/shaders/mesh-wobble-material/mesh-wobble-material.mjs +1 -1
  80. package/esm2022/shaders/shader-material/shader-material.mjs +1 -1
  81. package/esm2022/shaders/soft-shadow-material/soft-shadow-material.mjs +17 -25
  82. package/esm2022/shaders/sparkles-material/sparkles-material.mjs +32 -46
  83. package/esm2022/shaders/spot-light-material/spot-light-material.mjs +7 -7
  84. package/esm2022/shaders/star-field-material/star-field-material.mjs +3 -2
  85. package/esm2022/shaders/wireframe-material/wireframe-material.mjs +247 -0
  86. package/esm2022/staging/accumulative-shadows/accumulative-shadows.mjs +160 -176
  87. package/esm2022/staging/accumulative-shadows/progressive-light-map.mjs +1 -1
  88. package/esm2022/staging/accumulative-shadows/randomized-lights.mjs +126 -128
  89. package/esm2022/staging/backdrop/backdrop.mjs +77 -0
  90. package/esm2022/staging/bb-anchor/bb-anchor.mjs +70 -0
  91. package/esm2022/staging/bounds/bounds.mjs +144 -143
  92. package/esm2022/staging/camera-shake/camera-shake.mjs +86 -80
  93. package/esm2022/staging/center/center.mjs +106 -91
  94. package/esm2022/staging/cloud/cloud.mjs +118 -124
  95. package/esm2022/staging/contact-shadows/contact-shadows.mjs +131 -134
  96. package/esm2022/staging/environment/assets.mjs +12 -12
  97. package/esm2022/staging/environment/environment-cube.mjs +28 -30
  98. package/esm2022/staging/environment/environment-ground.mjs +18 -20
  99. package/esm2022/staging/environment/environment-input.mjs +97 -84
  100. package/esm2022/staging/environment/environment-map.mjs +33 -33
  101. package/esm2022/staging/environment/environment-portal.mjs +75 -97
  102. package/esm2022/staging/environment/environment.mjs +34 -51
  103. package/esm2022/staging/environment/utils.mjs +35 -14
  104. package/esm2022/staging/float/float.mjs +70 -58
  105. package/esm2022/staging/index.mjs +7 -3
  106. package/esm2022/staging/matcap-texture/matcap-texture.mjs +64 -0
  107. package/esm2022/staging/normal-texture/normal-texture.mjs +53 -0
  108. package/esm2022/staging/sky/sky.mjs +85 -80
  109. package/esm2022/staging/sparkles/sparkles.mjs +108 -105
  110. package/esm2022/staging/spot-light/shadow-mesh-input.mjs +63 -0
  111. package/esm2022/staging/spot-light/shadow-mesh.mjs +266 -0
  112. package/esm2022/staging/spot-light/spot-light-input.mjs +67 -58
  113. package/esm2022/staging/spot-light/spot-light.mjs +51 -64
  114. package/esm2022/staging/spot-light/volumetric-mesh.mjs +61 -78
  115. package/esm2022/staging/stage/stage.mjs +304 -290
  116. package/esm2022/staging/stars/stars.mjs +101 -102
  117. package/esm2022/staging/wireframe/wireframe-input.mjs +191 -0
  118. package/esm2022/staging/wireframe/wireframe.mjs +224 -0
  119. package/esm2022/utils/angular-three-soba-utils.mjs +5 -0
  120. package/esm2022/utils/content/content.mjs +15 -0
  121. package/esm2022/utils/index.mjs +2 -0
  122. package/fesm2022/angular-three-soba-abstractions.mjs +505 -2087
  123. package/fesm2022/angular-three-soba-abstractions.mjs.map +1 -1
  124. package/fesm2022/angular-three-soba-cameras.mjs +302 -259
  125. package/fesm2022/angular-three-soba-cameras.mjs.map +1 -1
  126. package/fesm2022/angular-three-soba-controls.mjs +93 -88
  127. package/fesm2022/angular-three-soba-controls.mjs.map +1 -1
  128. package/fesm2022/angular-three-soba-loaders.mjs +94 -90
  129. package/fesm2022/angular-three-soba-loaders.mjs.map +1 -1
  130. package/fesm2022/angular-three-soba-materials.mjs +655 -590
  131. package/fesm2022/angular-three-soba-materials.mjs.map +1 -1
  132. package/fesm2022/angular-three-soba-misc.mjs +2198 -89
  133. package/fesm2022/angular-three-soba-misc.mjs.map +1 -1
  134. package/fesm2022/angular-three-soba-modifiers.mjs +71 -0
  135. package/fesm2022/angular-three-soba-modifiers.mjs.map +1 -0
  136. package/fesm2022/angular-three-soba-performances.mjs +697 -0
  137. package/fesm2022/angular-three-soba-performances.mjs.map +1 -0
  138. package/fesm2022/angular-three-soba-shaders.mjs +501 -264
  139. package/fesm2022/angular-three-soba-shaders.mjs.map +1 -1
  140. package/fesm2022/angular-three-soba-staging.mjs +2870 -2555
  141. package/fesm2022/angular-three-soba-staging.mjs.map +1 -1
  142. package/fesm2022/angular-three-soba-utils.mjs +22 -0
  143. package/fesm2022/angular-three-soba-utils.mjs.map +1 -0
  144. package/loaders/gltf-loader/gltf-loader.d.ts +4 -3
  145. package/loaders/loader/loader.d.ts +19 -17
  146. package/loaders/progress/progress.d.ts +1 -1
  147. package/loaders/texture-loader/texture-loader.d.ts +2 -2
  148. package/materials/index.d.ts +1 -0
  149. package/materials/mesh-distort-material/mesh-distort-material.d.ts +25 -15
  150. package/materials/mesh-reflector-material/mesh-reflector-material.d.ts +74 -56
  151. package/materials/mesh-refraction-material/mesh-refraction-material.d.ts +33 -21
  152. package/materials/mesh-transmission-material/mesh-transmission-material.d.ts +55 -39
  153. package/materials/mesh-wobble-material/mesh-wobble-material.d.ts +19 -10
  154. package/materials/point-material/point-material.d.ts +24 -0
  155. package/metadata.json +1 -0
  156. package/misc/animations/animations.d.ts +6 -4
  157. package/misc/caustics/caustics.d.ts +87 -0
  158. package/misc/decal/decal.d.ts +49 -0
  159. package/misc/depth-buffer/depth-buffer.d.ts +2 -2
  160. package/misc/example/example.d.ts +81 -0
  161. package/misc/fbo/fbo.d.ts +2 -2
  162. package/misc/html/html-wrapper.d.ts +559 -0
  163. package/misc/html/html.d.ts +214 -0
  164. package/misc/index.d.ts +9 -0
  165. package/misc/sampler/sampler.d.ts +67 -0
  166. package/misc/shadow/shadow.d.ts +37 -0
  167. package/misc/stats-gl/stats-gl.d.ts +24 -0
  168. package/misc/trail/trail.d.ts +57 -0
  169. package/misc/trail-texture/inject-trail-texture.d.ts +9 -0
  170. package/misc/trail-texture/trail-texture.d.ts +50 -0
  171. package/modifiers/README.md +3 -0
  172. package/modifiers/curve-modifier/curve-modifier.d.ts +23 -0
  173. package/modifiers/index.d.ts +1 -0
  174. package/package.json +30 -22
  175. package/performances/README.md +3 -0
  176. package/performances/adaptive-dpr/adaptive-dpr.d.ts +14 -0
  177. package/{performance/adaptive → performances/adaptive-events}/adaptive-events.d.ts +3 -0
  178. package/performances/index.d.ts +5 -0
  179. package/performances/points/points-input.d.ts +32 -0
  180. package/performances/points/points.d.ts +92 -0
  181. package/{performance/instances/position-mesh.d.ts → performances/points/position-point.d.ts} +4 -3
  182. package/performances/segments/segment-object.d.ts +7 -0
  183. package/performances/segments/segments.d.ts +124 -0
  184. package/shaders/grid-material/grid-material.d.ts +33 -0
  185. package/shaders/index.d.ts +4 -2
  186. package/shaders/mesh-distort-material/mesh-distort-material.d.ts +146 -1
  187. package/shaders/mesh-transmission-material/mesh-transmission-material.d.ts +1 -1
  188. package/shaders/shader-material/shader-material.d.ts +2 -2
  189. package/shaders/soft-shadow-material/soft-shadow-material.d.ts +10 -1
  190. package/shaders/sparkles-material/sparkles-material.d.ts +15 -1
  191. package/shaders/spot-light-material/spot-light-material.d.ts +11 -2
  192. package/shaders/star-field-material/star-field-material.d.ts +11 -1
  193. package/shaders/wireframe-material/wireframe-material.d.ts +58 -0
  194. package/staging/accumulative-shadows/accumulative-shadows.d.ts +89 -39
  195. package/staging/accumulative-shadows/randomized-lights.d.ts +40 -27
  196. package/staging/backdrop/backdrop.d.ts +30 -0
  197. package/staging/bb-anchor/bb-anchor.d.ts +27 -0
  198. package/staging/bounds/bounds.d.ts +100 -24
  199. package/staging/camera-shake/camera-shake.d.ts +30 -19
  200. package/staging/center/center.d.ts +43 -35
  201. package/staging/cloud/cloud.d.ts +26 -23
  202. package/staging/contact-shadows/contact-shadows.d.ts +41 -28
  203. package/staging/environment/assets.d.ts +9 -9
  204. package/staging/environment/environment-cube.d.ts +9 -5
  205. package/staging/environment/environment-ground.d.ts +7 -7
  206. package/staging/environment/environment-input.d.ts +36 -36
  207. package/staging/environment/environment-map.d.ts +10 -5
  208. package/staging/environment/environment-portal.d.ts +10 -5
  209. package/staging/environment/environment.d.ts +0 -4
  210. package/staging/environment/utils.d.ts +2 -2
  211. package/staging/float/float.d.ts +14 -10
  212. package/staging/index.d.ts +6 -2
  213. package/staging/matcap-texture/matcap-texture.d.ts +13 -0
  214. package/staging/normal-texture/normal-texture.d.ts +16 -0
  215. package/staging/sky/sky.d.ts +28 -21
  216. package/staging/sparkles/sparkles.d.ts +35 -21
  217. package/staging/spot-light/shadow-mesh-input.d.ts +29 -0
  218. package/staging/spot-light/shadow-mesh.d.ts +37 -0
  219. package/staging/spot-light/spot-light-input.d.ts +25 -25
  220. package/staging/spot-light/spot-light.d.ts +31 -15
  221. package/staging/spot-light/volumetric-mesh.d.ts +15 -9
  222. package/staging/stage/stage.d.ts +88 -63
  223. package/staging/stars/stars.d.ts +27 -16
  224. package/staging/wireframe/wireframe-input.d.ts +65 -0
  225. package/staging/wireframe/wireframe.d.ts +28 -0
  226. package/utils/README.md +3 -0
  227. package/utils/content/content.d.ts +8 -0
  228. package/utils/index.d.ts +1 -0
  229. package/web-types.json +1 -0
  230. package/abstractions/catmull-rom-line/catmull-rom-line.d.ts +0 -25
  231. package/abstractions/cubic-bezier-line/cubic-bezier-line.d.ts +0 -25
  232. package/abstractions/gizmo-helper/gizmo-helper.d.ts +0 -34
  233. package/abstractions/gizmo-helper/gizmo-viewcube/constants.d.ts +0 -12
  234. package/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-edge.d.ts +0 -22
  235. package/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-face.d.ts +0 -30
  236. package/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-inputs.d.ts +0 -32
  237. package/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube.d.ts +0 -14
  238. package/abstractions/gizmo-helper/gizmo-viewport/gizmo-viewport-axis.d.ts +0 -47
  239. package/abstractions/gizmo-helper/gizmo-viewport/gizmo-viewport.d.ts +0 -40
  240. package/abstractions/line/line-input.d.ts +0 -42
  241. package/abstractions/line/line.d.ts +0 -35
  242. package/abstractions/quadratic-bezier-line/quadratic-bezier-line.d.ts +0 -23
  243. package/esm2022/abstractions/catmull-rom-line/catmull-rom-line.mjs +0 -131
  244. package/esm2022/abstractions/cubic-bezier-line/cubic-bezier-line.mjs +0 -113
  245. package/esm2022/abstractions/gizmo-helper/gizmo-helper.mjs +0 -210
  246. package/esm2022/abstractions/gizmo-helper/gizmo-viewcube/constants.mjs +0 -31
  247. package/esm2022/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-edge.mjs +0 -95
  248. package/esm2022/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-face.mjs +0 -155
  249. package/esm2022/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-inputs.mjs +0 -62
  250. package/esm2022/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube.mjs +0 -80
  251. package/esm2022/abstractions/gizmo-helper/gizmo-viewport/gizmo-viewport-axis.mjs +0 -206
  252. package/esm2022/abstractions/gizmo-helper/gizmo-viewport/gizmo-viewport.mjs +0 -273
  253. package/esm2022/abstractions/line/line-input.mjs +0 -113
  254. package/esm2022/abstractions/line/line.mjs +0 -165
  255. package/esm2022/abstractions/quadratic-bezier-line/quadratic-bezier-line.mjs +0 -128
  256. package/esm2022/performance/adaptive/adaptive-dpr.mjs +0 -46
  257. package/esm2022/performance/adaptive/adaptive-events.mjs +0 -31
  258. package/esm2022/performance/angular-three-soba-performance.mjs +0 -5
  259. package/esm2022/performance/detailed/detailed.mjs +0 -61
  260. package/esm2022/performance/index.mjs +0 -7
  261. package/esm2022/performance/instances/instance.mjs +0 -48
  262. package/esm2022/performance/instances/instances.mjs +0 -189
  263. package/esm2022/performance/instances/position-mesh.mjs +0 -52
  264. package/esm2022/performance/stats/stats.mjs +0 -79
  265. package/esm2022/shaders/caustics-material/caustics-material.mjs +0 -128
  266. package/esm2022/shaders/caustics-material/caustics-projection-material.mjs +0 -33
  267. package/esm2022/staging/caustics/caustisc.mjs +0 -384
  268. package/esm2022/staging/spot-light/spot-light-shadow-mesh-input.mjs +0 -57
  269. package/esm2022/staging/spot-light/spot-light-shadow-mesh.mjs +0 -258
  270. package/fesm2022/angular-three-soba-performance.mjs +0 -487
  271. package/fesm2022/angular-three-soba-performance.mjs.map +0 -1
  272. package/performance/README.md +0 -3
  273. package/performance/adaptive/adaptive-dpr.d.ts +0 -8
  274. package/performance/detailed/detailed.d.ts +0 -20
  275. package/performance/index.d.ts +0 -6
  276. package/performance/instances/instance.d.ts +0 -9
  277. package/performance/instances/instances.d.ts +0 -35
  278. package/performance/stats/stats.d.ts +0 -18
  279. package/plugin/generators.json +0 -19
  280. package/plugin/libs/plugin/README.md +0 -11
  281. package/plugin/package.json +0 -9
  282. package/plugin/src/generators/init/compat.d.ts +0 -2
  283. package/plugin/src/generators/init/compat.js +0 -6
  284. package/plugin/src/generators/init/compat.js.map +0 -1
  285. package/plugin/src/generators/init/init.d.ts +0 -7
  286. package/plugin/src/generators/init/init.js +0 -28
  287. package/plugin/src/generators/init/init.js.map +0 -1
  288. package/plugin/src/generators/init/schema.json +0 -6
  289. package/plugin/src/index.d.ts +0 -1
  290. package/plugin/src/index.js +0 -6
  291. package/plugin/src/index.js.map +0 -1
  292. package/staging/caustics/caustisc.d.ts +0 -70
  293. package/staging/spot-light/spot-light-shadow-mesh-input.d.ts +0 -29
  294. package/staging/spot-light/spot-light-shadow-mesh.d.ts +0 -38
  295. /package/shaders/{caustics-material → caustics}/caustics-material.d.ts +0 -0
  296. /package/shaders/{caustics-material → caustics}/caustics-projection-material.d.ts +0 -0
package/metadata.json ADDED
@@ -0,0 +1 @@
1
+ {"$schema":"https://raw.githubusercontent.com/microsoft/vscode-html-languageservice/main/docs/customData.schema.json","version":1.1,"tags":[{"name":"ngts-orbit-controls","attributes":[{"name":"object"},{"name":"[object]"},{"name":"domElement"},{"name":"[domElement]"},{"name":"enabled"},{"name":"[enabled]"},{"name":"target"},{"name":"[target]"},{"name":"minDistance"},{"name":"[minDistance]"},{"name":"maxDistance"},{"name":"[maxDistance]"},{"name":"minZoom"},{"name":"[minZoom]"},{"name":"maxZoom"},{"name":"[maxZoom]"},{"name":"minPolarAngle"},{"name":"[minPolarAngle]"},{"name":"maxPolarAngle"},{"name":"[maxPolarAngle]"},{"name":"minAzimuthAngle"},{"name":"[minAzimuthAngle]"},{"name":"maxAzimuthAngle"},{"name":"[maxAzimuthAngle]"},{"name":"enableDamping"},{"name":"[enableDamping]"},{"name":"dampingFactor"},{"name":"[dampingFactor]"},{"name":"enableZoom"},{"name":"[enableZoom]"},{"name":"zoomSpeed"},{"name":"[zoomSpeed]"},{"name":"enableRotate"},{"name":"[enableRotate]"},{"name":"rotateSpeed"},{"name":"[rotateSpeed]"},{"name":"enablePan"},{"name":"[enablePan]"},{"name":"panSpeed"},{"name":"[panSpeed]"},{"name":"screenSpacePanning"},{"name":"[screenSpacePanning]"},{"name":"keyPanSpeed"},{"name":"[keyPanSpeed]"},{"name":"autoRotate"},{"name":"[autoRotate]"},{"name":"autoRotateSpeed"},{"name":"[autoRotateSpeed]"},{"name":"reverseOrbit"},{"name":"[reverseOrbit]"},{"name":"keys"},{"name":"[keys]"},{"name":"mouseButtons"},{"name":"[mouseButtons]"},{"name":"touches"},{"name":"[touches]"},{"name":"_domElementKeyEvents"},{"name":"[_domElementKeyEvents]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"camera"},{"name":"[camera]"},{"name":"makeDefault"},{"name":"[makeDefault]"},{"name":"regress"},{"name":"[regress]"},{"name":"keyEvents"},{"name":"[keyEvents]"}]},{"name":"ngts-billboard","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"follow"},{"name":"[follow]"},{"name":"lockX"},{"name":"[lockX]"},{"name":"lockY"},{"name":"[lockY]"},{"name":"lockZ"},{"name":"[lockZ]"}]},{"name":"ngts-text","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"text"},{"name":"[text]"},{"name":"fontSize"},{"name":"[fontSize]"},{"name":"anchorX"},{"name":"[anchorX]"},{"name":"anchorY"},{"name":"[anchorY]"},{"name":"sdfGlyphSize"},{"name":"[sdfGlyphSize]"},{"name":"font"},{"name":"[font]"},{"name":"characters"},{"name":"[characters]"},{"name":"color"},{"name":"[color]"},{"name":"maxWidth"},{"name":"[maxWidth]"},{"name":"lineHeight"},{"name":"[lineHeight]"},{"name":"letterSpacing"},{"name":"[letterSpacing]"},{"name":"textAlign"},{"name":"[textAlign]"},{"name":"clipRect"},{"name":"[clipRect]"},{"name":"depthOffset"},{"name":"[depthOffset]"},{"name":"direction"},{"name":"[direction]"},{"name":"overflowWrap"},{"name":"[overflowWrap]"},{"name":"whiteSpace"},{"name":"[whiteSpace]"},{"name":"outlineWidth"},{"name":"[outlineWidth]"},{"name":"outlineOffsetX"},{"name":"[outlineOffsetX]"},{"name":"outlineOffsetY"},{"name":"[outlineOffsetY]"},{"name":"outlineBlur"},{"name":"[outlineBlur]"},{"name":"outlineColor"},{"name":"[outlineColor]"},{"name":"outlineOpacity"},{"name":"[outlineOpacity]"},{"name":"strokeWidth"},{"name":"[strokeWidth]"},{"name":"strokeColor"},{"name":"[strokeColor]"},{"name":"strokeOpacity"},{"name":"[strokeOpacity]"},{"name":"fillOpacity"},{"name":"[fillOpacity]"},{"name":"debugSDF"},{"name":"[debugSDF]"}]},{"name":"ngts-grid","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"args"},{"name":"[args]"}]},{"name":"ngts-text-3d","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"bevelEnabled"},{"name":"[bevelEnabled]"},{"name":"bevelOffset"},{"name":"[bevelOffset]"},{"name":"bevelSize"},{"name":"[bevelSize]"},{"name":"bevelThickness"},{"name":"[bevelThickness]"},{"name":"curveSegments"},{"name":"[curveSegments]"},{"name":"font"},{"name":"[font]"},{"name":"height"},{"name":"[height]"},{"name":"size"},{"name":"[size]"},{"name":"lineHeight"},{"name":"[lineHeight]"},{"name":"letterSpacing"},{"name":"[letterSpacing]"},{"name":"text"},{"name":"[text]"},{"name":"bevelSegments"},{"name":"[bevelSegments]"},{"name":"smooth"},{"name":"[smooth]"}]},{"name":"ngts-perspective-camera","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"makeDefault"},{"name":"[makeDefault]"},{"name":"manual"},{"name":"[manual]"},{"name":"frames"},{"name":"[frames]"},{"name":"resolution"},{"name":"[resolution]"},{"name":"envMap"},{"name":"[envMap]"}]},{"name":"ngts-orthographic-camera","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"makeDefault"},{"name":"[makeDefault]"},{"name":"manual"},{"name":"[manual]"},{"name":"frames"},{"name":"[frames]"},{"name":"resolution"},{"name":"[resolution]"},{"name":"envMap"},{"name":"[envMap]"},{"name":"left"},{"name":"[left]"},{"name":"top"},{"name":"[top]"},{"name":"right"},{"name":"[right]"},{"name":"bottom"},{"name":"[bottom]"}]},{"name":"ngts-cube-camera","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"resolution"},{"name":"[resolution]"},{"name":"near"},{"name":"[near]"},{"name":"far"},{"name":"[far]"},{"name":"envMap"},{"name":"[envMap]"},{"name":"fog"},{"name":"[fog]"},{"name":"frames"},{"name":"[frames]"}]},{"name":"ngts-decal","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"debug"},{"name":"[debug]"},{"name":"mesh"},{"name":"[mesh]"},{"name":"map"},{"name":"[map]"},{"name":"polygonOffsetFactor"},{"name":"[polygonOffsetFactor]"},{"name":"depthTest"},{"name":"[depthTest]"}]},{"name":"ngts-sampler","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"count"},{"name":"[count]"},{"name":"mesh"},{"name":"[mesh]"},{"name":"transform"},{"name":"[transform]"},{"name":"weight"},{"name":"[weight]"},{"name":"instancedMesh"},{"name":"[instancedMesh]"}]},{"name":"ngts-shadow","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"colorStop"},{"name":"[colorStop]"},{"name":"fog"},{"name":"[fog]"},{"name":"color"},{"name":"[color]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"depthWrite"},{"name":"[depthWrite]"}]},{"name":"ngts-html","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"as"},{"name":"[as]"},{"name":"prepend"},{"name":"[prepend]"},{"name":"transform"},{"name":"[transform]"},{"name":"zIndexRange"},{"name":"[zIndexRange]"},{"name":"calculatePosition"},{"name":"[calculatePosition]"},{"name":"fullscreen"},{"name":"[fullscreen]"},{"name":"center"},{"name":"[center]"},{"name":"sprite"},{"name":"[sprite]"},{"name":"pointerEvents"},{"name":"[pointerEvents]"},{"name":"eps"},{"name":"[eps]"},{"name":"content"},{"name":"[content]"},{"name":"distanceFactor"},{"name":"[distanceFactor]"},{"name":"style"},{"name":"[style]"},{"name":"renderedDivClass"},{"name":"[renderedDivClass]"},{"name":"wrapperClass"},{"name":"[wrapperClass]"},{"name":"portal"},{"name":"[portal]"},{"name":"occlude"},{"name":"[occlude]"},{"name":"material"},{"name":"[material]"},{"name":"geometry"},{"name":"[geometry]"},{"name":"castShadow"},{"name":"[castShadow]"},{"name":"receiveShadow"},{"name":"[receiveShadow]"}]},{"name":"ngts-trail","attributes":[{"name":"color"},{"name":"[color]"},{"name":"attenuation"},{"name":"[attenuation]"},{"name":"target"},{"name":"[target]"}]},{"name":"ngts-mesh-wobble-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"alphaHash"},{"name":"[alphaHash]"},{"name":"alphaTest"},{"name":"[alphaTest]"},{"name":"alphaToCoverage"},{"name":"[alphaToCoverage]"},{"name":"blendDst"},{"name":"[blendDst]"},{"name":"blendDstAlpha"},{"name":"[blendDstAlpha]"},{"name":"blendEquation"},{"name":"[blendEquation]"},{"name":"blendEquationAlpha"},{"name":"[blendEquationAlpha]"},{"name":"blending"},{"name":"[blending]"},{"name":"blendSrc"},{"name":"[blendSrc]"},{"name":"blendSrcAlpha"},{"name":"[blendSrcAlpha]"},{"name":"clipIntersection"},{"name":"[clipIntersection]"},{"name":"clippingPlanes"},{"name":"[clippingPlanes]"},{"name":"clipShadows"},{"name":"[clipShadows]"},{"name":"colorWrite"},{"name":"[colorWrite]"},{"name":"defines"},{"name":"[defines]"},{"name":"depthFunc"},{"name":"[depthFunc]"},{"name":"depthTest"},{"name":"[depthTest]"},{"name":"depthWrite"},{"name":"[depthWrite]"},{"name":"stencilWrite"},{"name":"[stencilWrite]"},{"name":"stencilFunc"},{"name":"[stencilFunc]"},{"name":"stencilRef"},{"name":"[stencilRef]"},{"name":"stencilWriteMask"},{"name":"[stencilWriteMask]"},{"name":"stencilFuncMask"},{"name":"[stencilFuncMask]"},{"name":"stencilFail"},{"name":"[stencilFail]"},{"name":"stencilZFail"},{"name":"[stencilZFail]"},{"name":"stencilZPass"},{"name":"[stencilZPass]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"polygonOffset"},{"name":"[polygonOffset]"},{"name":"polygonOffsetFactor"},{"name":"[polygonOffsetFactor]"},{"name":"polygonOffsetUnits"},{"name":"[polygonOffsetUnits]"},{"name":"precision"},{"name":"[precision]"},{"name":"premultipliedAlpha"},{"name":"[premultipliedAlpha]"},{"name":"forceSinglePass"},{"name":"[forceSinglePass]"},{"name":"dithering"},{"name":"[dithering]"},{"name":"side"},{"name":"[side]"},{"name":"shadowSide"},{"name":"[shadowSide]"},{"name":"toneMapped"},{"name":"[toneMapped]"},{"name":"transparent"},{"name":"[transparent]"},{"name":"vertexColors"},{"name":"[vertexColors]"},{"name":"visible"},{"name":"[visible]"},{"name":"version"},{"name":"[version]"},{"name":"onBeforeCompile"},{"name":"[onBeforeCompile]"},{"name":"customProgramCacheKey"},{"name":"[customProgramCacheKey]"},{"name":"color"},{"name":"[color]"},{"name":"fog"},{"name":"[fog]"},{"name":"map"},{"name":"[map]"},{"name":"alphaMap"},{"name":"[alphaMap]"},{"name":"wireframe"},{"name":"[wireframe]"},{"name":"wireframeLinewidth"},{"name":"[wireframeLinewidth]"},{"name":"roughness"},{"name":"[roughness]"},{"name":"metalness"},{"name":"[metalness]"},{"name":"lightMap"},{"name":"[lightMap]"},{"name":"lightMapIntensity"},{"name":"[lightMapIntensity]"},{"name":"aoMap"},{"name":"[aoMap]"},{"name":"aoMapIntensity"},{"name":"[aoMapIntensity]"},{"name":"emissive"},{"name":"[emissive]"},{"name":"emissiveIntensity"},{"name":"[emissiveIntensity]"},{"name":"emissiveMap"},{"name":"[emissiveMap]"},{"name":"bumpMap"},{"name":"[bumpMap]"},{"name":"bumpScale"},{"name":"[bumpScale]"},{"name":"normalMap"},{"name":"[normalMap]"},{"name":"normalMapType"},{"name":"[normalMapType]"},{"name":"normalScale"},{"name":"[normalScale]"},{"name":"displacementMap"},{"name":"[displacementMap]"},{"name":"displacementScale"},{"name":"[displacementScale]"},{"name":"displacementBias"},{"name":"[displacementBias]"},{"name":"roughnessMap"},{"name":"[roughnessMap]"},{"name":"metalnessMap"},{"name":"[metalnessMap]"},{"name":"envMap"},{"name":"[envMap]"},{"name":"envMapIntensity"},{"name":"[envMapIntensity]"},{"name":"wireframeLinecap"},{"name":"[wireframeLinecap]"},{"name":"wireframeLinejoin"},{"name":"[wireframeLinejoin]"},{"name":"flatShading"},{"name":"[flatShading]"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"time"},{"name":"[time]"},{"name":"factor"},{"name":"[factor]"},{"name":"speed"},{"name":"[speed]"}]},{"name":"ngts-mesh-distort-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"alphaHash"},{"name":"[alphaHash]"},{"name":"alphaTest"},{"name":"[alphaTest]"},{"name":"alphaToCoverage"},{"name":"[alphaToCoverage]"},{"name":"blendDst"},{"name":"[blendDst]"},{"name":"blendDstAlpha"},{"name":"[blendDstAlpha]"},{"name":"blendEquation"},{"name":"[blendEquation]"},{"name":"blendEquationAlpha"},{"name":"[blendEquationAlpha]"},{"name":"blending"},{"name":"[blending]"},{"name":"blendSrc"},{"name":"[blendSrc]"},{"name":"blendSrcAlpha"},{"name":"[blendSrcAlpha]"},{"name":"clipIntersection"},{"name":"[clipIntersection]"},{"name":"clippingPlanes"},{"name":"[clippingPlanes]"},{"name":"clipShadows"},{"name":"[clipShadows]"},{"name":"colorWrite"},{"name":"[colorWrite]"},{"name":"defines"},{"name":"[defines]"},{"name":"depthFunc"},{"name":"[depthFunc]"},{"name":"depthTest"},{"name":"[depthTest]"},{"name":"depthWrite"},{"name":"[depthWrite]"},{"name":"stencilWrite"},{"name":"[stencilWrite]"},{"name":"stencilFunc"},{"name":"[stencilFunc]"},{"name":"stencilRef"},{"name":"[stencilRef]"},{"name":"stencilWriteMask"},{"name":"[stencilWriteMask]"},{"name":"stencilFuncMask"},{"name":"[stencilFuncMask]"},{"name":"stencilFail"},{"name":"[stencilFail]"},{"name":"stencilZFail"},{"name":"[stencilZFail]"},{"name":"stencilZPass"},{"name":"[stencilZPass]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"polygonOffset"},{"name":"[polygonOffset]"},{"name":"polygonOffsetFactor"},{"name":"[polygonOffsetFactor]"},{"name":"polygonOffsetUnits"},{"name":"[polygonOffsetUnits]"},{"name":"precision"},{"name":"[precision]"},{"name":"premultipliedAlpha"},{"name":"[premultipliedAlpha]"},{"name":"forceSinglePass"},{"name":"[forceSinglePass]"},{"name":"dithering"},{"name":"[dithering]"},{"name":"side"},{"name":"[side]"},{"name":"shadowSide"},{"name":"[shadowSide]"},{"name":"toneMapped"},{"name":"[toneMapped]"},{"name":"transparent"},{"name":"[transparent]"},{"name":"vertexColors"},{"name":"[vertexColors]"},{"name":"visible"},{"name":"[visible]"},{"name":"version"},{"name":"[version]"},{"name":"onBeforeCompile"},{"name":"[onBeforeCompile]"},{"name":"customProgramCacheKey"},{"name":"[customProgramCacheKey]"},{"name":"color"},{"name":"[color]"},{"name":"fog"},{"name":"[fog]"},{"name":"map"},{"name":"[map]"},{"name":"alphaMap"},{"name":"[alphaMap]"},{"name":"wireframe"},{"name":"[wireframe]"},{"name":"wireframeLinewidth"},{"name":"[wireframeLinewidth]"},{"name":"clearcoat"},{"name":"[clearcoat]"},{"name":"clearcoatMap"},{"name":"[clearcoatMap]"},{"name":"clearcoatRoughness"},{"name":"[clearcoatRoughness]"},{"name":"clearcoatRoughnessMap"},{"name":"[clearcoatRoughnessMap]"},{"name":"clearcoatNormalScale"},{"name":"[clearcoatNormalScale]"},{"name":"clearcoatNormalMap"},{"name":"[clearcoatNormalMap]"},{"name":"reflectivity"},{"name":"[reflectivity]"},{"name":"ior"},{"name":"[ior]"},{"name":"sheen"},{"name":"[sheen]"},{"name":"sheenColor"},{"name":"[sheenColor]"},{"name":"sheenColorMap"},{"name":"[sheenColorMap]"},{"name":"sheenRoughness"},{"name":"[sheenRoughness]"},{"name":"sheenRoughnessMap"},{"name":"[sheenRoughnessMap]"},{"name":"transmission"},{"name":"[transmission]"},{"name":"transmissionMap"},{"name":"[transmissionMap]"},{"name":"thickness"},{"name":"[thickness]"},{"name":"thicknessMap"},{"name":"[thicknessMap]"},{"name":"attenuationDistance"},{"name":"[attenuationDistance]"},{"name":"attenuationColor"},{"name":"[attenuationColor]"},{"name":"specularIntensity"},{"name":"[specularIntensity]"},{"name":"specularColor"},{"name":"[specularColor]"},{"name":"specularIntensityMap"},{"name":"[specularIntensityMap]"},{"name":"specularColorMap"},{"name":"[specularColorMap]"},{"name":"iridescenceMap"},{"name":"[iridescenceMap]"},{"name":"iridescenceIOR"},{"name":"[iridescenceIOR]"},{"name":"iridescence"},{"name":"[iridescence]"},{"name":"iridescenceThicknessRange"},{"name":"[iridescenceThicknessRange]"},{"name":"iridescenceThicknessMap"},{"name":"[iridescenceThicknessMap]"},{"name":"anisotropy"},{"name":"[anisotropy]"},{"name":"anisotropyRotation"},{"name":"[anisotropyRotation]"},{"name":"anisotropyMap"},{"name":"[anisotropyMap]"},{"name":"roughness"},{"name":"[roughness]"},{"name":"metalness"},{"name":"[metalness]"},{"name":"lightMap"},{"name":"[lightMap]"},{"name":"lightMapIntensity"},{"name":"[lightMapIntensity]"},{"name":"aoMap"},{"name":"[aoMap]"},{"name":"aoMapIntensity"},{"name":"[aoMapIntensity]"},{"name":"emissive"},{"name":"[emissive]"},{"name":"emissiveIntensity"},{"name":"[emissiveIntensity]"},{"name":"emissiveMap"},{"name":"[emissiveMap]"},{"name":"bumpMap"},{"name":"[bumpMap]"},{"name":"bumpScale"},{"name":"[bumpScale]"},{"name":"normalMap"},{"name":"[normalMap]"},{"name":"normalMapType"},{"name":"[normalMapType]"},{"name":"normalScale"},{"name":"[normalScale]"},{"name":"displacementMap"},{"name":"[displacementMap]"},{"name":"displacementScale"},{"name":"[displacementScale]"},{"name":"displacementBias"},{"name":"[displacementBias]"},{"name":"roughnessMap"},{"name":"[roughnessMap]"},{"name":"metalnessMap"},{"name":"[metalnessMap]"},{"name":"envMap"},{"name":"[envMap]"},{"name":"envMapIntensity"},{"name":"[envMapIntensity]"},{"name":"wireframeLinecap"},{"name":"[wireframeLinecap]"},{"name":"wireframeLinejoin"},{"name":"[wireframeLinejoin]"},{"name":"flatShading"},{"name":"[flatShading]"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"time"},{"name":"[time]"},{"name":"distort"},{"name":"[distort]"},{"name":"radius"},{"name":"[radius]"},{"name":"speed"},{"name":"[speed]"}]},{"name":"ngts-mesh-reflector-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"alphaHash"},{"name":"[alphaHash]"},{"name":"alphaTest"},{"name":"[alphaTest]"},{"name":"alphaToCoverage"},{"name":"[alphaToCoverage]"},{"name":"blendDst"},{"name":"[blendDst]"},{"name":"blendDstAlpha"},{"name":"[blendDstAlpha]"},{"name":"blendEquation"},{"name":"[blendEquation]"},{"name":"blendEquationAlpha"},{"name":"[blendEquationAlpha]"},{"name":"blending"},{"name":"[blending]"},{"name":"blendSrc"},{"name":"[blendSrc]"},{"name":"blendSrcAlpha"},{"name":"[blendSrcAlpha]"},{"name":"clipIntersection"},{"name":"[clipIntersection]"},{"name":"clippingPlanes"},{"name":"[clippingPlanes]"},{"name":"clipShadows"},{"name":"[clipShadows]"},{"name":"colorWrite"},{"name":"[colorWrite]"},{"name":"defines"},{"name":"[defines]"},{"name":"depthFunc"},{"name":"[depthFunc]"},{"name":"depthTest"},{"name":"[depthTest]"},{"name":"depthWrite"},{"name":"[depthWrite]"},{"name":"stencilWrite"},{"name":"[stencilWrite]"},{"name":"stencilFunc"},{"name":"[stencilFunc]"},{"name":"stencilRef"},{"name":"[stencilRef]"},{"name":"stencilWriteMask"},{"name":"[stencilWriteMask]"},{"name":"stencilFuncMask"},{"name":"[stencilFuncMask]"},{"name":"stencilFail"},{"name":"[stencilFail]"},{"name":"stencilZFail"},{"name":"[stencilZFail]"},{"name":"stencilZPass"},{"name":"[stencilZPass]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"polygonOffset"},{"name":"[polygonOffset]"},{"name":"polygonOffsetFactor"},{"name":"[polygonOffsetFactor]"},{"name":"polygonOffsetUnits"},{"name":"[polygonOffsetUnits]"},{"name":"precision"},{"name":"[precision]"},{"name":"premultipliedAlpha"},{"name":"[premultipliedAlpha]"},{"name":"forceSinglePass"},{"name":"[forceSinglePass]"},{"name":"dithering"},{"name":"[dithering]"},{"name":"side"},{"name":"[side]"},{"name":"shadowSide"},{"name":"[shadowSide]"},{"name":"toneMapped"},{"name":"[toneMapped]"},{"name":"transparent"},{"name":"[transparent]"},{"name":"vertexColors"},{"name":"[vertexColors]"},{"name":"visible"},{"name":"[visible]"},{"name":"version"},{"name":"[version]"},{"name":"onBeforeCompile"},{"name":"[onBeforeCompile]"},{"name":"customProgramCacheKey"},{"name":"[customProgramCacheKey]"},{"name":"color"},{"name":"[color]"},{"name":"fog"},{"name":"[fog]"},{"name":"map"},{"name":"[map]"},{"name":"alphaMap"},{"name":"[alphaMap]"},{"name":"wireframe"},{"name":"[wireframe]"},{"name":"wireframeLinewidth"},{"name":"[wireframeLinewidth]"},{"name":"roughness"},{"name":"[roughness]"},{"name":"metalness"},{"name":"[metalness]"},{"name":"lightMap"},{"name":"[lightMap]"},{"name":"lightMapIntensity"},{"name":"[lightMapIntensity]"},{"name":"aoMap"},{"name":"[aoMap]"},{"name":"aoMapIntensity"},{"name":"[aoMapIntensity]"},{"name":"emissive"},{"name":"[emissive]"},{"name":"emissiveIntensity"},{"name":"[emissiveIntensity]"},{"name":"emissiveMap"},{"name":"[emissiveMap]"},{"name":"bumpMap"},{"name":"[bumpMap]"},{"name":"bumpScale"},{"name":"[bumpScale]"},{"name":"normalMap"},{"name":"[normalMap]"},{"name":"normalMapType"},{"name":"[normalMapType]"},{"name":"normalScale"},{"name":"[normalScale]"},{"name":"displacementMap"},{"name":"[displacementMap]"},{"name":"displacementScale"},{"name":"[displacementScale]"},{"name":"displacementBias"},{"name":"[displacementBias]"},{"name":"roughnessMap"},{"name":"[roughnessMap]"},{"name":"metalnessMap"},{"name":"[metalnessMap]"},{"name":"envMap"},{"name":"[envMap]"},{"name":"envMapIntensity"},{"name":"[envMapIntensity]"},{"name":"wireframeLinecap"},{"name":"[wireframeLinecap]"},{"name":"wireframeLinejoin"},{"name":"[wireframeLinejoin]"},{"name":"flatShading"},{"name":"[flatShading]"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"resolution"},{"name":"[resolution]"},{"name":"mixBlur"},{"name":"[mixBlur]"},{"name":"mixStrength"},{"name":"[mixStrength]"},{"name":"blur"},{"name":"[blur]"},{"name":"mirror"},{"name":"[mirror]"},{"name":"minDepthThreshold"},{"name":"[minDepthThreshold]"},{"name":"maxDepthThreshold"},{"name":"[maxDepthThreshold]"},{"name":"depthScale"},{"name":"[depthScale]"},{"name":"depthToBlurRatioBias"},{"name":"[depthToBlurRatioBias]"},{"name":"distortionMap"},{"name":"[distortionMap]"},{"name":"distortion"},{"name":"[distortion]"},{"name":"mixContrast"},{"name":"[mixContrast]"},{"name":"reflectorOffset"},{"name":"[reflectorOffset]"}]},{"name":"ngt-point-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"alphaHash"},{"name":"[alphaHash]"},{"name":"alphaTest"},{"name":"[alphaTest]"},{"name":"alphaToCoverage"},{"name":"[alphaToCoverage]"},{"name":"blendDst"},{"name":"[blendDst]"},{"name":"blendDstAlpha"},{"name":"[blendDstAlpha]"},{"name":"blendEquation"},{"name":"[blendEquation]"},{"name":"blendEquationAlpha"},{"name":"[blendEquationAlpha]"},{"name":"blending"},{"name":"[blending]"},{"name":"blendSrc"},{"name":"[blendSrc]"},{"name":"blendSrcAlpha"},{"name":"[blendSrcAlpha]"},{"name":"clipIntersection"},{"name":"[clipIntersection]"},{"name":"clippingPlanes"},{"name":"[clippingPlanes]"},{"name":"clipShadows"},{"name":"[clipShadows]"},{"name":"colorWrite"},{"name":"[colorWrite]"},{"name":"defines"},{"name":"[defines]"},{"name":"depthFunc"},{"name":"[depthFunc]"},{"name":"depthTest"},{"name":"[depthTest]"},{"name":"depthWrite"},{"name":"[depthWrite]"},{"name":"stencilWrite"},{"name":"[stencilWrite]"},{"name":"stencilFunc"},{"name":"[stencilFunc]"},{"name":"stencilRef"},{"name":"[stencilRef]"},{"name":"stencilWriteMask"},{"name":"[stencilWriteMask]"},{"name":"stencilFuncMask"},{"name":"[stencilFuncMask]"},{"name":"stencilFail"},{"name":"[stencilFail]"},{"name":"stencilZFail"},{"name":"[stencilZFail]"},{"name":"stencilZPass"},{"name":"[stencilZPass]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"polygonOffset"},{"name":"[polygonOffset]"},{"name":"polygonOffsetFactor"},{"name":"[polygonOffsetFactor]"},{"name":"polygonOffsetUnits"},{"name":"[polygonOffsetUnits]"},{"name":"precision"},{"name":"[precision]"},{"name":"premultipliedAlpha"},{"name":"[premultipliedAlpha]"},{"name":"forceSinglePass"},{"name":"[forceSinglePass]"},{"name":"dithering"},{"name":"[dithering]"},{"name":"side"},{"name":"[side]"},{"name":"shadowSide"},{"name":"[shadowSide]"},{"name":"toneMapped"},{"name":"[toneMapped]"},{"name":"transparent"},{"name":"[transparent]"},{"name":"vertexColors"},{"name":"[vertexColors]"},{"name":"visible"},{"name":"[visible]"},{"name":"version"},{"name":"[version]"},{"name":"onBeforeCompile"},{"name":"[onBeforeCompile]"},{"name":"customProgramCacheKey"},{"name":"[customProgramCacheKey]"},{"name":"color"},{"name":"[color]"},{"name":"fog"},{"name":"[fog]"},{"name":"map"},{"name":"[map]"},{"name":"alphaMap"},{"name":"[alphaMap]"},{"name":"sizeAttenuation"},{"name":"[sizeAttenuation]"},{"name":"size"},{"name":"[size]"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"}]},{"name":"ngts-point-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"alphaHash"},{"name":"[alphaHash]"},{"name":"alphaTest"},{"name":"[alphaTest]"},{"name":"alphaToCoverage"},{"name":"[alphaToCoverage]"},{"name":"blendDst"},{"name":"[blendDst]"},{"name":"blendDstAlpha"},{"name":"[blendDstAlpha]"},{"name":"blendEquation"},{"name":"[blendEquation]"},{"name":"blendEquationAlpha"},{"name":"[blendEquationAlpha]"},{"name":"blending"},{"name":"[blending]"},{"name":"blendSrc"},{"name":"[blendSrc]"},{"name":"blendSrcAlpha"},{"name":"[blendSrcAlpha]"},{"name":"clipIntersection"},{"name":"[clipIntersection]"},{"name":"clippingPlanes"},{"name":"[clippingPlanes]"},{"name":"clipShadows"},{"name":"[clipShadows]"},{"name":"colorWrite"},{"name":"[colorWrite]"},{"name":"defines"},{"name":"[defines]"},{"name":"depthFunc"},{"name":"[depthFunc]"},{"name":"depthTest"},{"name":"[depthTest]"},{"name":"depthWrite"},{"name":"[depthWrite]"},{"name":"stencilWrite"},{"name":"[stencilWrite]"},{"name":"stencilFunc"},{"name":"[stencilFunc]"},{"name":"stencilRef"},{"name":"[stencilRef]"},{"name":"stencilWriteMask"},{"name":"[stencilWriteMask]"},{"name":"stencilFuncMask"},{"name":"[stencilFuncMask]"},{"name":"stencilFail"},{"name":"[stencilFail]"},{"name":"stencilZFail"},{"name":"[stencilZFail]"},{"name":"stencilZPass"},{"name":"[stencilZPass]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"polygonOffset"},{"name":"[polygonOffset]"},{"name":"polygonOffsetFactor"},{"name":"[polygonOffsetFactor]"},{"name":"polygonOffsetUnits"},{"name":"[polygonOffsetUnits]"},{"name":"precision"},{"name":"[precision]"},{"name":"premultipliedAlpha"},{"name":"[premultipliedAlpha]"},{"name":"forceSinglePass"},{"name":"[forceSinglePass]"},{"name":"dithering"},{"name":"[dithering]"},{"name":"side"},{"name":"[side]"},{"name":"shadowSide"},{"name":"[shadowSide]"},{"name":"toneMapped"},{"name":"[toneMapped]"},{"name":"transparent"},{"name":"[transparent]"},{"name":"vertexColors"},{"name":"[vertexColors]"},{"name":"visible"},{"name":"[visible]"},{"name":"version"},{"name":"[version]"},{"name":"onBeforeCompile"},{"name":"[onBeforeCompile]"},{"name":"customProgramCacheKey"},{"name":"[customProgramCacheKey]"},{"name":"color"},{"name":"[color]"},{"name":"fog"},{"name":"[fog]"},{"name":"map"},{"name":"[map]"},{"name":"alphaMap"},{"name":"[alphaMap]"},{"name":"sizeAttenuation"},{"name":"[sizeAttenuation]"},{"name":"size"},{"name":"[size]"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"}]},{"name":"ngts-points-instances","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"limit"},{"name":"[limit]"},{"name":"range"},{"name":"[range]"}]},{"name":"ngts-points-buffers","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"positions"},{"name":"[positions]"},{"name":"colors"},{"name":"[colors]"},{"name":"sizes"},{"name":"[sizes]"},{"name":"stride"},{"name":"[stride]"}]},{"name":"ngts-points","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"}]},{"name":"ngt-position-point","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"}]},{"name":"ngt-segment-object","attributes":[]},{"name":"ngts-segment","attributes":[{"name":"start"},{"name":"[start]"},{"name":"end"},{"name":"[end]"},{"name":"color"},{"name":"[color]"}]},{"name":"ngts-segments","attributes":[{"name":"limit"},{"name":"[limit]"},{"name":"lineWidth"},{"name":"[lineWidth]"}]},{"name":"ngt-wireframe-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"alphaHash"},{"name":"[alphaHash]"},{"name":"alphaTest"},{"name":"[alphaTest]"},{"name":"alphaToCoverage"},{"name":"[alphaToCoverage]"},{"name":"blendDst"},{"name":"[blendDst]"},{"name":"blendDstAlpha"},{"name":"[blendDstAlpha]"},{"name":"blendEquation"},{"name":"[blendEquation]"},{"name":"blendEquationAlpha"},{"name":"[blendEquationAlpha]"},{"name":"blending"},{"name":"[blending]"},{"name":"blendSrc"},{"name":"[blendSrc]"},{"name":"blendSrcAlpha"},{"name":"[blendSrcAlpha]"},{"name":"clipIntersection"},{"name":"[clipIntersection]"},{"name":"clippingPlanes"},{"name":"[clippingPlanes]"},{"name":"clipShadows"},{"name":"[clipShadows]"},{"name":"colorWrite"},{"name":"[colorWrite]"},{"name":"defines"},{"name":"[defines]"},{"name":"depthFunc"},{"name":"[depthFunc]"},{"name":"depthTest"},{"name":"[depthTest]"},{"name":"depthWrite"},{"name":"[depthWrite]"},{"name":"stencilWrite"},{"name":"[stencilWrite]"},{"name":"stencilFunc"},{"name":"[stencilFunc]"},{"name":"stencilRef"},{"name":"[stencilRef]"},{"name":"stencilWriteMask"},{"name":"[stencilWriteMask]"},{"name":"stencilFuncMask"},{"name":"[stencilFuncMask]"},{"name":"stencilFail"},{"name":"[stencilFail]"},{"name":"stencilZFail"},{"name":"[stencilZFail]"},{"name":"stencilZPass"},{"name":"[stencilZPass]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"polygonOffset"},{"name":"[polygonOffset]"},{"name":"polygonOffsetFactor"},{"name":"[polygonOffsetFactor]"},{"name":"polygonOffsetUnits"},{"name":"[polygonOffsetUnits]"},{"name":"precision"},{"name":"[precision]"},{"name":"premultipliedAlpha"},{"name":"[premultipliedAlpha]"},{"name":"forceSinglePass"},{"name":"[forceSinglePass]"},{"name":"dithering"},{"name":"[dithering]"},{"name":"side"},{"name":"[side]"},{"name":"shadowSide"},{"name":"[shadowSide]"},{"name":"toneMapped"},{"name":"[toneMapped]"},{"name":"transparent"},{"name":"[transparent]"},{"name":"vertexColors"},{"name":"[vertexColors]"},{"name":"visible"},{"name":"[visible]"},{"name":"version"},{"name":"[version]"},{"name":"onBeforeCompile"},{"name":"[onBeforeCompile]"},{"name":"customProgramCacheKey"},{"name":"[customProgramCacheKey]"},{"name":"fog"},{"name":"[fog]"},{"name":"uniforms"},{"name":"[uniforms]"},{"name":"uniformsGroups"},{"name":"[uniformsGroups]"},{"name":"vertexShader"},{"name":"[vertexShader]"},{"name":"fragmentShader"},{"name":"[fragmentShader]"},{"name":"linewidth"},{"name":"[linewidth]"},{"name":"wireframe"},{"name":"[wireframe]"},{"name":"wireframeLinewidth"},{"name":"[wireframeLinewidth]"},{"name":"lights"},{"name":"[lights]"},{"name":"clipping"},{"name":"[clipping]"},{"name":"derivatives"},{"name":"[derivatives]"},{"name":"extensions"},{"name":"[extensions]"},{"name":"defaultAttributeValues"},{"name":"[defaultAttributeValues]"},{"name":"index0AttributeName"},{"name":"[index0AttributeName]"},{"name":"uniformsNeedUpdate"},{"name":"[uniformsNeedUpdate]"},{"name":"glslVersion"},{"name":"[glslVersion]"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"fillOpacity"},{"name":"[fillOpacity]"},{"name":"fillMix"},{"name":"[fillMix]"},{"name":"strokeOpacity"},{"name":"[strokeOpacity]"},{"name":"thickness"},{"name":"[thickness]"},{"name":"colorBackfaces"},{"name":"[colorBackfaces]"},{"name":"dashInvert"},{"name":"[dashInvert]"},{"name":"dash"},{"name":"[dash]"},{"name":"dashRepeats"},{"name":"[dashRepeats]"},{"name":"dashLength"},{"name":"[dashLength]"},{"name":"squeeze"},{"name":"[squeeze]"},{"name":"squeezeMin"},{"name":"[squeezeMin]"},{"name":"squeezeMax"},{"name":"[squeezeMax]"},{"name":"stroke"},{"name":"[stroke]"},{"name":"backfaceStroke"},{"name":"[backfaceStroke]"},{"name":"fill"},{"name":"[fill]"}]},{"name":"ngts-center","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"top"},{"name":"[top]"},{"name":"right"},{"name":"[right]"},{"name":"bottom"},{"name":"[bottom]"},{"name":"left"},{"name":"[left]"},{"name":"front"},{"name":"[front]"},{"name":"back"},{"name":"[back]"},{"name":"disable"},{"name":"[disable]"},{"name":"disableX"},{"name":"[disableX]"},{"name":"disableY"},{"name":"[disableY]"},{"name":"disableZ"},{"name":"[disableZ]"},{"name":"precise"},{"name":"[precise]"},{"name":"cacheKey"},{"name":"[cacheKey]"}]},{"name":"ngts-float","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"enabled"},{"name":"[enabled]"},{"name":"speed"},{"name":"[speed]"},{"name":"rotationIntensity"},{"name":"[rotationIntensity]"},{"name":"floatIntensity"},{"name":"[floatIntensity]"},{"name":"floatingRange"},{"name":"[floatingRange]"}]},{"name":"ngts-camera-shake","attributes":[{"name":"decay"},{"name":"[decay]"},{"name":"intensity"},{"name":"[intensity]"},{"name":"decayRate"},{"name":"[decayRate]"},{"name":"maxYaw"},{"name":"[maxYaw]"},{"name":"maxPitch"},{"name":"[maxPitch]"},{"name":"maxRoll"},{"name":"[maxRoll]"},{"name":"yawFrequency"},{"name":"[yawFrequency]"},{"name":"pitchFrequency"},{"name":"[pitchFrequency]"},{"name":"rollFrequency"},{"name":"[rollFrequency]"}]},{"name":"ngts-cloud","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"opacity"},{"name":"[opacity]"},{"name":"speed"},{"name":"[speed]"},{"name":"width"},{"name":"[width]"},{"name":"depth"},{"name":"[depth]"},{"name":"segments"},{"name":"[segments]"},{"name":"texture"},{"name":"[texture]"},{"name":"color"},{"name":"[color]"},{"name":"depthTest"},{"name":"[depthTest]"}]},{"name":"ngts-contact-shadows","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"opacity"},{"name":"[opacity]"},{"name":"width"},{"name":"[width]"},{"name":"height"},{"name":"[height]"},{"name":"blur"},{"name":"[blur]"},{"name":"far"},{"name":"[far]"},{"name":"smooth"},{"name":"[smooth]"},{"name":"resolution"},{"name":"[resolution]"},{"name":"frames"},{"name":"[frames]"},{"name":"color"},{"name":"[color]"},{"name":"depthWrite"},{"name":"[depthWrite]"},{"name":"renderOrder"},{"name":"[renderOrder]"}]},{"name":"ngts-sparkles","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"count"},{"name":"[count]"},{"name":"speed"},{"name":"[speed]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"color"},{"name":"[color]"},{"name":"size"},{"name":"[size]"},{"name":"noise"},{"name":"[noise]"}]},{"name":"ngts-sky","attributes":[{"name":"SkyShader"},{"name":"[SkyShader]"},{"name":"material"},{"name":"[material]"},{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"distance"},{"name":"[distance]"},{"name":"sunPosition"},{"name":"[sunPosition]"},{"name":"inclination"},{"name":"[inclination]"},{"name":"azimuth"},{"name":"[azimuth]"},{"name":"mieCoefficient"},{"name":"[mieCoefficient]"},{"name":"mieDirectionalG"},{"name":"[mieDirectionalG]"},{"name":"rayleigh"},{"name":"[rayleigh]"},{"name":"turbidity"},{"name":"[turbidity]"}]},{"name":"ngts-spot-light","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"depthBuffer"},{"name":"[depthBuffer]"},{"name":"angle"},{"name":"[angle]"},{"name":"distance"},{"name":"[distance]"},{"name":"attenuation"},{"name":"[attenuation]"},{"name":"anglePower"},{"name":"[anglePower]"},{"name":"radiusTop"},{"name":"[radiusTop]"},{"name":"radiusBottom"},{"name":"[radiusBottom]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"color"},{"name":"[color]"},{"name":"debug"},{"name":"[debug]"}]},{"name":"ngts-stars","attributes":[{"name":"radius"},{"name":"[radius]"},{"name":"depth"},{"name":"[depth]"},{"name":"count"},{"name":"[count]"},{"name":"factor"},{"name":"[factor]"},{"name":"saturation"},{"name":"[saturation]"},{"name":"fade"},{"name":"[fade]"},{"name":"speed"},{"name":"[speed]"}]},{"name":"ngts-accumulative-shadows","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"frames"},{"name":"[frames]"},{"name":"blend"},{"name":"[blend]"},{"name":"limit"},{"name":"[limit]"},{"name":"temporal"},{"name":"[temporal]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"alphaTest"},{"name":"[alphaTest]"},{"name":"color"},{"name":"[color]"},{"name":"colorBlend"},{"name":"[colorBlend]"},{"name":"resolution"},{"name":"[resolution]"},{"name":"toneMapped"},{"name":"[toneMapped]"}]},{"name":"ngts-randomized-lights","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"frames"},{"name":"[frames]"},{"name":"radius"},{"name":"[radius]"},{"name":"amount"},{"name":"[amount]"},{"name":"intensity"},{"name":"[intensity]"},{"name":"ambient"},{"name":"[ambient]"},{"name":"castShadow"},{"name":"[castShadow]"},{"name":"bias"},{"name":"[bias]"},{"name":"mapSize"},{"name":"[mapSize]"},{"name":"size"},{"name":"[size]"},{"name":"near"},{"name":"[near]"},{"name":"far"},{"name":"[far]"}]},{"name":"ngts-stage","attributes":[{"name":"preset"},{"name":"[preset]"},{"name":"shadows"},{"name":"[shadows]"},{"name":"adjustCamera"},{"name":"[adjustCamera]"},{"name":"environment"},{"name":"[environment]"},{"name":"intensity"},{"name":"[intensity]"},{"name":"center"},{"name":"[center]"}]},{"name":"ngts-backdrop","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"floor"},{"name":"[floor]"},{"name":"segments"},{"name":"[segments]"},{"name":"receiveShadow"},{"name":"[receiveShadow]"}]},{"name":"ngts-bb-anchor","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"anchor"},{"name":"[anchor]"}]}]}
@@ -1,13 +1,15 @@
1
1
  import { Injector } from '@angular/core';
2
- import { type NgtInjectedRef } from 'angular-three';
2
+ import { type NgtRef } from 'angular-three';
3
3
  import * as THREE from 'three';
4
- export declare function injectNgtsAnimations(animationsFactory: () => THREE.AnimationClip[], { ref, injector }?: {
5
- ref?: NgtInjectedRef<THREE.Object3D> | THREE.Object3D;
4
+ export declare function injectNgtsAnimations(animationsFactory: () => THREE.AnimationClip[], { ref, injector, playFirstClip, }?: {
5
+ ref?: NgtRef<THREE.Object3D>;
6
+ playFirstClip?: boolean;
6
7
  injector?: Injector;
7
8
  }): {
8
- ref: NgtInjectedRef<THREE.Object3D<THREE.Event>>;
9
+ ref: import("angular-three").NgtInjectedRef<THREE.Object3D<THREE.Event>>;
9
10
  actions: Record<string, THREE.AnimationAction>;
10
11
  mixer: THREE.AnimationMixer;
11
12
  names: string[];
12
13
  clips: THREE.AnimationClip[];
14
+ ready: import("@angular/core").Signal<boolean>;
13
15
  };
@@ -0,0 +1,87 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import { NgtGroup } from 'angular-three';
3
+ import * as THREE from 'three';
4
+ import * as i0 from "@angular/core";
5
+ export type NgtsCausticsState = {
6
+ /** How many frames it will render, set it to Infinity for runtime, default: 1 */
7
+ frames: number;
8
+ /** Enables visual cues to help you stage your scene, default: false */
9
+ debug: boolean;
10
+ /** Will display caustics only and skip the models, default: false */
11
+ causticsOnly: boolean;
12
+ /** Will include back faces and enable the backsideIOR prop, default: false */
13
+ backside: boolean;
14
+ /** The IOR refraction index, default: 1.1 */
15
+ ior: number;
16
+ /** The IOR refraction index for back faces (only available when backside is enabled), default: 1.1 */
17
+ backsideIOR: number;
18
+ /** The texel size, default: 0.3125 */
19
+ worldRadius: number;
20
+ /** Intensity of the prjected caustics, default: 0.05 */
21
+ intensity: number;
22
+ /** Caustics color, default: white */
23
+ color: THREE.ColorRepresentation;
24
+ /** Buffer resolution, default: 2048 */
25
+ resolution: number;
26
+ /** Camera position, it will point towards the contents bounds center, default: [5, 5, 5] */
27
+ lightSource: [x: number, y: number, z: number] | ElementRef<THREE.Object3D>;
28
+ };
29
+ declare global {
30
+ interface HTMLElementTagNameMap {
31
+ /**
32
+ * @extends ngt-group
33
+ */
34
+ 'ngts-caustics': NgtsCausticsState & NgtGroup;
35
+ }
36
+ }
37
+ export declare class NgtsCaustics {
38
+ CustomBlending: 5;
39
+ OneFactor: 201;
40
+ SrcAlphaFactor: 204;
41
+ Math: Math;
42
+ private inputs;
43
+ causticsRef: import("angular-three").NgtInjectedRef<THREE.Group>;
44
+ /** How many frames it will render, set it to Infinity for runtime, default: 1 */
45
+ set _frames(frames: number);
46
+ /** Enables visual cues to help you stage your scene, default: false */
47
+ set _debug(debug: boolean);
48
+ /** Will display caustics only and skip the models, default: false */
49
+ set _causticsOnly(causticsOnly: boolean);
50
+ /** Will include back faces and enable the backsideIOR prop, default: false */
51
+ set _backside(backside: boolean);
52
+ /** The IOR refraction index, default: 1.1 */
53
+ set _ior(ior: number);
54
+ /** The IOR refraction index for back faces (only available when backside is enabled), default: 1.1 */
55
+ set _backsideIOR(backsideIOR: number);
56
+ /** The texel size, default: 0.3125 */
57
+ set _worldRadius(worldRadius: number);
58
+ /** Intensity of the prjected caustics, default: 0.05 */
59
+ set _intensity(intensity: number);
60
+ /** Caustics color, default: white */
61
+ set _color(color: THREE.ColorRepresentation);
62
+ /** Buffer resolution, default: 2048 */
63
+ set _resolution(resolution: number);
64
+ /** Camera position, it will point towards the contents bounds center, default: [5, 5, 5] */
65
+ set _lightSource(lightSource: [x: number, y: number, z: number] | ElementRef<THREE.Object3D>);
66
+ private resolution;
67
+ private normalTargetSettings;
68
+ private causticsTargetSettings;
69
+ private normalTargetFbo;
70
+ private normalTargetBFbo;
71
+ causticsTargetFbo: import("angular-three").NgtInjectedRef<THREE.WebGLRenderTarget<THREE.Texture> | null>;
72
+ causticsTargetBFbo: import("angular-three").NgtInjectedRef<THREE.WebGLRenderTarget<THREE.Texture> | null>;
73
+ private store;
74
+ color: import("@angular/core").Signal<THREE.ColorRepresentation>;
75
+ debug: import("@angular/core").Signal<boolean>;
76
+ planeRef: import("angular-three").NgtInjectedRef<THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[]>>;
77
+ sceneRef: import("angular-three").NgtInjectedRef<THREE.Scene>;
78
+ cameraRef: import("angular-three").NgtInjectedRef<THREE.OrthographicCamera>;
79
+ private sceneChildren;
80
+ private planeChildren;
81
+ private causticsChildren;
82
+ constructor();
83
+ private updateWorldMatrix;
84
+ private setBeforeRender;
85
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgtsCaustics, never>;
86
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtsCaustics, "ngts-caustics", never, { "causticsRef": { "alias": "causticsRef"; "required": false; }; "_frames": { "alias": "frames"; "required": false; }; "_debug": { "alias": "debug"; "required": false; }; "_causticsOnly": { "alias": "causticsOnly"; "required": false; }; "_backside": { "alias": "backside"; "required": false; }; "_ior": { "alias": "ior"; "required": false; }; "_backsideIOR": { "alias": "backsideIOR"; "required": false; }; "_worldRadius": { "alias": "worldRadius"; "required": false; }; "_intensity": { "alias": "intensity"; "required": false; }; "_color": { "alias": "color"; "required": false; }; "_resolution": { "alias": "resolution"; "required": false; }; "_lightSource": { "alias": "lightSource"; "required": false; }; }, {}, never, ["*"], true, never>;
87
+ }
@@ -0,0 +1,49 @@
1
+ import { type NgtEuler, type NgtMesh, type NgtRef, type NgtVector3 } from 'angular-three';
2
+ import * as THREE from 'three';
3
+ import * as i0 from "@angular/core";
4
+ export type NgtsDecalState = {
5
+ debug: boolean;
6
+ mesh?: NgtRef<THREE.Mesh>;
7
+ position: NgtVector3;
8
+ rotation: NgtEuler | number;
9
+ scale: NgtVector3;
10
+ map?: THREE.Texture;
11
+ polygonOffsetFactor: number;
12
+ depthTest: boolean;
13
+ };
14
+ declare global {
15
+ interface HTMLElementTagNameMap {
16
+ /**
17
+ * @extends ngt-mesh
18
+ */
19
+ 'ngts-decal': NgtsDecalState & NgtMesh;
20
+ }
21
+ }
22
+ export declare class NgtsDecal {
23
+ private inputs;
24
+ decalRef: import("angular-three").NgtInjectedRef<THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[]>>;
25
+ set _debug(debug: boolean);
26
+ set _mesh(mesh: NgtRef<THREE.Mesh>);
27
+ set _position(position: NgtVector3);
28
+ set _rotation(rotation: NgtEuler | number);
29
+ set _scale(scale: NgtVector3);
30
+ set _map(map: THREE.Texture);
31
+ set _polygonOffsetFactor(polygonOffsetFactor: number);
32
+ set _depthTest(depthTest: boolean);
33
+ private mesh;
34
+ private __position;
35
+ private __rotation;
36
+ private __scale;
37
+ private position;
38
+ private rotation;
39
+ private scale;
40
+ helperRef: import("angular-three").NgtInjectedRef<THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[]>>;
41
+ debug: import("@angular/core").Signal<boolean>;
42
+ depthTest: import("@angular/core").Signal<boolean>;
43
+ polygonOffsetFactor: import("@angular/core").Signal<number>;
44
+ map: import("@angular/core").Signal<THREE.Texture | undefined>;
45
+ constructor();
46
+ private processDecal;
47
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgtsDecal, never>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtsDecal, "ngts-decal", never, { "decalRef": { "alias": "decalRef"; "required": false; }; "_debug": { "alias": "debug"; "required": false; }; "_mesh": { "alias": "mesh"; "required": false; }; "_position": { "alias": "position"; "required": false; }; "_rotation": { "alias": "rotation"; "required": false; }; "_scale": { "alias": "scale"; "required": false; }; "_map": { "alias": "map"; "required": false; }; "_polygonOffsetFactor": { "alias": "polygonOffsetFactor"; "required": false; }; "_depthTest": { "alias": "depthTest"; "required": false; }; }, {}, never, ["*"], true, never>;
49
+ }
@@ -1,4 +1,4 @@
1
- import { Injector } from '@angular/core';
1
+ import { type Injector } from '@angular/core';
2
2
  import * as THREE from 'three';
3
3
  export interface NgtsDepthBufferParams {
4
4
  size: number;
@@ -6,4 +6,4 @@ export interface NgtsDepthBufferParams {
6
6
  }
7
7
  export declare function injectNgtsDepthBuffer(paramsFactory?: () => Partial<NgtsDepthBufferParams>, { injector }?: {
8
8
  injector?: Injector;
9
- }): import("@angular/core").Signal<THREE.DepthTexture>;
9
+ }): import("angular-three").NgtInjectedRef<THREE.DepthTexture | null>;
@@ -0,0 +1,81 @@
1
+ import { Group } from 'three';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * define states of a component. usually acts for inputs signalStore
5
+ */
6
+ export type NgtsExampleState = {
7
+ font: string;
8
+ color: THREE.ColorRepresentation;
9
+ debug: boolean;
10
+ bevelSize: number;
11
+ };
12
+ /**
13
+ * We can setup public API for this soba component with createInjectionToken + forwardRef
14
+ * the `example.api` is **usually** a computed property in the component class
15
+ *
16
+ * @see Bounds for example
17
+ */
18
+ export declare const injectNgtsExampleApi: {
19
+ (): import("@angular/core").Signal<{
20
+ bevelSize: number;
21
+ increment: () => void;
22
+ decrement: () => void;
23
+ }>;
24
+ (injectOptions: import("@angular/core").InjectOptions & {
25
+ optional?: false | undefined;
26
+ }): import("@angular/core").Signal<{
27
+ bevelSize: number;
28
+ increment: () => void;
29
+ decrement: () => void;
30
+ }>;
31
+ (injectOptions: import("@angular/core").InjectOptions): import("@angular/core").Signal<{
32
+ bevelSize: number;
33
+ increment: () => void;
34
+ decrement: () => void;
35
+ }> | null;
36
+ }, provideNgtsExampleApi: (value?: import("@angular/core").Signal<{
37
+ bevelSize: number;
38
+ increment: () => void;
39
+ decrement: () => void;
40
+ }> | undefined) => import("@angular/core").Provider;
41
+ export declare class NgtsExample {
42
+ /**
43
+ * use signalStore to store inputs with default inputs
44
+ */
45
+ private inputs;
46
+ /**
47
+ * a soba component usually has a Input for the component ref and this Input always has a default value with injectNgtRef
48
+ */
49
+ exampleRef: import("angular-three").NgtInjectedRef<Group>;
50
+ /**
51
+ * setup Input for the Inputs state. Use alias to have an easier time to setup computed
52
+ *
53
+ * @example: this way "private font" and "set _font" won't conflict
54
+ * private font = this.inputs.select('font');
55
+ */
56
+ set _font(font: string);
57
+ set _color(color: THREE.ColorRepresentation);
58
+ set _debug(debug: boolean);
59
+ set _bevelSize(bevelSize: number);
60
+ /**
61
+ * exposes signals from inputs
62
+ */
63
+ bevelSize: import("@angular/core").Signal<number>;
64
+ font: import("@angular/core").Signal<string>;
65
+ debug: import("@angular/core").Signal<boolean>;
66
+ color: import("@angular/core").Signal<import("three").ColorRepresentation>;
67
+ /**
68
+ * can have internal state
69
+ */
70
+ count: import("@angular/core").WritableSignal<number>;
71
+ /**
72
+ * Expose the public API for this soba component
73
+ */
74
+ api: import("@angular/core").Signal<{
75
+ bevelSize: number;
76
+ increment: () => void;
77
+ decrement: () => void;
78
+ }>;
79
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgtsExample, never>;
80
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtsExample, "ngts-example", never, { "exampleRef": { "alias": "exampleRef"; "required": false; }; "_font": { "alias": "font"; "required": true; }; "_color": { "alias": "color"; "required": false; }; "_debug": { "alias": "debug"; "required": false; }; "_bevelSize": { "alias": "bevelSize"; "required": false; }; }, {}, never, ["*"], true, never>;
81
+ }
package/misc/fbo/fbo.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Injector } from '@angular/core';
1
+ import { type Injector } from '@angular/core';
2
2
  import * as THREE from 'three';
3
3
  interface FBOSettings extends THREE.WebGLRenderTargetOptions {
4
4
  /** Defines the count of MSAA samples. Can only be used with WebGL 2. Default: 0 */
@@ -13,5 +13,5 @@ export interface NgtsFBOParams {
13
13
  }
14
14
  export declare function injectNgtsFBO(fboParams: () => NgtsFBOParams, { injector }?: {
15
15
  injector?: Injector;
16
- }): import("@angular/core").Signal<THREE.WebGLRenderTarget>;
16
+ }): import("angular-three").NgtInjectedRef<THREE.WebGLRenderTarget<THREE.Texture> | null>;
17
17
  export {};