angular-three 2.0.0-beta.3 → 2.0.0-beta.31

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 (146) hide show
  1. package/README.md +4 -147
  2. package/esm2022/angular-three.mjs +1 -1
  3. package/esm2022/index.mjs +10 -11
  4. package/esm2022/lib/before-render.mjs +13 -0
  5. package/esm2022/lib/canvas.mjs +137 -162
  6. package/esm2022/lib/directives/args.mjs +13 -11
  7. package/esm2022/lib/directives/common.mjs +29 -27
  8. package/esm2022/lib/directives/key.mjs +29 -0
  9. package/esm2022/lib/directives/parent.mjs +13 -11
  10. package/esm2022/lib/dom/events.mjs +6 -1
  11. package/esm2022/lib/events.mjs +75 -58
  12. package/esm2022/lib/instance.mjs +65 -0
  13. package/esm2022/lib/loader.mjs +31 -38
  14. package/esm2022/lib/loop.mjs +6 -3
  15. package/esm2022/lib/portal.mjs +91 -102
  16. package/esm2022/lib/ref.mjs +48 -0
  17. package/esm2022/lib/renderer/catalogue.mjs +7 -0
  18. package/esm2022/lib/renderer/constants.mjs +21 -0
  19. package/esm2022/lib/renderer/index.mjs +419 -0
  20. package/esm2022/lib/renderer/store.mjs +144 -108
  21. package/esm2022/lib/renderer/utils.mjs +63 -48
  22. package/esm2022/lib/roots.mjs +249 -0
  23. package/esm2022/lib/routed-scene.mjs +11 -8
  24. package/esm2022/lib/store.mjs +207 -0
  25. package/esm2022/lib/three-types.mjs +2 -2
  26. package/esm2022/lib/types.mjs +1 -1
  27. package/esm2022/lib/utils/apply-props.mjs +23 -11
  28. package/esm2022/lib/utils/attach.mjs +2 -2
  29. package/esm2022/lib/utils/is.mjs +1 -1
  30. package/esm2022/lib/utils/make.mjs +1 -1
  31. package/esm2022/lib/utils/safe-detect-changes.mjs +15 -13
  32. package/esm2022/lib/utils/signal-store.mjs +96 -0
  33. package/esm2022/lib/utils/update.mjs +1 -1
  34. package/fesm2022/angular-three.mjs +1991 -1870
  35. package/fesm2022/angular-three.mjs.map +1 -1
  36. package/index.d.ts +9 -10
  37. package/lib/{di/before-render.d.ts → before-render.d.ts} +1 -1
  38. package/lib/canvas.d.ts +82 -12
  39. package/lib/directives/args.d.ts +2 -2
  40. package/lib/directives/common.d.ts +5 -1
  41. package/lib/directives/key.d.ts +10 -0
  42. package/lib/directives/parent.d.ts +5 -5
  43. package/lib/dom/events.d.ts +3 -2
  44. package/lib/events.d.ts +78 -2
  45. package/lib/instance.d.ts +36 -0
  46. package/lib/loader.d.ts +13 -2
  47. package/lib/loop.d.ts +64 -6
  48. package/lib/portal.d.ts +20 -12
  49. package/lib/{di/ref.d.ts → ref.d.ts} +3 -2
  50. package/lib/renderer/catalogue.d.ts +9 -0
  51. package/lib/renderer/constants.d.ts +20 -0
  52. package/lib/renderer/index.d.ts +5 -0
  53. package/lib/renderer/store.d.ts +19 -15
  54. package/lib/renderer/utils.d.ts +28 -18
  55. package/lib/roots.d.ts +11 -0
  56. package/lib/routed-scene.d.ts +1 -1
  57. package/lib/store.d.ts +143 -0
  58. package/lib/three-types.d.ts +5 -5
  59. package/lib/types.d.ts +1 -309
  60. package/lib/utils/apply-props.d.ts +4 -2
  61. package/lib/utils/attach.d.ts +5 -3
  62. package/lib/utils/is.d.ts +5 -4
  63. package/lib/utils/make.d.ts +12 -1
  64. package/lib/utils/safe-detect-changes.d.ts +2 -2
  65. package/lib/utils/signal-store.d.ts +17 -0
  66. package/lib/utils/update.d.ts +1 -1
  67. package/metadata.json +1 -1
  68. package/package.json +22 -5
  69. package/plugin/generators.json +47 -17
  70. package/plugin/migrations.json +16 -0
  71. package/plugin/package.json +20 -4
  72. package/plugin/src/generators/init/compat.d.ts +3 -1
  73. package/plugin/src/generators/init/compat.js +2 -2
  74. package/plugin/src/generators/init/compat.js.map +1 -1
  75. package/plugin/src/generators/init/files/experience/experience.component.html__tmpl__ +4 -0
  76. package/plugin/src/generators/init/files/experience/experience.component.ts__tmpl__ +18 -0
  77. package/plugin/src/generators/init/generator.d.ts +6 -0
  78. package/plugin/src/generators/init/generator.js +160 -0
  79. package/plugin/src/generators/init/generator.js.map +1 -0
  80. package/plugin/src/generators/init/schema.json +15 -4
  81. package/plugin/src/generators/init-cannon/compat.d.ts +2 -0
  82. package/plugin/src/generators/init-cannon/compat.js +6 -0
  83. package/plugin/src/generators/init-cannon/compat.js.map +1 -0
  84. package/plugin/src/generators/init-cannon/generator.d.ts +2 -0
  85. package/plugin/src/generators/init-cannon/generator.js +23 -0
  86. package/plugin/src/generators/init-cannon/generator.js.map +1 -0
  87. package/plugin/src/generators/init-cannon/schema.json +6 -0
  88. package/plugin/src/generators/init-postprocessing/compat.d.ts +2 -0
  89. package/plugin/src/generators/init-postprocessing/compat.js +6 -0
  90. package/plugin/src/generators/init-postprocessing/compat.js.map +1 -0
  91. package/plugin/src/generators/init-postprocessing/generator.d.ts +2 -0
  92. package/plugin/src/generators/init-postprocessing/generator.js +21 -0
  93. package/plugin/src/generators/init-postprocessing/generator.js.map +1 -0
  94. package/plugin/src/generators/init-postprocessing/schema.json +6 -0
  95. package/plugin/src/generators/init-soba/compat.d.ts +2 -0
  96. package/plugin/src/generators/init-soba/compat.js +6 -0
  97. package/plugin/src/generators/init-soba/compat.js.map +1 -0
  98. package/plugin/src/generators/init-soba/generator.d.ts +2 -0
  99. package/plugin/src/generators/init-soba/generator.js +27 -0
  100. package/plugin/src/generators/init-soba/generator.js.map +1 -0
  101. package/plugin/src/generators/init-soba/schema.json +6 -0
  102. package/plugin/src/generators/utils.d.ts +2 -0
  103. package/plugin/src/generators/utils.js +34 -0
  104. package/plugin/src/generators/utils.js.map +1 -0
  105. package/plugin/src/generators/versions.d.ts +13 -0
  106. package/plugin/src/generators/versions.js +17 -0
  107. package/plugin/src/generators/versions.js.map +1 -0
  108. package/plugin/src/index.d.ts +3 -1
  109. package/plugin/src/index.js +7 -3
  110. package/plugin/src/index.js.map +1 -1
  111. package/plugin/src/migrations/migrate-to-ngxtension/compat.d.ts +2 -0
  112. package/plugin/src/migrations/migrate-to-ngxtension/compat.js +6 -0
  113. package/plugin/src/migrations/migrate-to-ngxtension/compat.js.map +1 -0
  114. package/plugin/src/migrations/migrate-to-ngxtension/migrate-to-ngxtension.d.ts +2 -0
  115. package/plugin/src/migrations/migrate-to-ngxtension/migrate-to-ngxtension.js +41 -0
  116. package/plugin/src/migrations/migrate-to-ngxtension/migrate-to-ngxtension.js.map +1 -0
  117. package/web-types.json +1 -1
  118. package/esm2022/lib/di/before-render.mjs +0 -13
  119. package/esm2022/lib/di/catalogue.mjs +0 -7
  120. package/esm2022/lib/di/ref.mjs +0 -49
  121. package/esm2022/lib/directives/repeat.mjs +0 -18
  122. package/esm2022/lib/renderer/di.mjs +0 -3
  123. package/esm2022/lib/renderer/enums.mjs +0 -2
  124. package/esm2022/lib/renderer/provider.mjs +0 -18
  125. package/esm2022/lib/renderer/renderer.mjs +0 -365
  126. package/esm2022/lib/stores/signal.store.mjs +0 -81
  127. package/esm2022/lib/stores/store.mjs +0 -423
  128. package/esm2022/lib/utils/assert-in-injection-context.mjs +0 -14
  129. package/esm2022/lib/utils/instance.mjs +0 -63
  130. package/esm2022/lib/utils/signal.mjs +0 -24
  131. package/esm2022/lib/utils/timing.mjs +0 -21
  132. package/lib/di/catalogue.d.ts +0 -3
  133. package/lib/directives/repeat.d.ts +0 -7
  134. package/lib/renderer/di.d.ts +0 -2
  135. package/lib/renderer/enums.d.ts +0 -26
  136. package/lib/renderer/provider.d.ts +0 -8
  137. package/lib/renderer/renderer.d.ts +0 -49
  138. package/lib/stores/signal.store.d.ts +0 -20
  139. package/lib/stores/store.d.ts +0 -13
  140. package/lib/utils/assert-in-injection-context.d.ts +0 -2
  141. package/lib/utils/instance.d.ts +0 -4
  142. package/lib/utils/signal.d.ts +0 -2
  143. package/lib/utils/timing.d.ts +0 -4
  144. package/plugin/src/generators/init/init.d.ts +0 -5
  145. package/plugin/src/generators/init/init.js +0 -56
  146. package/plugin/src/generators/init/init.js.map +0 -1
package/metadata.json CHANGED
@@ -1 +1 @@
1
- {"$schema":"https://raw.githubusercontent.com/microsoft/vscode-html-languageservice/main/docs/customData.schema.json","version":1.1,"tags":[{"name":"ngt-object3D","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-audio","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-audio-listener","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-positional-audio","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-mesh","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-instanced-mesh","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-scene","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-sprite","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-lOD","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-skinned-mesh","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-skeleton","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-bone","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-line","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-line-segments","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-line-loop","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-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-group","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-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":"ngt-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":"ngt-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":"ngt-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":"ngt-array-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":"ngt-instanced-buffer-geometry","attributes":[{"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-buffer-geometry","attributes":[{"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-wireframe-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-tetrahedron-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-octahedron-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-icosahedron-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-polyhedron-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-dodecahedron-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-tube-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"name":"tangents"},{"name":"[tangents]"},{"name":"normals"},{"name":"[normals]"},{"name":"binormals"},{"name":"[binormals]"},{"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-torus-knot-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-torus-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-sphere-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-ring-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-plane-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-lathe-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-shape-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-extrude-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-edges-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-cone-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-cylinder-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-circle-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-box-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-capsule-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-shadow-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"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":"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-sprite-material","attributes":[{"name":"rotation"},{"name":"[rotation]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"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":"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-raw-shader-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"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":"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":"ngt-shader-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"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":"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":"ngt-points-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"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":"ngt-mesh-physical-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"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":"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":"ngt-mesh-standard-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"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":"ngt-mesh-phong-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"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":"reflectivity"},{"name":"[reflectivity]"},{"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":"envMap"},{"name":"[envMap]"},{"name":"wireframeLinecap"},{"name":"[wireframeLinecap]"},{"name":"wireframeLinejoin"},{"name":"[wireframeLinejoin]"},{"name":"flatShading"},{"name":"[flatShading]"},{"name":"specular"},{"name":"[specular]"},{"name":"shininess"},{"name":"[shininess]"},{"name":"specularMap"},{"name":"[specularMap]"},{"name":"combine"},{"name":"[combine]"},{"name":"refractionRatio"},{"name":"[refractionRatio]"},{"name":"metal"},{"name":"[metal]"},{"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-mesh-toon-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"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":"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":"wireframeLinecap"},{"name":"[wireframeLinecap]"},{"name":"wireframeLinejoin"},{"name":"[wireframeLinejoin]"},{"name":"gradientMap"},{"name":"[gradientMap]"},{"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-mesh-normal-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"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":"wireframe"},{"name":"[wireframe]"},{"name":"wireframeLinewidth"},{"name":"[wireframeLinewidth]"},{"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":"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":"ngt-mesh-lambert-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"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":"reflectivity"},{"name":"[reflectivity]"},{"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":"envMap"},{"name":"[envMap]"},{"name":"wireframeLinecap"},{"name":"[wireframeLinecap]"},{"name":"wireframeLinejoin"},{"name":"[wireframeLinejoin]"},{"name":"flatShading"},{"name":"[flatShading]"},{"name":"specularMap"},{"name":"[specularMap]"},{"name":"combine"},{"name":"[combine]"},{"name":"refractionRatio"},{"name":"[refractionRatio]"},{"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-mesh-depth-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"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":"map"},{"name":"[map]"},{"name":"alphaMap"},{"name":"[alphaMap]"},{"name":"wireframe"},{"name":"[wireframe]"},{"name":"wireframeLinewidth"},{"name":"[wireframeLinewidth]"},{"name":"displacementMap"},{"name":"[displacementMap]"},{"name":"displacementScale"},{"name":"[displacementScale]"},{"name":"displacementBias"},{"name":"[displacementBias]"},{"name":"depthPacking"},{"name":"[depthPacking]"},{"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-mesh-distance-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"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":"map"},{"name":"[map]"},{"name":"alphaMap"},{"name":"[alphaMap]"},{"name":"displacementMap"},{"name":"[displacementMap]"},{"name":"displacementScale"},{"name":"[displacementScale]"},{"name":"displacementBias"},{"name":"[displacementBias]"},{"name":"farDistance"},{"name":"[farDistance]"},{"name":"nearDistance"},{"name":"[nearDistance]"},{"name":"referencePosition"},{"name":"[referencePosition]"},{"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-mesh-basic-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"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":"reflectivity"},{"name":"[reflectivity]"},{"name":"lightMap"},{"name":"[lightMap]"},{"name":"lightMapIntensity"},{"name":"[lightMapIntensity]"},{"name":"aoMap"},{"name":"[aoMap]"},{"name":"aoMapIntensity"},{"name":"[aoMapIntensity]"},{"name":"envMap"},{"name":"[envMap]"},{"name":"wireframeLinecap"},{"name":"[wireframeLinecap]"},{"name":"wireframeLinejoin"},{"name":"[wireframeLinejoin]"},{"name":"specularMap"},{"name":"[specularMap]"},{"name":"combine"},{"name":"[combine]"},{"name":"refractionRatio"},{"name":"[refractionRatio]"},{"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-mesh-matcap-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"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":"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":"flatShading"},{"name":"[flatShading]"},{"name":"matcap"},{"name":"[matcap]"},{"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-line-dashed-material","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"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":"linewidth"},{"name":"[linewidth]"},{"name":"dashSize"},{"name":"[dashSize]"},{"name":"gapSize"},{"name":"[gapSize]"},{"name":"linecap"},{"name":"[linecap]"},{"name":"linejoin"},{"name":"[linejoin]"},{"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-line-basic-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"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":"linewidth"},{"name":"[linewidth]"},{"name":"linecap"},{"name":"[linecap]"},{"name":"linejoin"},{"name":"[linejoin]"},{"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-primitive","attributes":[{"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-value","attributes":[{"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-spot-light-shadow","attributes":[{"name":"matrix"},{"name":"[matrix]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"autoUpdate"},{"name":"[autoUpdate]"},{"name":"focus"},{"name":"[focus]"},{"name":"map"},{"name":"[map]"},{"name":"camera"},{"name":"[camera]"},{"name":"bias"},{"name":"[bias]"},{"name":"normalBias"},{"name":"[normalBias]"},{"name":"radius"},{"name":"[radius]"},{"name":"blurSamples"},{"name":"[blurSamples]"},{"name":"mapSize"},{"name":"[mapSize]"},{"name":"mapPass"},{"name":"[mapPass]"},{"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-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":"ngt-point-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":"ngt-rect-area-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":"ngt-hemisphere-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":"ngt-directional-light-shadow","attributes":[{"name":"matrix"},{"name":"[matrix]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"autoUpdate"},{"name":"[autoUpdate]"},{"name":"map"},{"name":"[map]"},{"name":"camera"},{"name":"[camera]"},{"name":"bias"},{"name":"[bias]"},{"name":"normalBias"},{"name":"[normalBias]"},{"name":"radius"},{"name":"[radius]"},{"name":"blurSamples"},{"name":"[blurSamples]"},{"name":"mapSize"},{"name":"[mapSize]"},{"name":"mapPass"},{"name":"[mapPass]"},{"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-directional-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":"ngt-ambient-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":"ngt-light-shadow","attributes":[{"name":"matrix"},{"name":"[matrix]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"autoUpdate"},{"name":"[autoUpdate]"},{"name":"map"},{"name":"[map]"},{"name":"camera"},{"name":"[camera]"},{"name":"bias"},{"name":"[bias]"},{"name":"normalBias"},{"name":"[normalBias]"},{"name":"radius"},{"name":"[radius]"},{"name":"blurSamples"},{"name":"[blurSamples]"},{"name":"mapSize"},{"name":"[mapSize]"},{"name":"mapPass"},{"name":"[mapPass]"},{"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-ambient-light-probe","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-hemisphere-light-probe","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-light-probe","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-spot-light-helper","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-skeleton-helper","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-point-light-helper","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-hemisphere-light-helper","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-grid-helper","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-polar-grid-helper","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-directional-light-helper","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-camera-helper","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-box-helper","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-box3-helper","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-plane-helper","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-arrow-helper","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-axes-helper","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-texture","attributes":[{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"center"},{"name":"[center]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"matrixAutoUpdate"},{"name":"[matrixAutoUpdate]"},{"name":"offset"},{"name":"[offset]"},{"name":"source"},{"name":"[source]"},{"name":"image"},{"name":"[image]"},{"name":"mipmaps"},{"name":"[mipmaps]"},{"name":"mapping"},{"name":"[mapping]"},{"name":"wrapS"},{"name":"[wrapS]"},{"name":"wrapT"},{"name":"[wrapT]"},{"name":"magFilter"},{"name":"[magFilter]"},{"name":"minFilter"},{"name":"[minFilter]"},{"name":"anisotropy"},{"name":"[anisotropy]"},{"name":"format"},{"name":"[format]"},{"name":"internalFormat"},{"name":"[internalFormat]"},{"name":"repeat"},{"name":"[repeat]"},{"name":"generateMipmaps"},{"name":"[generateMipmaps]"},{"name":"premultiplyAlpha"},{"name":"[premultiplyAlpha]"},{"name":"flipY"},{"name":"[flipY]"},{"name":"unpackAlignment"},{"name":"[unpackAlignment]"},{"name":"encoding"},{"name":"[encoding]"},{"name":"needsPMREMUpdate"},{"name":"[needsPMREMUpdate]"},{"name":"onUpdate"},{"name":"[onUpdate]"},{"name":"transformUv"},{"name":"[transformUv]"},{"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-video-texture","attributes":[{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"center"},{"name":"[center]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"matrixAutoUpdate"},{"name":"[matrixAutoUpdate]"},{"name":"offset"},{"name":"[offset]"},{"name":"source"},{"name":"[source]"},{"name":"image"},{"name":"[image]"},{"name":"mipmaps"},{"name":"[mipmaps]"},{"name":"mapping"},{"name":"[mapping]"},{"name":"wrapS"},{"name":"[wrapS]"},{"name":"wrapT"},{"name":"[wrapT]"},{"name":"magFilter"},{"name":"[magFilter]"},{"name":"minFilter"},{"name":"[minFilter]"},{"name":"anisotropy"},{"name":"[anisotropy]"},{"name":"format"},{"name":"[format]"},{"name":"internalFormat"},{"name":"[internalFormat]"},{"name":"repeat"},{"name":"[repeat]"},{"name":"generateMipmaps"},{"name":"[generateMipmaps]"},{"name":"premultiplyAlpha"},{"name":"[premultiplyAlpha]"},{"name":"flipY"},{"name":"[flipY]"},{"name":"unpackAlignment"},{"name":"[unpackAlignment]"},{"name":"encoding"},{"name":"[encoding]"},{"name":"needsPMREMUpdate"},{"name":"[needsPMREMUpdate]"},{"name":"onUpdate"},{"name":"[onUpdate]"},{"name":"transformUv"},{"name":"[transformUv]"},{"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-data-texture","attributes":[{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"center"},{"name":"[center]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"matrixAutoUpdate"},{"name":"[matrixAutoUpdate]"},{"name":"offset"},{"name":"[offset]"},{"name":"source"},{"name":"[source]"},{"name":"image"},{"name":"[image]"},{"name":"mipmaps"},{"name":"[mipmaps]"},{"name":"mapping"},{"name":"[mapping]"},{"name":"wrapS"},{"name":"[wrapS]"},{"name":"wrapT"},{"name":"[wrapT]"},{"name":"magFilter"},{"name":"[magFilter]"},{"name":"minFilter"},{"name":"[minFilter]"},{"name":"anisotropy"},{"name":"[anisotropy]"},{"name":"format"},{"name":"[format]"},{"name":"internalFormat"},{"name":"[internalFormat]"},{"name":"repeat"},{"name":"[repeat]"},{"name":"generateMipmaps"},{"name":"[generateMipmaps]"},{"name":"premultiplyAlpha"},{"name":"[premultiplyAlpha]"},{"name":"flipY"},{"name":"[flipY]"},{"name":"unpackAlignment"},{"name":"[unpackAlignment]"},{"name":"encoding"},{"name":"[encoding]"},{"name":"needsPMREMUpdate"},{"name":"[needsPMREMUpdate]"},{"name":"onUpdate"},{"name":"[onUpdate]"},{"name":"transformUv"},{"name":"[transformUv]"},{"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-data3D-texture","attributes":[{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"center"},{"name":"[center]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"matrixAutoUpdate"},{"name":"[matrixAutoUpdate]"},{"name":"offset"},{"name":"[offset]"},{"name":"source"},{"name":"[source]"},{"name":"image"},{"name":"[image]"},{"name":"mipmaps"},{"name":"[mipmaps]"},{"name":"mapping"},{"name":"[mapping]"},{"name":"wrapS"},{"name":"[wrapS]"},{"name":"wrapT"},{"name":"[wrapT]"},{"name":"magFilter"},{"name":"[magFilter]"},{"name":"minFilter"},{"name":"[minFilter]"},{"name":"anisotropy"},{"name":"[anisotropy]"},{"name":"format"},{"name":"[format]"},{"name":"internalFormat"},{"name":"[internalFormat]"},{"name":"repeat"},{"name":"[repeat]"},{"name":"generateMipmaps"},{"name":"[generateMipmaps]"},{"name":"premultiplyAlpha"},{"name":"[premultiplyAlpha]"},{"name":"flipY"},{"name":"[flipY]"},{"name":"unpackAlignment"},{"name":"[unpackAlignment]"},{"name":"encoding"},{"name":"[encoding]"},{"name":"needsPMREMUpdate"},{"name":"[needsPMREMUpdate]"},{"name":"onUpdate"},{"name":"[onUpdate]"},{"name":"transformUv"},{"name":"[transformUv]"},{"name":"wrapR"},{"name":"[wrapR]"},{"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-compressed-texture","attributes":[{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"center"},{"name":"[center]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"matrixAutoUpdate"},{"name":"[matrixAutoUpdate]"},{"name":"offset"},{"name":"[offset]"},{"name":"source"},{"name":"[source]"},{"name":"image"},{"name":"[image]"},{"name":"mipmaps"},{"name":"[mipmaps]"},{"name":"mapping"},{"name":"[mapping]"},{"name":"wrapS"},{"name":"[wrapS]"},{"name":"wrapT"},{"name":"[wrapT]"},{"name":"magFilter"},{"name":"[magFilter]"},{"name":"minFilter"},{"name":"[minFilter]"},{"name":"anisotropy"},{"name":"[anisotropy]"},{"name":"format"},{"name":"[format]"},{"name":"internalFormat"},{"name":"[internalFormat]"},{"name":"repeat"},{"name":"[repeat]"},{"name":"generateMipmaps"},{"name":"[generateMipmaps]"},{"name":"premultiplyAlpha"},{"name":"[premultiplyAlpha]"},{"name":"flipY"},{"name":"[flipY]"},{"name":"unpackAlignment"},{"name":"[unpackAlignment]"},{"name":"encoding"},{"name":"[encoding]"},{"name":"needsPMREMUpdate"},{"name":"[needsPMREMUpdate]"},{"name":"onUpdate"},{"name":"[onUpdate]"},{"name":"transformUv"},{"name":"[transformUv]"},{"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-cube-texture","attributes":[{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"center"},{"name":"[center]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"matrixAutoUpdate"},{"name":"[matrixAutoUpdate]"},{"name":"offset"},{"name":"[offset]"},{"name":"source"},{"name":"[source]"},{"name":"image"},{"name":"[image]"},{"name":"mipmaps"},{"name":"[mipmaps]"},{"name":"mapping"},{"name":"[mapping]"},{"name":"wrapS"},{"name":"[wrapS]"},{"name":"wrapT"},{"name":"[wrapT]"},{"name":"magFilter"},{"name":"[magFilter]"},{"name":"minFilter"},{"name":"[minFilter]"},{"name":"anisotropy"},{"name":"[anisotropy]"},{"name":"format"},{"name":"[format]"},{"name":"internalFormat"},{"name":"[internalFormat]"},{"name":"repeat"},{"name":"[repeat]"},{"name":"generateMipmaps"},{"name":"[generateMipmaps]"},{"name":"premultiplyAlpha"},{"name":"[premultiplyAlpha]"},{"name":"flipY"},{"name":"[flipY]"},{"name":"unpackAlignment"},{"name":"[unpackAlignment]"},{"name":"encoding"},{"name":"[encoding]"},{"name":"needsPMREMUpdate"},{"name":"[needsPMREMUpdate]"},{"name":"onUpdate"},{"name":"[onUpdate]"},{"name":"transformUv"},{"name":"[transformUv]"},{"name":"images"},{"name":"[images]"},{"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-canvas-texture","attributes":[{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"center"},{"name":"[center]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"matrixAutoUpdate"},{"name":"[matrixAutoUpdate]"},{"name":"offset"},{"name":"[offset]"},{"name":"source"},{"name":"[source]"},{"name":"image"},{"name":"[image]"},{"name":"mipmaps"},{"name":"[mipmaps]"},{"name":"mapping"},{"name":"[mapping]"},{"name":"wrapS"},{"name":"[wrapS]"},{"name":"wrapT"},{"name":"[wrapT]"},{"name":"magFilter"},{"name":"[magFilter]"},{"name":"minFilter"},{"name":"[minFilter]"},{"name":"anisotropy"},{"name":"[anisotropy]"},{"name":"format"},{"name":"[format]"},{"name":"internalFormat"},{"name":"[internalFormat]"},{"name":"repeat"},{"name":"[repeat]"},{"name":"generateMipmaps"},{"name":"[generateMipmaps]"},{"name":"premultiplyAlpha"},{"name":"[premultiplyAlpha]"},{"name":"flipY"},{"name":"[flipY]"},{"name":"unpackAlignment"},{"name":"[unpackAlignment]"},{"name":"encoding"},{"name":"[encoding]"},{"name":"needsPMREMUpdate"},{"name":"[needsPMREMUpdate]"},{"name":"onUpdate"},{"name":"[onUpdate]"},{"name":"transformUv"},{"name":"[transformUv]"},{"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-depth-texture","attributes":[{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"center"},{"name":"[center]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"matrixAutoUpdate"},{"name":"[matrixAutoUpdate]"},{"name":"offset"},{"name":"[offset]"},{"name":"source"},{"name":"[source]"},{"name":"image"},{"name":"[image]"},{"name":"mipmaps"},{"name":"[mipmaps]"},{"name":"mapping"},{"name":"[mapping]"},{"name":"wrapS"},{"name":"[wrapS]"},{"name":"wrapT"},{"name":"[wrapT]"},{"name":"magFilter"},{"name":"[magFilter]"},{"name":"minFilter"},{"name":"[minFilter]"},{"name":"anisotropy"},{"name":"[anisotropy]"},{"name":"format"},{"name":"[format]"},{"name":"internalFormat"},{"name":"[internalFormat]"},{"name":"repeat"},{"name":"[repeat]"},{"name":"generateMipmaps"},{"name":"[generateMipmaps]"},{"name":"premultiplyAlpha"},{"name":"[premultiplyAlpha]"},{"name":"flipY"},{"name":"[flipY]"},{"name":"unpackAlignment"},{"name":"[unpackAlignment]"},{"name":"encoding"},{"name":"[encoding]"},{"name":"needsPMREMUpdate"},{"name":"[needsPMREMUpdate]"},{"name":"onUpdate"},{"name":"[onUpdate]"},{"name":"transformUv"},{"name":"[transformUv]"},{"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-raycaster","attributes":[{"name":"layers"},{"name":"[layers]"},{"name":"near"},{"name":"[near]"},{"name":"far"},{"name":"[far]"},{"name":"camera"},{"name":"[camera]"},{"name":"ray"},{"name":"[ray]"},{"name":"params"},{"name":"[params]"},{"name":"intersectObject"},{"name":"[intersectObject]"},{"name":"intersectObjects"},{"name":"[intersectObjects]"},{"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-vector2","attributes":[{"name":"x"},{"name":"[x]"},{"name":"y"},{"name":"[y]"},{"name":"height"},{"name":"[height]"},{"name":"width"},{"name":"[width]"},{"name":"angle"},{"name":"[angle]"},{"name":"sub"},{"name":"[sub]"},{"name":"subScalar"},{"name":"[subScalar]"},{"name":"subVectors"},{"name":"[subVectors]"},{"name":"multiply"},{"name":"[multiply]"},{"name":"multiplyScalar"},{"name":"[multiplyScalar]"},{"name":"divide"},{"name":"[divide]"},{"name":"divideScalar"},{"name":"[divideScalar]"},{"name":"min"},{"name":"[min]"},{"name":"max"},{"name":"[max]"},{"name":"clamp"},{"name":"[clamp]"},{"name":"clampScalar"},{"name":"[clampScalar]"},{"name":"clampLength"},{"name":"[clampLength]"},{"name":"floor"},{"name":"[floor]"},{"name":"ceil"},{"name":"[ceil]"},{"name":"round"},{"name":"[round]"},{"name":"roundToZero"},{"name":"[roundToZero]"},{"name":"negate"},{"name":"[negate]"},{"name":"dot"},{"name":"[dot]"},{"name":"cross"},{"name":"[cross]"},{"name":"lengthSq"},{"name":"[lengthSq]"},{"name":"length"},{"name":"[length]"},{"name":"lengthManhattan"},{"name":"[lengthManhattan]"},{"name":"manhattanLength"},{"name":"[manhattanLength]"},{"name":"normalize"},{"name":"[normalize]"},{"name":"distanceTo"},{"name":"[distanceTo]"},{"name":"distanceToSquared"},{"name":"[distanceToSquared]"},{"name":"distanceToManhattan"},{"name":"[distanceToManhattan]"},{"name":"manhattanDistanceTo"},{"name":"[manhattanDistanceTo]"},{"name":"lerp"},{"name":"[lerp]"},{"name":"lerpVectors"},{"name":"[lerpVectors]"},{"name":"equals"},{"name":"[equals]"},{"name":"fromBufferAttribute"},{"name":"[fromBufferAttribute]"},{"name":"rotateAround"},{"name":"[rotateAround]"},{"name":"random"},{"name":"[random]"},{"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-vector3","attributes":[{"name":"x"},{"name":"[x]"},{"name":"y"},{"name":"[y]"},{"name":"sub"},{"name":"[sub]"},{"name":"subScalar"},{"name":"[subScalar]"},{"name":"subVectors"},{"name":"[subVectors]"},{"name":"multiply"},{"name":"[multiply]"},{"name":"multiplyScalar"},{"name":"[multiplyScalar]"},{"name":"divide"},{"name":"[divide]"},{"name":"divideScalar"},{"name":"[divideScalar]"},{"name":"min"},{"name":"[min]"},{"name":"max"},{"name":"[max]"},{"name":"clamp"},{"name":"[clamp]"},{"name":"clampScalar"},{"name":"[clampScalar]"},{"name":"clampLength"},{"name":"[clampLength]"},{"name":"floor"},{"name":"[floor]"},{"name":"ceil"},{"name":"[ceil]"},{"name":"round"},{"name":"[round]"},{"name":"roundToZero"},{"name":"[roundToZero]"},{"name":"negate"},{"name":"[negate]"},{"name":"dot"},{"name":"[dot]"},{"name":"cross"},{"name":"[cross]"},{"name":"lengthSq"},{"name":"[lengthSq]"},{"name":"length"},{"name":"[length]"},{"name":"lengthManhattan"},{"name":"[lengthManhattan]"},{"name":"manhattanLength"},{"name":"[manhattanLength]"},{"name":"normalize"},{"name":"[normalize]"},{"name":"distanceTo"},{"name":"[distanceTo]"},{"name":"distanceToSquared"},{"name":"[distanceToSquared]"},{"name":"distanceToManhattan"},{"name":"[distanceToManhattan]"},{"name":"manhattanDistanceTo"},{"name":"[manhattanDistanceTo]"},{"name":"lerp"},{"name":"[lerp]"},{"name":"lerpVectors"},{"name":"[lerpVectors]"},{"name":"equals"},{"name":"[equals]"},{"name":"fromBufferAttribute"},{"name":"[fromBufferAttribute]"},{"name":"random"},{"name":"[random]"},{"name":"z"},{"name":"[z]"},{"name":"multiplyVectors"},{"name":"[multiplyVectors]"},{"name":"project"},{"name":"[project]"},{"name":"unproject"},{"name":"[unproject]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"crossVectors"},{"name":"[crossVectors]"},{"name":"projectOnVector"},{"name":"[projectOnVector]"},{"name":"projectOnPlane"},{"name":"[projectOnPlane]"},{"name":"reflect"},{"name":"[reflect]"},{"name":"angleTo"},{"name":"[angleTo]"},{"name":"randomDirection"},{"name":"[randomDirection]"},{"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-vector4","attributes":[{"name":"x"},{"name":"[x]"},{"name":"y"},{"name":"[y]"},{"name":"height"},{"name":"[height]"},{"name":"width"},{"name":"[width]"},{"name":"sub"},{"name":"[sub]"},{"name":"subScalar"},{"name":"[subScalar]"},{"name":"subVectors"},{"name":"[subVectors]"},{"name":"multiply"},{"name":"[multiply]"},{"name":"multiplyScalar"},{"name":"[multiplyScalar]"},{"name":"divideScalar"},{"name":"[divideScalar]"},{"name":"min"},{"name":"[min]"},{"name":"max"},{"name":"[max]"},{"name":"clamp"},{"name":"[clamp]"},{"name":"clampScalar"},{"name":"[clampScalar]"},{"name":"floor"},{"name":"[floor]"},{"name":"ceil"},{"name":"[ceil]"},{"name":"round"},{"name":"[round]"},{"name":"roundToZero"},{"name":"[roundToZero]"},{"name":"negate"},{"name":"[negate]"},{"name":"dot"},{"name":"[dot]"},{"name":"lengthSq"},{"name":"[lengthSq]"},{"name":"length"},{"name":"[length]"},{"name":"manhattanLength"},{"name":"[manhattanLength]"},{"name":"normalize"},{"name":"[normalize]"},{"name":"lerp"},{"name":"[lerp]"},{"name":"lerpVectors"},{"name":"[lerpVectors]"},{"name":"equals"},{"name":"[equals]"},{"name":"fromBufferAttribute"},{"name":"[fromBufferAttribute]"},{"name":"random"},{"name":"[random]"},{"name":"z"},{"name":"[z]"},{"name":"w"},{"name":"[w]"},{"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-euler","attributes":[{"name":"x"},{"name":"[x]"},{"name":"y"},{"name":"[y]"},{"name":"equals"},{"name":"[equals]"},{"name":"z"},{"name":"[z]"},{"name":"order"},{"name":"[order]"},{"name":"reorder"},{"name":"[reorder]"},{"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-matrix3","attributes":[{"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-matrix4","attributes":[{"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-quaternion","attributes":[{"name":"x"},{"name":"[x]"},{"name":"y"},{"name":"[y]"},{"name":"multiply"},{"name":"[multiply]"},{"name":"dot"},{"name":"[dot]"},{"name":"lengthSq"},{"name":"[lengthSq]"},{"name":"length"},{"name":"[length]"},{"name":"normalize"},{"name":"[normalize]"},{"name":"equals"},{"name":"[equals]"},{"name":"fromBufferAttribute"},{"name":"[fromBufferAttribute]"},{"name":"random"},{"name":"[random]"},{"name":"z"},{"name":"[z]"},{"name":"angleTo"},{"name":"[angleTo]"},{"name":"w"},{"name":"[w]"},{"name":"identity"},{"name":"[identity]"},{"name":"invert"},{"name":"[invert]"},{"name":"premultiply"},{"name":"[premultiply]"},{"name":"multiplyVector3"},{"name":"[multiplyVector3]"},{"name":"rotateTowards"},{"name":"[rotateTowards]"},{"name":"conjugate"},{"name":"[conjugate]"},{"name":"multiplyQuaternions"},{"name":"[multiplyQuaternions]"},{"name":"slerp"},{"name":"[slerp]"},{"name":"slerpQuaternions"},{"name":"[slerpQuaternions]"},{"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-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"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-float16-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"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-float32-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"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-float64-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"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-int8-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"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-int16-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"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-int32-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"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-unit8-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"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-unit16-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"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-unit32-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"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-instanced-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"name":"meshPerAttribute"},{"name":"[meshPerAttribute]"},{"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-color","attributes":[{"name":"sub"},{"name":"[sub]"},{"name":"multiply"},{"name":"[multiply]"},{"name":"multiplyScalar"},{"name":"[multiplyScalar]"},{"name":"lerp"},{"name":"[lerp]"},{"name":"equals"},{"name":"[equals]"},{"name":"fromBufferAttribute"},{"name":"[fromBufferAttribute]"},{"name":"r"},{"name":"[r]"},{"name":"g"},{"name":"[g]"},{"name":"b"},{"name":"[b]"},{"name":"copySRGBToLinear"},{"name":"[copySRGBToLinear]"},{"name":"copyLinearToSRGB"},{"name":"[copyLinearToSRGB]"},{"name":"convertSRGBToLinear"},{"name":"[convertSRGBToLinear]"},{"name":"convertLinearToSRGB"},{"name":"[convertLinearToSRGB]"},{"name":"offsetHSL"},{"name":"[offsetHSL]"},{"name":"lerpColors"},{"name":"[lerpColors]"},{"name":"lerpHSL"},{"name":"[lerpHSL]"},{"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-fog","attributes":[{"name":"name"},{"name":"[name]"},{"name":"color"},{"name":"[color]"},{"name":"near"},{"name":"[near]"},{"name":"far"},{"name":"[far]"},{"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-fog-exp2","attributes":[{"name":"name"},{"name":"[name]"},{"name":"color"},{"name":"[color]"},{"name":"density"},{"name":"[density]"},{"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-shape","attributes":[{"name":"fromJSON"},{"name":"[fromJSON]"},{"name":"holes"},{"name":"[holes]"},{"name":"extractPoints"},{"name":"[extractPoints]"},{"name":"currentPoint"},{"name":"[currentPoint]"},{"name":"fromPoints"},{"name":"[fromPoints]"},{"name":"moveTo"},{"name":"[moveTo]"},{"name":"lineTo"},{"name":"[lineTo]"},{"name":"quadraticCurveTo"},{"name":"[quadraticCurveTo]"},{"name":"bezierCurveTo"},{"name":"[bezierCurveTo]"},{"name":"splineThru"},{"name":"[splineThru]"},{"name":"arc"},{"name":"[arc]"},{"name":"absarc"},{"name":"[absarc]"},{"name":"ellipse"},{"name":"[ellipse]"},{"name":"absellipse"},{"name":"[absellipse]"},{"name":"curves"},{"name":"[curves]"},{"name":"autoClose"},{"name":"[autoClose]"},{"name":"closePath"},{"name":"[closePath]"},{"name":"arcLengthDivisions"},{"name":"[arcLengthDivisions]"},{"name":"computeFrenetFrames"},{"name":"[computeFrenetFrames]"},{"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"}]}]}
1
+ {"$schema":"https://raw.githubusercontent.com/microsoft/vscode-html-languageservice/main/docs/customData.schema.json","version":1.1,"tags":[{"name":"ngt-object3D","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-audio","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-audio-listener","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-positional-audio","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-mesh","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-instanced-mesh","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-scene","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-sprite","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-lOD","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-skinned-mesh","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-skeleton","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-bone","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-line","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-line-segments","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-line-loop","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-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-group","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-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":"ngt-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":"ngt-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":"ngt-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":"ngt-array-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":"ngt-instanced-buffer-geometry","attributes":[{"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-buffer-geometry","attributes":[{"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-wireframe-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-tetrahedron-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-octahedron-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-icosahedron-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-polyhedron-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-dodecahedron-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-tube-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"name":"tangents"},{"name":"[tangents]"},{"name":"normals"},{"name":"[normals]"},{"name":"binormals"},{"name":"[binormals]"},{"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-torus-knot-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-torus-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-sphere-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-ring-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-plane-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-lathe-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-shape-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-extrude-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-edges-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-cone-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-cylinder-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-circle-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-box-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-capsule-geometry","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"index"},{"name":"[index]"},{"name":"attributes"},{"name":"[attributes]"},{"name":"morphAttributes"},{"name":"[morphAttributes]"},{"name":"morphTargetsRelative"},{"name":"[morphTargetsRelative]"},{"name":"groups"},{"name":"[groups]"},{"name":"boundingBox"},{"name":"[boundingBox]"},{"name":"boundingSphere"},{"name":"[boundingSphere]"},{"name":"drawRange"},{"name":"[drawRange]"},{"name":"userData"},{"name":"[userData]"},{"name":"deleteAttribute"},{"name":"[deleteAttribute]"},{"name":"clearGroups"},{"name":"[clearGroups]"},{"name":"rotateX"},{"name":"[rotateX]"},{"name":"rotateY"},{"name":"[rotateY]"},{"name":"rotateZ"},{"name":"[rotateZ]"},{"name":"translate"},{"name":"[translate]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"center"},{"name":"[center]"},{"name":"computeBoundingBox"},{"name":"[computeBoundingBox]"},{"name":"computeBoundingSphere"},{"name":"[computeBoundingSphere]"},{"name":"computeTangents"},{"name":"[computeTangents]"},{"name":"computeVertexNormals"},{"name":"[computeVertexNormals]"},{"name":"normalizeNormals"},{"name":"[normalizeNormals]"},{"name":"toNonIndexed"},{"name":"[toNonIndexed]"},{"name":"parameters"},{"name":"[parameters]"},{"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-shadow-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":"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-sprite-material","attributes":[{"name":"rotation"},{"name":"[rotation]"},{"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":"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-raw-shader-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":"ngt-shader-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":"ngt-points-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":"ngt-mesh-physical-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":"ngt-mesh-standard-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":"ngt-mesh-phong-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":"reflectivity"},{"name":"[reflectivity]"},{"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":"envMap"},{"name":"[envMap]"},{"name":"wireframeLinecap"},{"name":"[wireframeLinecap]"},{"name":"wireframeLinejoin"},{"name":"[wireframeLinejoin]"},{"name":"flatShading"},{"name":"[flatShading]"},{"name":"specular"},{"name":"[specular]"},{"name":"shininess"},{"name":"[shininess]"},{"name":"specularMap"},{"name":"[specularMap]"},{"name":"combine"},{"name":"[combine]"},{"name":"refractionRatio"},{"name":"[refractionRatio]"},{"name":"metal"},{"name":"[metal]"},{"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-mesh-toon-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":"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":"wireframeLinecap"},{"name":"[wireframeLinecap]"},{"name":"wireframeLinejoin"},{"name":"[wireframeLinejoin]"},{"name":"gradientMap"},{"name":"[gradientMap]"},{"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-mesh-normal-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":"wireframe"},{"name":"[wireframe]"},{"name":"wireframeLinewidth"},{"name":"[wireframeLinewidth]"},{"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":"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":"ngt-mesh-lambert-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":"reflectivity"},{"name":"[reflectivity]"},{"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":"envMap"},{"name":"[envMap]"},{"name":"wireframeLinecap"},{"name":"[wireframeLinecap]"},{"name":"wireframeLinejoin"},{"name":"[wireframeLinejoin]"},{"name":"flatShading"},{"name":"[flatShading]"},{"name":"specularMap"},{"name":"[specularMap]"},{"name":"combine"},{"name":"[combine]"},{"name":"refractionRatio"},{"name":"[refractionRatio]"},{"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-mesh-depth-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":"map"},{"name":"[map]"},{"name":"alphaMap"},{"name":"[alphaMap]"},{"name":"wireframe"},{"name":"[wireframe]"},{"name":"wireframeLinewidth"},{"name":"[wireframeLinewidth]"},{"name":"displacementMap"},{"name":"[displacementMap]"},{"name":"displacementScale"},{"name":"[displacementScale]"},{"name":"displacementBias"},{"name":"[displacementBias]"},{"name":"depthPacking"},{"name":"[depthPacking]"},{"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-mesh-distance-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":"map"},{"name":"[map]"},{"name":"alphaMap"},{"name":"[alphaMap]"},{"name":"displacementMap"},{"name":"[displacementMap]"},{"name":"displacementScale"},{"name":"[displacementScale]"},{"name":"displacementBias"},{"name":"[displacementBias]"},{"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-mesh-basic-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":"reflectivity"},{"name":"[reflectivity]"},{"name":"lightMap"},{"name":"[lightMap]"},{"name":"lightMapIntensity"},{"name":"[lightMapIntensity]"},{"name":"aoMap"},{"name":"[aoMap]"},{"name":"aoMapIntensity"},{"name":"[aoMapIntensity]"},{"name":"envMap"},{"name":"[envMap]"},{"name":"wireframeLinecap"},{"name":"[wireframeLinecap]"},{"name":"wireframeLinejoin"},{"name":"[wireframeLinejoin]"},{"name":"specularMap"},{"name":"[specularMap]"},{"name":"combine"},{"name":"[combine]"},{"name":"refractionRatio"},{"name":"[refractionRatio]"},{"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-mesh-matcap-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":"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":"flatShading"},{"name":"[flatShading]"},{"name":"matcap"},{"name":"[matcap]"},{"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-line-dashed-material","attributes":[{"name":"scale"},{"name":"[scale]"},{"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":"linewidth"},{"name":"[linewidth]"},{"name":"dashSize"},{"name":"[dashSize]"},{"name":"gapSize"},{"name":"[gapSize]"},{"name":"linecap"},{"name":"[linecap]"},{"name":"linejoin"},{"name":"[linejoin]"},{"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-line-basic-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":"linewidth"},{"name":"[linewidth]"},{"name":"linecap"},{"name":"[linecap]"},{"name":"linejoin"},{"name":"[linejoin]"},{"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-primitive","attributes":[{"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-value","attributes":[{"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-spot-light-shadow","attributes":[{"name":"matrix"},{"name":"[matrix]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"autoUpdate"},{"name":"[autoUpdate]"},{"name":"focus"},{"name":"[focus]"},{"name":"map"},{"name":"[map]"},{"name":"camera"},{"name":"[camera]"},{"name":"bias"},{"name":"[bias]"},{"name":"normalBias"},{"name":"[normalBias]"},{"name":"radius"},{"name":"[radius]"},{"name":"blurSamples"},{"name":"[blurSamples]"},{"name":"mapSize"},{"name":"[mapSize]"},{"name":"mapPass"},{"name":"[mapPass]"},{"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-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":"ngt-point-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":"ngt-rect-area-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":"ngt-hemisphere-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":"ngt-directional-light-shadow","attributes":[{"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-directional-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":"ngt-ambient-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":"ngt-light-shadow","attributes":[{"name":"matrix"},{"name":"[matrix]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"autoUpdate"},{"name":"[autoUpdate]"},{"name":"map"},{"name":"[map]"},{"name":"camera"},{"name":"[camera]"},{"name":"bias"},{"name":"[bias]"},{"name":"normalBias"},{"name":"[normalBias]"},{"name":"radius"},{"name":"[radius]"},{"name":"blurSamples"},{"name":"[blurSamples]"},{"name":"mapSize"},{"name":"[mapSize]"},{"name":"mapPass"},{"name":"[mapPass]"},{"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-ambient-light-probe","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-hemisphere-light-probe","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-light-probe","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-spot-light-helper","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-skeleton-helper","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-point-light-helper","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-hemisphere-light-helper","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-grid-helper","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-polar-grid-helper","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-directional-light-helper","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-camera-helper","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-box-helper","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-box3-helper","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-plane-helper","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-arrow-helper","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-axes-helper","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-texture","attributes":[{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"center"},{"name":"[center]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"matrixAutoUpdate"},{"name":"[matrixAutoUpdate]"},{"name":"offset"},{"name":"[offset]"},{"name":"source"},{"name":"[source]"},{"name":"anisotropy"},{"name":"[anisotropy]"},{"name":"image"},{"name":"[image]"},{"name":"mipmaps"},{"name":"[mipmaps]"},{"name":"mapping"},{"name":"[mapping]"},{"name":"channel"},{"name":"[channel]"},{"name":"wrapS"},{"name":"[wrapS]"},{"name":"wrapT"},{"name":"[wrapT]"},{"name":"magFilter"},{"name":"[magFilter]"},{"name":"minFilter"},{"name":"[minFilter]"},{"name":"format"},{"name":"[format]"},{"name":"internalFormat"},{"name":"[internalFormat]"},{"name":"repeat"},{"name":"[repeat]"},{"name":"generateMipmaps"},{"name":"[generateMipmaps]"},{"name":"premultiplyAlpha"},{"name":"[premultiplyAlpha]"},{"name":"flipY"},{"name":"[flipY]"},{"name":"unpackAlignment"},{"name":"[unpackAlignment]"},{"name":"encoding"},{"name":"[encoding]"},{"name":"colorSpace"},{"name":"[colorSpace]"},{"name":"needsPMREMUpdate"},{"name":"[needsPMREMUpdate]"},{"name":"onUpdate"},{"name":"[onUpdate]"},{"name":"transformUv"},{"name":"[transformUv]"},{"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-video-texture","attributes":[{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"center"},{"name":"[center]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"matrixAutoUpdate"},{"name":"[matrixAutoUpdate]"},{"name":"offset"},{"name":"[offset]"},{"name":"source"},{"name":"[source]"},{"name":"anisotropy"},{"name":"[anisotropy]"},{"name":"image"},{"name":"[image]"},{"name":"mipmaps"},{"name":"[mipmaps]"},{"name":"mapping"},{"name":"[mapping]"},{"name":"channel"},{"name":"[channel]"},{"name":"wrapS"},{"name":"[wrapS]"},{"name":"wrapT"},{"name":"[wrapT]"},{"name":"magFilter"},{"name":"[magFilter]"},{"name":"minFilter"},{"name":"[minFilter]"},{"name":"format"},{"name":"[format]"},{"name":"internalFormat"},{"name":"[internalFormat]"},{"name":"repeat"},{"name":"[repeat]"},{"name":"generateMipmaps"},{"name":"[generateMipmaps]"},{"name":"premultiplyAlpha"},{"name":"[premultiplyAlpha]"},{"name":"flipY"},{"name":"[flipY]"},{"name":"unpackAlignment"},{"name":"[unpackAlignment]"},{"name":"encoding"},{"name":"[encoding]"},{"name":"colorSpace"},{"name":"[colorSpace]"},{"name":"needsPMREMUpdate"},{"name":"[needsPMREMUpdate]"},{"name":"onUpdate"},{"name":"[onUpdate]"},{"name":"transformUv"},{"name":"[transformUv]"},{"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-data-texture","attributes":[{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"center"},{"name":"[center]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"matrixAutoUpdate"},{"name":"[matrixAutoUpdate]"},{"name":"offset"},{"name":"[offset]"},{"name":"source"},{"name":"[source]"},{"name":"anisotropy"},{"name":"[anisotropy]"},{"name":"image"},{"name":"[image]"},{"name":"mipmaps"},{"name":"[mipmaps]"},{"name":"mapping"},{"name":"[mapping]"},{"name":"channel"},{"name":"[channel]"},{"name":"wrapS"},{"name":"[wrapS]"},{"name":"wrapT"},{"name":"[wrapT]"},{"name":"magFilter"},{"name":"[magFilter]"},{"name":"minFilter"},{"name":"[minFilter]"},{"name":"format"},{"name":"[format]"},{"name":"internalFormat"},{"name":"[internalFormat]"},{"name":"repeat"},{"name":"[repeat]"},{"name":"generateMipmaps"},{"name":"[generateMipmaps]"},{"name":"premultiplyAlpha"},{"name":"[premultiplyAlpha]"},{"name":"flipY"},{"name":"[flipY]"},{"name":"unpackAlignment"},{"name":"[unpackAlignment]"},{"name":"encoding"},{"name":"[encoding]"},{"name":"colorSpace"},{"name":"[colorSpace]"},{"name":"needsPMREMUpdate"},{"name":"[needsPMREMUpdate]"},{"name":"onUpdate"},{"name":"[onUpdate]"},{"name":"transformUv"},{"name":"[transformUv]"},{"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-data3D-texture","attributes":[{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"center"},{"name":"[center]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"matrixAutoUpdate"},{"name":"[matrixAutoUpdate]"},{"name":"offset"},{"name":"[offset]"},{"name":"source"},{"name":"[source]"},{"name":"anisotropy"},{"name":"[anisotropy]"},{"name":"image"},{"name":"[image]"},{"name":"mipmaps"},{"name":"[mipmaps]"},{"name":"mapping"},{"name":"[mapping]"},{"name":"channel"},{"name":"[channel]"},{"name":"wrapS"},{"name":"[wrapS]"},{"name":"wrapT"},{"name":"[wrapT]"},{"name":"magFilter"},{"name":"[magFilter]"},{"name":"minFilter"},{"name":"[minFilter]"},{"name":"format"},{"name":"[format]"},{"name":"internalFormat"},{"name":"[internalFormat]"},{"name":"repeat"},{"name":"[repeat]"},{"name":"generateMipmaps"},{"name":"[generateMipmaps]"},{"name":"premultiplyAlpha"},{"name":"[premultiplyAlpha]"},{"name":"flipY"},{"name":"[flipY]"},{"name":"unpackAlignment"},{"name":"[unpackAlignment]"},{"name":"encoding"},{"name":"[encoding]"},{"name":"colorSpace"},{"name":"[colorSpace]"},{"name":"needsPMREMUpdate"},{"name":"[needsPMREMUpdate]"},{"name":"onUpdate"},{"name":"[onUpdate]"},{"name":"transformUv"},{"name":"[transformUv]"},{"name":"wrapR"},{"name":"[wrapR]"},{"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-compressed-texture","attributes":[{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"center"},{"name":"[center]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"matrixAutoUpdate"},{"name":"[matrixAutoUpdate]"},{"name":"offset"},{"name":"[offset]"},{"name":"source"},{"name":"[source]"},{"name":"anisotropy"},{"name":"[anisotropy]"},{"name":"image"},{"name":"[image]"},{"name":"mipmaps"},{"name":"[mipmaps]"},{"name":"mapping"},{"name":"[mapping]"},{"name":"channel"},{"name":"[channel]"},{"name":"wrapS"},{"name":"[wrapS]"},{"name":"wrapT"},{"name":"[wrapT]"},{"name":"magFilter"},{"name":"[magFilter]"},{"name":"minFilter"},{"name":"[minFilter]"},{"name":"format"},{"name":"[format]"},{"name":"internalFormat"},{"name":"[internalFormat]"},{"name":"repeat"},{"name":"[repeat]"},{"name":"generateMipmaps"},{"name":"[generateMipmaps]"},{"name":"premultiplyAlpha"},{"name":"[premultiplyAlpha]"},{"name":"flipY"},{"name":"[flipY]"},{"name":"unpackAlignment"},{"name":"[unpackAlignment]"},{"name":"encoding"},{"name":"[encoding]"},{"name":"colorSpace"},{"name":"[colorSpace]"},{"name":"needsPMREMUpdate"},{"name":"[needsPMREMUpdate]"},{"name":"onUpdate"},{"name":"[onUpdate]"},{"name":"transformUv"},{"name":"[transformUv]"},{"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-cube-texture","attributes":[{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"center"},{"name":"[center]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"matrixAutoUpdate"},{"name":"[matrixAutoUpdate]"},{"name":"offset"},{"name":"[offset]"},{"name":"source"},{"name":"[source]"},{"name":"anisotropy"},{"name":"[anisotropy]"},{"name":"image"},{"name":"[image]"},{"name":"mipmaps"},{"name":"[mipmaps]"},{"name":"mapping"},{"name":"[mapping]"},{"name":"channel"},{"name":"[channel]"},{"name":"wrapS"},{"name":"[wrapS]"},{"name":"wrapT"},{"name":"[wrapT]"},{"name":"magFilter"},{"name":"[magFilter]"},{"name":"minFilter"},{"name":"[minFilter]"},{"name":"format"},{"name":"[format]"},{"name":"internalFormat"},{"name":"[internalFormat]"},{"name":"repeat"},{"name":"[repeat]"},{"name":"generateMipmaps"},{"name":"[generateMipmaps]"},{"name":"premultiplyAlpha"},{"name":"[premultiplyAlpha]"},{"name":"flipY"},{"name":"[flipY]"},{"name":"unpackAlignment"},{"name":"[unpackAlignment]"},{"name":"encoding"},{"name":"[encoding]"},{"name":"colorSpace"},{"name":"[colorSpace]"},{"name":"needsPMREMUpdate"},{"name":"[needsPMREMUpdate]"},{"name":"onUpdate"},{"name":"[onUpdate]"},{"name":"transformUv"},{"name":"[transformUv]"},{"name":"images"},{"name":"[images]"},{"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-canvas-texture","attributes":[{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"center"},{"name":"[center]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"matrixAutoUpdate"},{"name":"[matrixAutoUpdate]"},{"name":"offset"},{"name":"[offset]"},{"name":"source"},{"name":"[source]"},{"name":"anisotropy"},{"name":"[anisotropy]"},{"name":"image"},{"name":"[image]"},{"name":"mipmaps"},{"name":"[mipmaps]"},{"name":"mapping"},{"name":"[mapping]"},{"name":"channel"},{"name":"[channel]"},{"name":"wrapS"},{"name":"[wrapS]"},{"name":"wrapT"},{"name":"[wrapT]"},{"name":"magFilter"},{"name":"[magFilter]"},{"name":"minFilter"},{"name":"[minFilter]"},{"name":"format"},{"name":"[format]"},{"name":"internalFormat"},{"name":"[internalFormat]"},{"name":"repeat"},{"name":"[repeat]"},{"name":"generateMipmaps"},{"name":"[generateMipmaps]"},{"name":"premultiplyAlpha"},{"name":"[premultiplyAlpha]"},{"name":"flipY"},{"name":"[flipY]"},{"name":"unpackAlignment"},{"name":"[unpackAlignment]"},{"name":"encoding"},{"name":"[encoding]"},{"name":"colorSpace"},{"name":"[colorSpace]"},{"name":"needsPMREMUpdate"},{"name":"[needsPMREMUpdate]"},{"name":"onUpdate"},{"name":"[onUpdate]"},{"name":"transformUv"},{"name":"[transformUv]"},{"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-depth-texture","attributes":[{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"center"},{"name":"[center]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"matrixAutoUpdate"},{"name":"[matrixAutoUpdate]"},{"name":"offset"},{"name":"[offset]"},{"name":"source"},{"name":"[source]"},{"name":"anisotropy"},{"name":"[anisotropy]"},{"name":"image"},{"name":"[image]"},{"name":"mipmaps"},{"name":"[mipmaps]"},{"name":"mapping"},{"name":"[mapping]"},{"name":"channel"},{"name":"[channel]"},{"name":"wrapS"},{"name":"[wrapS]"},{"name":"wrapT"},{"name":"[wrapT]"},{"name":"magFilter"},{"name":"[magFilter]"},{"name":"minFilter"},{"name":"[minFilter]"},{"name":"format"},{"name":"[format]"},{"name":"internalFormat"},{"name":"[internalFormat]"},{"name":"repeat"},{"name":"[repeat]"},{"name":"generateMipmaps"},{"name":"[generateMipmaps]"},{"name":"premultiplyAlpha"},{"name":"[premultiplyAlpha]"},{"name":"flipY"},{"name":"[flipY]"},{"name":"unpackAlignment"},{"name":"[unpackAlignment]"},{"name":"encoding"},{"name":"[encoding]"},{"name":"colorSpace"},{"name":"[colorSpace]"},{"name":"needsPMREMUpdate"},{"name":"[needsPMREMUpdate]"},{"name":"onUpdate"},{"name":"[onUpdate]"},{"name":"transformUv"},{"name":"[transformUv]"},{"name":"compareFunction"},{"name":"[compareFunction]"},{"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-raycaster","attributes":[{"name":"layers"},{"name":"[layers]"},{"name":"near"},{"name":"[near]"},{"name":"far"},{"name":"[far]"},{"name":"camera"},{"name":"[camera]"},{"name":"ray"},{"name":"[ray]"},{"name":"params"},{"name":"[params]"},{"name":"intersectObject"},{"name":"[intersectObject]"},{"name":"intersectObjects"},{"name":"[intersectObjects]"},{"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-vector2","attributes":[{"name":"x"},{"name":"[x]"},{"name":"y"},{"name":"[y]"},{"name":"height"},{"name":"[height]"},{"name":"width"},{"name":"[width]"},{"name":"angle"},{"name":"[angle]"},{"name":"sub"},{"name":"[sub]"},{"name":"subScalar"},{"name":"[subScalar]"},{"name":"subVectors"},{"name":"[subVectors]"},{"name":"multiply"},{"name":"[multiply]"},{"name":"multiplyScalar"},{"name":"[multiplyScalar]"},{"name":"divide"},{"name":"[divide]"},{"name":"divideScalar"},{"name":"[divideScalar]"},{"name":"min"},{"name":"[min]"},{"name":"max"},{"name":"[max]"},{"name":"clamp"},{"name":"[clamp]"},{"name":"clampScalar"},{"name":"[clampScalar]"},{"name":"clampLength"},{"name":"[clampLength]"},{"name":"floor"},{"name":"[floor]"},{"name":"ceil"},{"name":"[ceil]"},{"name":"round"},{"name":"[round]"},{"name":"roundToZero"},{"name":"[roundToZero]"},{"name":"negate"},{"name":"[negate]"},{"name":"dot"},{"name":"[dot]"},{"name":"cross"},{"name":"[cross]"},{"name":"lengthSq"},{"name":"[lengthSq]"},{"name":"length"},{"name":"[length]"},{"name":"lengthManhattan"},{"name":"[lengthManhattan]"},{"name":"manhattanLength"},{"name":"[manhattanLength]"},{"name":"normalize"},{"name":"[normalize]"},{"name":"angleTo"},{"name":"[angleTo]"},{"name":"distanceTo"},{"name":"[distanceTo]"},{"name":"distanceToSquared"},{"name":"[distanceToSquared]"},{"name":"distanceToManhattan"},{"name":"[distanceToManhattan]"},{"name":"manhattanDistanceTo"},{"name":"[manhattanDistanceTo]"},{"name":"lerp"},{"name":"[lerp]"},{"name":"lerpVectors"},{"name":"[lerpVectors]"},{"name":"equals"},{"name":"[equals]"},{"name":"fromBufferAttribute"},{"name":"[fromBufferAttribute]"},{"name":"rotateAround"},{"name":"[rotateAround]"},{"name":"random"},{"name":"[random]"},{"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-vector3","attributes":[{"name":"x"},{"name":"[x]"},{"name":"y"},{"name":"[y]"},{"name":"sub"},{"name":"[sub]"},{"name":"subScalar"},{"name":"[subScalar]"},{"name":"subVectors"},{"name":"[subVectors]"},{"name":"multiply"},{"name":"[multiply]"},{"name":"multiplyScalar"},{"name":"[multiplyScalar]"},{"name":"divide"},{"name":"[divide]"},{"name":"divideScalar"},{"name":"[divideScalar]"},{"name":"min"},{"name":"[min]"},{"name":"max"},{"name":"[max]"},{"name":"clamp"},{"name":"[clamp]"},{"name":"clampScalar"},{"name":"[clampScalar]"},{"name":"clampLength"},{"name":"[clampLength]"},{"name":"floor"},{"name":"[floor]"},{"name":"ceil"},{"name":"[ceil]"},{"name":"round"},{"name":"[round]"},{"name":"roundToZero"},{"name":"[roundToZero]"},{"name":"negate"},{"name":"[negate]"},{"name":"dot"},{"name":"[dot]"},{"name":"cross"},{"name":"[cross]"},{"name":"lengthSq"},{"name":"[lengthSq]"},{"name":"length"},{"name":"[length]"},{"name":"lengthManhattan"},{"name":"[lengthManhattan]"},{"name":"manhattanLength"},{"name":"[manhattanLength]"},{"name":"normalize"},{"name":"[normalize]"},{"name":"angleTo"},{"name":"[angleTo]"},{"name":"distanceTo"},{"name":"[distanceTo]"},{"name":"distanceToSquared"},{"name":"[distanceToSquared]"},{"name":"distanceToManhattan"},{"name":"[distanceToManhattan]"},{"name":"manhattanDistanceTo"},{"name":"[manhattanDistanceTo]"},{"name":"lerp"},{"name":"[lerp]"},{"name":"lerpVectors"},{"name":"[lerpVectors]"},{"name":"equals"},{"name":"[equals]"},{"name":"fromBufferAttribute"},{"name":"[fromBufferAttribute]"},{"name":"random"},{"name":"[random]"},{"name":"z"},{"name":"[z]"},{"name":"multiplyVectors"},{"name":"[multiplyVectors]"},{"name":"project"},{"name":"[project]"},{"name":"unproject"},{"name":"[unproject]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"crossVectors"},{"name":"[crossVectors]"},{"name":"projectOnVector"},{"name":"[projectOnVector]"},{"name":"projectOnPlane"},{"name":"[projectOnPlane]"},{"name":"reflect"},{"name":"[reflect]"},{"name":"randomDirection"},{"name":"[randomDirection]"},{"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-vector4","attributes":[{"name":"x"},{"name":"[x]"},{"name":"y"},{"name":"[y]"},{"name":"height"},{"name":"[height]"},{"name":"width"},{"name":"[width]"},{"name":"sub"},{"name":"[sub]"},{"name":"subScalar"},{"name":"[subScalar]"},{"name":"subVectors"},{"name":"[subVectors]"},{"name":"multiply"},{"name":"[multiply]"},{"name":"multiplyScalar"},{"name":"[multiplyScalar]"},{"name":"divideScalar"},{"name":"[divideScalar]"},{"name":"min"},{"name":"[min]"},{"name":"max"},{"name":"[max]"},{"name":"clamp"},{"name":"[clamp]"},{"name":"clampScalar"},{"name":"[clampScalar]"},{"name":"floor"},{"name":"[floor]"},{"name":"ceil"},{"name":"[ceil]"},{"name":"round"},{"name":"[round]"},{"name":"roundToZero"},{"name":"[roundToZero]"},{"name":"negate"},{"name":"[negate]"},{"name":"dot"},{"name":"[dot]"},{"name":"lengthSq"},{"name":"[lengthSq]"},{"name":"length"},{"name":"[length]"},{"name":"manhattanLength"},{"name":"[manhattanLength]"},{"name":"normalize"},{"name":"[normalize]"},{"name":"lerp"},{"name":"[lerp]"},{"name":"lerpVectors"},{"name":"[lerpVectors]"},{"name":"equals"},{"name":"[equals]"},{"name":"fromBufferAttribute"},{"name":"[fromBufferAttribute]"},{"name":"random"},{"name":"[random]"},{"name":"z"},{"name":"[z]"},{"name":"w"},{"name":"[w]"},{"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-euler","attributes":[{"name":"x"},{"name":"[x]"},{"name":"y"},{"name":"[y]"},{"name":"equals"},{"name":"[equals]"},{"name":"z"},{"name":"[z]"},{"name":"order"},{"name":"[order]"},{"name":"reorder"},{"name":"[reorder]"},{"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-matrix3","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"translate"},{"name":"[translate]"},{"name":"multiply"},{"name":"[multiply]"},{"name":"multiplyScalar"},{"name":"[multiplyScalar]"},{"name":"equals"},{"name":"[equals]"},{"name":"elements"},{"name":"[elements]"},{"name":"identity"},{"name":"[identity]"},{"name":"extractBasis"},{"name":"[extractBasis]"},{"name":"determinant"},{"name":"[determinant]"},{"name":"invert"},{"name":"[invert]"},{"name":"transpose"},{"name":"[transpose]"},{"name":"transposeIntoArray"},{"name":"[transposeIntoArray]"},{"name":"makeTranslation"},{"name":"[makeTranslation]"},{"name":"makeRotation"},{"name":"[makeRotation]"},{"name":"makeScale"},{"name":"[makeScale]"},{"name":"rotate"},{"name":"[rotate]"},{"name":"premultiply"},{"name":"[premultiply]"},{"name":"multiplyMatrices"},{"name":"[multiplyMatrices]"},{"name":"multiplyVector3"},{"name":"[multiplyVector3]"},{"name":"multiplyVector3Array"},{"name":"[multiplyVector3Array]"},{"name":"flattenToArrayOffset"},{"name":"[flattenToArrayOffset]"},{"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-matrix4","attributes":[{"name":"scale"},{"name":"[scale]"},{"name":"lookAt"},{"name":"[lookAt]"},{"name":"multiply"},{"name":"[multiply]"},{"name":"multiplyScalar"},{"name":"[multiplyScalar]"},{"name":"equals"},{"name":"[equals]"},{"name":"elements"},{"name":"[elements]"},{"name":"identity"},{"name":"[identity]"},{"name":"extractBasis"},{"name":"[extractBasis]"},{"name":"determinant"},{"name":"[determinant]"},{"name":"invert"},{"name":"[invert]"},{"name":"transpose"},{"name":"[transpose]"},{"name":"makeTranslation"},{"name":"[makeTranslation]"},{"name":"makeScale"},{"name":"[makeScale]"},{"name":"premultiply"},{"name":"[premultiply]"},{"name":"multiplyMatrices"},{"name":"[multiplyMatrices]"},{"name":"multiplyVector3"},{"name":"[multiplyVector3]"},{"name":"multiplyVector3Array"},{"name":"[multiplyVector3Array]"},{"name":"flattenToArrayOffset"},{"name":"[flattenToArrayOffset]"},{"name":"copyPosition"},{"name":"[copyPosition]"},{"name":"makeBasis"},{"name":"[makeBasis]"},{"name":"extractRotation"},{"name":"[extractRotation]"},{"name":"makeRotationFromEuler"},{"name":"[makeRotationFromEuler]"},{"name":"makeRotationFromQuaternion"},{"name":"[makeRotationFromQuaternion]"},{"name":"multiplyToArray"},{"name":"[multiplyToArray]"},{"name":"makeRotationX"},{"name":"[makeRotationX]"},{"name":"makeRotationY"},{"name":"[makeRotationY]"},{"name":"makeRotationZ"},{"name":"[makeRotationZ]"},{"name":"makeRotationAxis"},{"name":"[makeRotationAxis]"},{"name":"makeShear"},{"name":"[makeShear]"},{"name":"compose"},{"name":"[compose]"},{"name":"decompose"},{"name":"[decompose]"},{"name":"makePerspective"},{"name":"[makePerspective]"},{"name":"makeOrthographic"},{"name":"[makeOrthographic]"},{"name":"extractPosition"},{"name":"[extractPosition]"},{"name":"multiplyVector4"},{"name":"[multiplyVector4]"},{"name":"rotateAxis"},{"name":"[rotateAxis]"},{"name":"crossVector"},{"name":"[crossVector]"},{"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-quaternion","attributes":[{"name":"x"},{"name":"[x]"},{"name":"y"},{"name":"[y]"},{"name":"multiply"},{"name":"[multiply]"},{"name":"dot"},{"name":"[dot]"},{"name":"lengthSq"},{"name":"[lengthSq]"},{"name":"length"},{"name":"[length]"},{"name":"normalize"},{"name":"[normalize]"},{"name":"angleTo"},{"name":"[angleTo]"},{"name":"equals"},{"name":"[equals]"},{"name":"fromBufferAttribute"},{"name":"[fromBufferAttribute]"},{"name":"random"},{"name":"[random]"},{"name":"z"},{"name":"[z]"},{"name":"w"},{"name":"[w]"},{"name":"identity"},{"name":"[identity]"},{"name":"invert"},{"name":"[invert]"},{"name":"premultiply"},{"name":"[premultiply]"},{"name":"multiplyVector3"},{"name":"[multiplyVector3]"},{"name":"rotateTowards"},{"name":"[rotateTowards]"},{"name":"conjugate"},{"name":"[conjugate]"},{"name":"multiplyQuaternions"},{"name":"[multiplyQuaternions]"},{"name":"slerp"},{"name":"[slerp]"},{"name":"slerpQuaternions"},{"name":"[slerpQuaternions]"},{"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-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"gpuType"},{"name":"[gpuType]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"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-float16-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"gpuType"},{"name":"[gpuType]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"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-float32-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"gpuType"},{"name":"[gpuType]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"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-float64-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"gpuType"},{"name":"[gpuType]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"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-int8-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"gpuType"},{"name":"[gpuType]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"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-int16-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"gpuType"},{"name":"[gpuType]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"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-int32-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"gpuType"},{"name":"[gpuType]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"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-unit8-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"gpuType"},{"name":"[gpuType]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"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-unit16-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"gpuType"},{"name":"[gpuType]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"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-unit32-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"gpuType"},{"name":"[gpuType]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"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-instanced-buffer-attribute","attributes":[{"name":"name"},{"name":"[name]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"version"},{"name":"[version]"},{"name":"count"},{"name":"[count]"},{"name":"transformDirection"},{"name":"[transformDirection]"},{"name":"array"},{"name":"[array]"},{"name":"itemSize"},{"name":"[itemSize]"},{"name":"usage"},{"name":"[usage]"},{"name":"gpuType"},{"name":"[gpuType]"},{"name":"normalized"},{"name":"[normalized]"},{"name":"onUploadCallback"},{"name":"[onUploadCallback]"},{"name":"onUpload"},{"name":"[onUpload]"},{"name":"copyAt"},{"name":"[copyAt]"},{"name":"copyArray"},{"name":"[copyArray]"},{"name":"meshPerAttribute"},{"name":"[meshPerAttribute]"},{"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-color","attributes":[{"name":"sub"},{"name":"[sub]"},{"name":"multiply"},{"name":"[multiply]"},{"name":"multiplyScalar"},{"name":"[multiplyScalar]"},{"name":"lerp"},{"name":"[lerp]"},{"name":"equals"},{"name":"[equals]"},{"name":"fromBufferAttribute"},{"name":"[fromBufferAttribute]"},{"name":"r"},{"name":"[r]"},{"name":"g"},{"name":"[g]"},{"name":"b"},{"name":"[b]"},{"name":"copySRGBToLinear"},{"name":"[copySRGBToLinear]"},{"name":"copyLinearToSRGB"},{"name":"[copyLinearToSRGB]"},{"name":"convertSRGBToLinear"},{"name":"[convertSRGBToLinear]"},{"name":"convertLinearToSRGB"},{"name":"[convertLinearToSRGB]"},{"name":"offsetHSL"},{"name":"[offsetHSL]"},{"name":"lerpColors"},{"name":"[lerpColors]"},{"name":"lerpHSL"},{"name":"[lerpHSL]"},{"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-fog","attributes":[{"name":"name"},{"name":"[name]"},{"name":"color"},{"name":"[color]"},{"name":"near"},{"name":"[near]"},{"name":"far"},{"name":"[far]"},{"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-fog-exp2","attributes":[{"name":"name"},{"name":"[name]"},{"name":"color"},{"name":"[color]"},{"name":"density"},{"name":"[density]"},{"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-shape","attributes":[{"name":"fromJSON"},{"name":"[fromJSON]"},{"name":"holes"},{"name":"[holes]"},{"name":"extractPoints"},{"name":"[extractPoints]"},{"name":"currentPoint"},{"name":"[currentPoint]"},{"name":"absarc"},{"name":"[absarc]"},{"name":"absellipse"},{"name":"[absellipse]"},{"name":"arc"},{"name":"[arc]"},{"name":"bezierCurveTo"},{"name":"[bezierCurveTo]"},{"name":"ellipse"},{"name":"[ellipse]"},{"name":"lineTo"},{"name":"[lineTo]"},{"name":"moveTo"},{"name":"[moveTo]"},{"name":"quadraticCurveTo"},{"name":"[quadraticCurveTo]"},{"name":"splineThru"},{"name":"[splineThru]"},{"name":"curves"},{"name":"[curves]"},{"name":"autoClose"},{"name":"[autoClose]"},{"name":"closePath"},{"name":"[closePath]"},{"name":"arcLengthDivisions"},{"name":"[arcLengthDivisions]"},{"name":"computeFrenetFrames"},{"name":"[computeFrenetFrames]"},{"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"}]}]}