angular-three-soba 2.0.0-beta.2 → 2.0.0-beta.21
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.
- package/abstractions/billboard/billboard.d.ts +11 -7
- package/abstractions/detailed/detailed.d.ts +26 -0
- package/abstractions/edges/edges.d.ts +24 -12
- package/abstractions/grid/grid.d.ts +50 -0
- package/abstractions/index.d.ts +2 -7
- package/abstractions/text/text.d.ts +10 -5
- package/abstractions/text-3d/text-3d.d.ts +51 -41
- package/cameras/camera/camera-content.d.ts +1 -1
- package/cameras/camera/camera.d.ts +16 -13
- package/cameras/cube-camera/cube-camera.d.ts +50 -23
- package/cameras/index.d.ts +0 -1
- package/cameras/orthographic-camera/orthographic-camera.d.ts +29 -18
- package/cameras/perspective-camera/perspective-camera.d.ts +10 -1
- package/controls/orbit-controls/orbit-controls.d.ts +31 -12
- package/esm2022/abstractions/billboard/billboard.mjs +36 -33
- package/esm2022/abstractions/detailed/detailed.mjs +64 -0
- package/esm2022/abstractions/edges/edges.mjs +58 -63
- package/esm2022/abstractions/grid/grid.mjs +180 -0
- package/esm2022/abstractions/index.mjs +3 -8
- package/esm2022/abstractions/text/text.mjs +123 -124
- package/esm2022/abstractions/text-3d/text-3d.mjs +120 -115
- package/esm2022/cameras/camera/camera-content.mjs +6 -6
- package/esm2022/cameras/camera/camera.mjs +48 -42
- package/esm2022/cameras/cube-camera/cube-camera.mjs +129 -99
- package/esm2022/cameras/index.mjs +1 -2
- package/esm2022/cameras/orthographic-camera/orthographic-camera.mjs +78 -75
- package/esm2022/cameras/perspective-camera/perspective-camera.mjs +25 -26
- package/esm2022/controls/orbit-controls/orbit-controls.mjs +105 -85
- package/esm2022/gizmos/angular-three-soba-gizmos.mjs +5 -0
- package/esm2022/gizmos/gizmo-helper/gizmo-helper.mjs +197 -0
- package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/constants.mjs +31 -0
- package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-edge.mjs +93 -0
- package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-face.mjs +150 -0
- package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-input.mjs +66 -0
- package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube.mjs +71 -0
- package/esm2022/gizmos/gizmo-helper/gizmo-viewport/gizmo-viewport-axis.mjs +195 -0
- package/esm2022/gizmos/gizmo-helper/gizmo-viewport/gizmo-viewport.mjs +272 -0
- package/esm2022/gizmos/index.mjs +4 -0
- package/esm2022/loaders/gltf-loader/gltf-loader.mjs +3 -6
- package/esm2022/loaders/loader/loader.mjs +92 -87
- package/esm2022/loaders/progress/progress.mjs +29 -29
- package/esm2022/loaders/texture-loader/texture-loader.mjs +4 -4
- package/esm2022/materials/index.mjs +2 -1
- package/esm2022/materials/mesh-distort-material/mesh-distort-material.mjs +60 -51
- package/esm2022/materials/mesh-reflector-material/mesh-reflector-material.mjs +239 -255
- package/esm2022/materials/mesh-refraction-material/mesh-refraction-material.mjs +102 -99
- package/esm2022/materials/mesh-transmission-material/mesh-transmission-material.mjs +167 -146
- package/esm2022/materials/mesh-wobble-material/mesh-wobble-material.mjs +44 -42
- package/esm2022/materials/point-material/point-material.mjs +50 -0
- package/esm2022/misc/animations/animations.mjs +36 -32
- package/esm2022/misc/bake-shadows/bake-shadows.mjs +13 -13
- package/esm2022/misc/caustics/caustics.mjs +387 -0
- package/esm2022/misc/decal/decal.mjs +187 -0
- package/esm2022/misc/depth-buffer/depth-buffer.mjs +33 -35
- package/esm2022/misc/example/example.mjs +160 -0
- package/esm2022/misc/fbo/fbo.mjs +35 -35
- package/esm2022/misc/html/html-wrapper.mjs +478 -0
- package/esm2022/misc/html/html.mjs +304 -0
- package/esm2022/misc/index.mjs +10 -1
- package/esm2022/misc/sampler/sampler.mjs +142 -0
- package/esm2022/misc/shadow/shadow.mjs +111 -0
- package/esm2022/misc/stats-gl/stats-gl.mjs +61 -0
- package/esm2022/misc/trail/trail.mjs +209 -0
- package/esm2022/misc/trail-texture/inject-trail-texture.mjs +17 -0
- package/esm2022/misc/trail-texture/trail-texture.mjs +106 -0
- package/esm2022/modifiers/angular-three-soba-modifiers.mjs +5 -0
- package/esm2022/modifiers/curve-modifier/curve-modifier.mjs +64 -0
- package/esm2022/modifiers/index.mjs +2 -0
- package/esm2022/performances/adaptive-dpr/adaptive-dpr.mjs +44 -0
- package/esm2022/performances/adaptive-events/adaptive-events.mjs +27 -0
- package/esm2022/performances/angular-three-soba-performances.mjs +5 -0
- package/esm2022/performances/index.mjs +8 -0
- package/esm2022/performances/instances/instances.mjs +220 -0
- package/esm2022/performances/instances/position-mesh.mjs +52 -0
- package/esm2022/performances/points/points-input.mjs +64 -0
- package/esm2022/performances/points/points.mjs +326 -0
- package/esm2022/performances/points/position-point.mjs +54 -0
- package/esm2022/performances/segments/segment-object.mjs +9 -0
- package/esm2022/performances/segments/segments.mjs +182 -0
- package/esm2022/shaders/blur-pass/blur-pass.mjs +2 -2
- package/esm2022/shaders/caustics/caustics-material.mjs +130 -0
- package/esm2022/shaders/caustics/caustics-projection-material.mjs +31 -0
- package/esm2022/shaders/convolution-material/convolution-material.mjs +1 -1
- package/esm2022/shaders/discard-material/discard-material.mjs +1 -1
- package/esm2022/shaders/grid-material/grid-material.mjs +77 -0
- package/esm2022/shaders/index.mjs +6 -3
- package/esm2022/shaders/mesh-distort-material/mesh-distort-material.mjs +42 -41
- package/esm2022/shaders/mesh-reflector-material/mesh-reflector-material.mjs +2 -2
- package/esm2022/shaders/mesh-refraction-material/mesh-refraction-material.mjs +2 -2
- package/esm2022/shaders/mesh-transmission-material/mesh-transmission-material.mjs +4 -4
- package/esm2022/shaders/mesh-wobble-material/mesh-wobble-material.mjs +1 -1
- package/esm2022/shaders/shader-material/shader-material.mjs +1 -1
- package/esm2022/shaders/soft-shadow-material/soft-shadow-material.mjs +17 -25
- package/esm2022/shaders/sparkles-material/sparkles-material.mjs +32 -46
- package/esm2022/shaders/spot-light-material/spot-light-material.mjs +7 -7
- package/esm2022/shaders/star-field-material/star-field-material.mjs +3 -2
- package/esm2022/shaders/wireframe-material/wireframe-material.mjs +247 -0
- package/esm2022/staging/accumulative-shadows/accumulative-shadows.mjs +160 -176
- package/esm2022/staging/accumulative-shadows/progressive-light-map.mjs +1 -1
- package/esm2022/staging/accumulative-shadows/randomized-lights.mjs +126 -128
- package/esm2022/staging/backdrop/backdrop.mjs +77 -0
- package/esm2022/staging/bb-anchor/bb-anchor.mjs +69 -0
- package/esm2022/staging/bounds/bounds.mjs +144 -143
- package/esm2022/staging/camera-shake/camera-shake.mjs +86 -80
- package/esm2022/staging/center/center.mjs +129 -112
- package/esm2022/staging/cloud/cloud.mjs +118 -124
- package/esm2022/staging/contact-shadows/contact-shadows.mjs +131 -134
- package/esm2022/staging/environment/assets.mjs +12 -12
- package/esm2022/staging/environment/environment-cube.mjs +28 -30
- package/esm2022/staging/environment/environment-ground.mjs +17 -19
- package/esm2022/staging/environment/environment-input.mjs +98 -85
- package/esm2022/staging/environment/environment-map.mjs +33 -33
- package/esm2022/staging/environment/environment-portal.mjs +75 -97
- package/esm2022/staging/environment/environment.mjs +34 -51
- package/esm2022/staging/environment/utils.mjs +37 -15
- package/esm2022/staging/float/float.mjs +70 -58
- package/esm2022/staging/index.mjs +7 -3
- package/esm2022/staging/matcap-texture/matcap-texture.mjs +64 -0
- package/esm2022/staging/normal-texture/normal-texture.mjs +53 -0
- package/esm2022/staging/sky/sky.mjs +85 -80
- package/esm2022/staging/sparkles/sparkles.mjs +108 -105
- package/esm2022/staging/spot-light/shadow-mesh-input.mjs +63 -0
- package/esm2022/staging/spot-light/shadow-mesh.mjs +266 -0
- package/esm2022/staging/spot-light/spot-light-input.mjs +67 -58
- package/esm2022/staging/spot-light/spot-light.mjs +51 -64
- package/esm2022/staging/spot-light/volumetric-mesh.mjs +67 -70
- package/esm2022/staging/stage/stage.mjs +305 -290
- package/esm2022/staging/stars/stars.mjs +101 -102
- package/esm2022/staging/wireframe/wireframe-input.mjs +191 -0
- package/esm2022/staging/wireframe/wireframe.mjs +228 -0
- package/esm2022/utils/angular-three-soba-utils.mjs +5 -0
- package/esm2022/utils/content/content.mjs +15 -0
- package/esm2022/utils/index.mjs +2 -0
- package/fesm2022/angular-three-soba-abstractions.mjs +514 -1947
- package/fesm2022/angular-three-soba-abstractions.mjs.map +1 -1
- package/fesm2022/angular-three-soba-cameras.mjs +302 -259
- package/fesm2022/angular-three-soba-cameras.mjs.map +1 -1
- package/fesm2022/angular-three-soba-controls.mjs +104 -83
- package/fesm2022/angular-three-soba-controls.mjs.map +1 -1
- package/fesm2022/angular-three-soba-gizmos.mjs +1043 -0
- package/fesm2022/angular-three-soba-gizmos.mjs.map +1 -0
- package/fesm2022/angular-three-soba-loaders.mjs +121 -117
- package/fesm2022/angular-three-soba-loaders.mjs.map +1 -1
- package/fesm2022/angular-three-soba-materials.mjs +662 -592
- package/fesm2022/angular-three-soba-materials.mjs.map +1 -1
- package/fesm2022/angular-three-soba-misc.mjs +2214 -105
- package/fesm2022/angular-three-soba-misc.mjs.map +1 -1
- package/fesm2022/angular-three-soba-modifiers.mjs +71 -0
- package/fesm2022/angular-three-soba-modifiers.mjs.map +1 -0
- package/fesm2022/angular-three-soba-performances.mjs +956 -0
- package/fesm2022/angular-three-soba-performances.mjs.map +1 -0
- package/fesm2022/angular-three-soba-shaders.mjs +549 -252
- package/fesm2022/angular-three-soba-shaders.mjs.map +1 -1
- package/fesm2022/angular-three-soba-staging.mjs +2899 -2563
- package/fesm2022/angular-three-soba-staging.mjs.map +1 -1
- package/fesm2022/angular-three-soba-utils.mjs +22 -0
- package/fesm2022/angular-three-soba-utils.mjs.map +1 -0
- package/gizmos/README.md +3 -0
- package/gizmos/gizmo-helper/gizmo-helper.d.ts +69 -0
- package/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-edge.d.ts +22 -0
- package/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-face.d.ts +29 -0
- package/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-input.d.ts +33 -0
- package/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube.d.ts +10 -0
- package/gizmos/gizmo-helper/gizmo-viewport/gizmo-viewport-axis.d.ts +40 -0
- package/gizmos/gizmo-helper/gizmo-viewport/gizmo-viewport.d.ts +30 -0
- package/gizmos/index.d.ts +3 -0
- package/loaders/gltf-loader/gltf-loader.d.ts +4 -3
- package/loaders/loader/loader.d.ts +19 -17
- package/loaders/progress/progress.d.ts +1 -1
- package/loaders/texture-loader/texture-loader.d.ts +2 -2
- package/materials/index.d.ts +1 -0
- package/materials/mesh-distort-material/mesh-distort-material.d.ts +25 -15
- package/materials/mesh-reflector-material/mesh-reflector-material.d.ts +74 -56
- package/materials/mesh-refraction-material/mesh-refraction-material.d.ts +33 -21
- package/materials/mesh-transmission-material/mesh-transmission-material.d.ts +55 -39
- package/materials/mesh-wobble-material/mesh-wobble-material.d.ts +19 -10
- package/materials/point-material/point-material.d.ts +24 -0
- package/metadata.json +1 -0
- package/misc/animations/animations.d.ts +6 -4
- package/misc/caustics/caustics.d.ts +87 -0
- package/misc/decal/decal.d.ts +49 -0
- package/misc/depth-buffer/depth-buffer.d.ts +2 -2
- package/misc/example/example.d.ts +81 -0
- package/misc/fbo/fbo.d.ts +2 -2
- package/misc/html/html-wrapper.d.ts +559 -0
- package/misc/html/html.d.ts +214 -0
- package/misc/index.d.ts +9 -0
- package/misc/sampler/sampler.d.ts +67 -0
- package/misc/shadow/shadow.d.ts +37 -0
- package/misc/stats-gl/stats-gl.d.ts +24 -0
- package/misc/trail/trail.d.ts +57 -0
- package/misc/trail-texture/inject-trail-texture.d.ts +9 -0
- package/misc/trail-texture/trail-texture.d.ts +50 -0
- package/modifiers/README.md +3 -0
- package/modifiers/curve-modifier/curve-modifier.d.ts +23 -0
- package/modifiers/index.d.ts +1 -0
- package/package.json +31 -16
- package/performances/README.md +3 -0
- package/performances/adaptive-dpr/adaptive-dpr.d.ts +14 -0
- package/{performance/adaptive → performances/adaptive-events}/adaptive-events.d.ts +3 -0
- package/performances/index.d.ts +7 -0
- package/performances/instances/instances.d.ts +79 -0
- package/{performance → performances}/instances/position-mesh.d.ts +1 -1
- package/performances/points/points-input.d.ts +32 -0
- package/performances/points/points.d.ts +92 -0
- package/performances/points/position-point.d.ts +11 -0
- package/performances/segments/segment-object.d.ts +7 -0
- package/performances/segments/segments.d.ts +124 -0
- package/shaders/grid-material/grid-material.d.ts +37 -0
- package/shaders/index.d.ts +5 -2
- package/shaders/mesh-distort-material/mesh-distort-material.d.ts +147 -2
- package/shaders/mesh-transmission-material/mesh-transmission-material.d.ts +1 -1
- package/shaders/shader-material/shader-material.d.ts +2 -2
- package/shaders/soft-shadow-material/soft-shadow-material.d.ts +10 -1
- package/shaders/sparkles-material/sparkles-material.d.ts +15 -1
- package/shaders/spot-light-material/spot-light-material.d.ts +11 -2
- package/shaders/star-field-material/star-field-material.d.ts +11 -1
- package/shaders/wireframe-material/wireframe-material.d.ts +58 -0
- package/staging/accumulative-shadows/accumulative-shadows.d.ts +89 -39
- package/staging/accumulative-shadows/randomized-lights.d.ts +40 -27
- package/staging/backdrop/backdrop.d.ts +30 -0
- package/staging/bb-anchor/bb-anchor.d.ts +27 -0
- package/staging/bounds/bounds.d.ts +100 -24
- package/staging/camera-shake/camera-shake.d.ts +30 -19
- package/staging/center/center.d.ts +43 -35
- package/staging/cloud/cloud.d.ts +26 -23
- package/staging/contact-shadows/contact-shadows.d.ts +41 -28
- package/staging/environment/assets.d.ts +9 -9
- package/staging/environment/environment-cube.d.ts +9 -5
- package/staging/environment/environment-ground.d.ts +7 -7
- package/staging/environment/environment-input.d.ts +37 -37
- package/staging/environment/environment-map.d.ts +10 -5
- package/staging/environment/environment-portal.d.ts +10 -5
- package/staging/environment/environment.d.ts +0 -4
- package/staging/environment/utils.d.ts +2 -2
- package/staging/float/float.d.ts +14 -10
- package/staging/index.d.ts +6 -2
- package/staging/matcap-texture/matcap-texture.d.ts +13 -0
- package/staging/normal-texture/normal-texture.d.ts +16 -0
- package/staging/sky/sky.d.ts +28 -21
- package/staging/sparkles/sparkles.d.ts +36 -22
- package/staging/spot-light/shadow-mesh-input.d.ts +29 -0
- package/staging/spot-light/shadow-mesh.d.ts +37 -0
- package/staging/spot-light/spot-light-input.d.ts +25 -25
- package/staging/spot-light/spot-light.d.ts +31 -15
- package/staging/spot-light/volumetric-mesh.d.ts +15 -9
- package/staging/stage/stage.d.ts +89 -65
- package/staging/stars/stars.d.ts +28 -17
- package/staging/wireframe/wireframe-input.d.ts +65 -0
- package/staging/wireframe/wireframe.d.ts +28 -0
- package/utils/README.md +3 -0
- package/utils/content/content.d.ts +8 -0
- package/utils/index.d.ts +1 -0
- package/web-types.json +1 -0
- package/abstractions/catmull-rom-line/catmull-rom-line.d.ts +0 -25
- package/abstractions/cubic-bezier-line/cubic-bezier-line.d.ts +0 -25
- package/abstractions/gizmo-helper/gizmo-helper.d.ts +0 -34
- package/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-edge.d.ts +0 -22
- package/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-face.d.ts +0 -30
- package/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-inputs.d.ts +0 -32
- package/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube.d.ts +0 -14
- package/abstractions/gizmo-helper/gizmo-viewport/gizmo-viewport-axis.d.ts +0 -47
- package/abstractions/gizmo-helper/gizmo-viewport/gizmo-viewport.d.ts +0 -40
- package/abstractions/line/line-input.d.ts +0 -42
- package/abstractions/line/line.d.ts +0 -35
- package/abstractions/quadratic-bezier-line/quadratic-bezier-line.d.ts +0 -23
- package/esm2022/abstractions/catmull-rom-line/catmull-rom-line.mjs +0 -131
- package/esm2022/abstractions/cubic-bezier-line/cubic-bezier-line.mjs +0 -113
- package/esm2022/abstractions/gizmo-helper/gizmo-helper.mjs +0 -210
- package/esm2022/abstractions/gizmo-helper/gizmo-viewcube/constants.mjs +0 -31
- package/esm2022/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-edge.mjs +0 -95
- package/esm2022/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-face.mjs +0 -155
- package/esm2022/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-inputs.mjs +0 -62
- package/esm2022/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube.mjs +0 -80
- package/esm2022/abstractions/gizmo-helper/gizmo-viewport/gizmo-viewport-axis.mjs +0 -206
- package/esm2022/abstractions/gizmo-helper/gizmo-viewport/gizmo-viewport.mjs +0 -273
- package/esm2022/abstractions/line/line-input.mjs +0 -113
- package/esm2022/abstractions/line/line.mjs +0 -165
- package/esm2022/abstractions/quadratic-bezier-line/quadratic-bezier-line.mjs +0 -128
- package/esm2022/performance/adaptive/adaptive-dpr.mjs +0 -46
- package/esm2022/performance/adaptive/adaptive-events.mjs +0 -31
- package/esm2022/performance/angular-three-soba-performance.mjs +0 -5
- package/esm2022/performance/detailed/detailed.mjs +0 -61
- package/esm2022/performance/index.mjs +0 -7
- package/esm2022/performance/instances/instance.mjs +0 -48
- package/esm2022/performance/instances/instances.mjs +0 -189
- package/esm2022/performance/instances/position-mesh.mjs +0 -52
- package/esm2022/performance/stats/stats.mjs +0 -79
- package/esm2022/shaders/caustics-material/caustics-material.mjs +0 -128
- package/esm2022/shaders/caustics-material/caustics-projection-material.mjs +0 -33
- package/esm2022/staging/caustics/caustisc.mjs +0 -384
- package/esm2022/staging/spot-light/spot-light-shadow-mesh-input.mjs +0 -57
- package/esm2022/staging/spot-light/spot-light-shadow-mesh.mjs +0 -256
- package/fesm2022/angular-three-soba-performance.mjs +0 -487
- package/fesm2022/angular-three-soba-performance.mjs.map +0 -1
- package/performance/README.md +0 -3
- package/performance/adaptive/adaptive-dpr.d.ts +0 -8
- package/performance/detailed/detailed.d.ts +0 -20
- package/performance/index.d.ts +0 -6
- package/performance/instances/instance.d.ts +0 -9
- package/performance/instances/instances.d.ts +0 -35
- package/performance/stats/stats.d.ts +0 -18
- package/plugin/generators.json +0 -19
- package/plugin/libs/plugin/README.md +0 -11
- package/plugin/package.json +0 -9
- package/plugin/src/generators/init/compat.d.ts +0 -2
- package/plugin/src/generators/init/compat.js +0 -6
- package/plugin/src/generators/init/compat.js.map +0 -1
- package/plugin/src/generators/init/init.d.ts +0 -4
- package/plugin/src/generators/init/init.js +0 -22
- package/plugin/src/generators/init/init.js.map +0 -1
- package/plugin/src/generators/init/schema.json +0 -6
- package/plugin/src/index.d.ts +0 -1
- package/plugin/src/index.js +0 -6
- package/plugin/src/index.js.map +0 -1
- package/staging/caustics/caustisc.d.ts +0 -70
- package/staging/spot-light/spot-light-shadow-mesh-input.d.ts +0 -29
- package/staging/spot-light/spot-light-shadow-mesh.d.ts +0 -38
- /package/{abstractions → gizmos}/gizmo-helper/gizmo-viewcube/constants.d.ts +0 -0
- /package/shaders/{caustics-material → caustics}/caustics-material.d.ts +0 -0
- /package/shaders/{caustics-material → caustics}/caustics-projection-material.d.ts +0 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { type NgtShaderMaterial } from 'angular-three';
|
|
2
|
+
import type { NgtsMeshTranmissionMaterialState } from '../mesh-transmission-material/mesh-transmission-material';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
|
-
export
|
|
4
|
+
export type NgtsMeshRefractionMaterialState = {
|
|
4
5
|
/** Environment map */
|
|
5
6
|
envMap: THREE.CubeTexture | THREE.Texture;
|
|
6
7
|
/** Number of ray-cast bounces, it can be expensive to have too many, 2 */
|
|
@@ -15,36 +16,47 @@ export interface NgtsMeshRefractionMaterialState {
|
|
|
15
16
|
color: THREE.ColorRepresentation;
|
|
16
17
|
/** If this is on it uses fewer ray casts for the RGB shift sacrificing physical accuracy, true */
|
|
17
18
|
fastChroma: boolean;
|
|
19
|
+
};
|
|
20
|
+
declare global {
|
|
21
|
+
interface HTMLElementTagNameMap {
|
|
22
|
+
/**
|
|
23
|
+
* @extends ngt-shader-material
|
|
24
|
+
*/
|
|
25
|
+
'ngts-mesh-refraction-material': NgtsMeshTranmissionMaterialState & NgtShaderMaterial;
|
|
26
|
+
}
|
|
18
27
|
}
|
|
19
|
-
export declare class NgtsMeshRefractionMaterial
|
|
20
|
-
|
|
28
|
+
export declare class NgtsMeshRefractionMaterial {
|
|
29
|
+
private inputs;
|
|
21
30
|
materialRef: import("angular-three").NgtInjectedRef<import("three").ShaderMaterial>;
|
|
22
31
|
/** Environment map */
|
|
23
|
-
set
|
|
32
|
+
set _envMap(envMap: THREE.CubeTexture | THREE.Texture);
|
|
24
33
|
/** Number of ray-cast bounces, it can be expensive to have too many, 2 */
|
|
25
|
-
set
|
|
34
|
+
set _bounces(bounces: number);
|
|
26
35
|
/** Refraction index, 2.4 */
|
|
27
|
-
set
|
|
36
|
+
set _ior(ior: number);
|
|
28
37
|
/** Fresnel (strip light), 0 */
|
|
29
|
-
set
|
|
38
|
+
set _fresnel(fresnel: number);
|
|
30
39
|
/** RGB shift intensity, can be expensive, 0 */
|
|
31
|
-
set
|
|
40
|
+
set _aberrationStrength(aberrationStrength: number);
|
|
32
41
|
/** Color, white */
|
|
33
|
-
set
|
|
42
|
+
set _color(color: THREE.ColorRepresentation);
|
|
34
43
|
/** If this is on it uses fewer ray casts for the RGB shift sacrificing physical accuracy, true */
|
|
35
|
-
set
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
+
set _fastChroma(fastChroma: boolean);
|
|
45
|
+
envMap: import("@angular/core").Signal<import("three").Texture | import("three").CubeTexture>;
|
|
46
|
+
bounces: import("@angular/core").Signal<number>;
|
|
47
|
+
ior: import("@angular/core").Signal<number>;
|
|
48
|
+
fresnel: import("@angular/core").Signal<number>;
|
|
49
|
+
aberrationStrength: import("@angular/core").Signal<number>;
|
|
50
|
+
color: import("@angular/core").Signal<import("three").ColorRepresentation>;
|
|
51
|
+
fastChroma: import("@angular/core").Signal<boolean>;
|
|
52
|
+
private store;
|
|
53
|
+
private size;
|
|
54
|
+
defines: import("@angular/core").Signal<{
|
|
44
55
|
[key: string]: string;
|
|
45
56
|
} | null>;
|
|
46
|
-
|
|
57
|
+
resolution: import("@angular/core").Signal<number[]>;
|
|
47
58
|
constructor();
|
|
59
|
+
private setupGeometry;
|
|
48
60
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsMeshRefractionMaterial, never>;
|
|
49
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsMeshRefractionMaterial, "ngts-mesh-refraction-material", never, { "materialRef": { "alias": "materialRef"; "required": false; }; "
|
|
61
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsMeshRefractionMaterial, "ngts-mesh-refraction-material", never, { "materialRef": { "alias": "materialRef"; "required": false; }; "_envMap": { "alias": "envMap"; "required": true; }; "_bounces": { "alias": "bounces"; "required": false; }; "_ior": { "alias": "ior"; "required": false; }; "_fresnel": { "alias": "fresnel"; "required": false; }; "_aberrationStrength": { "alias": "aberrationStrength"; "required": false; }; "_color": { "alias": "color"; "required": false; }; "_fastChroma": { "alias": "fastChroma"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
50
62
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { type NgtMeshPhysicalMaterial } from 'angular-three';
|
|
2
2
|
import { MeshTransmissionMaterial } from 'angular-three-soba/shaders';
|
|
3
3
|
import * as THREE from 'three';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export
|
|
5
|
+
export type NgtsMeshTranmissionMaterialState = {
|
|
6
6
|
/** transmissionSampler, you can use the threejs transmission sampler texture that is
|
|
7
7
|
* generated once for all transmissive materials. The upside is that it can be faster if you
|
|
8
8
|
* use multiple MeshPhysical and Transmission materials, the downside is that transmissive materials
|
|
@@ -25,6 +25,7 @@ export interface NgtsMeshTranmissionMaterialState {
|
|
|
25
25
|
roughness: number;
|
|
26
26
|
chromaticAberration: number;
|
|
27
27
|
anisotropy: number;
|
|
28
|
+
anisotropicBlur: number;
|
|
28
29
|
distortion: number;
|
|
29
30
|
distortionScale: number;
|
|
30
31
|
temporalDistortion: number;
|
|
@@ -32,9 +33,17 @@ export interface NgtsMeshTranmissionMaterialState {
|
|
|
32
33
|
buffer: THREE.Texture | null;
|
|
33
34
|
/** Internals */
|
|
34
35
|
time: number;
|
|
36
|
+
};
|
|
37
|
+
declare global {
|
|
38
|
+
interface HTMLElementTagNameMap {
|
|
39
|
+
/**
|
|
40
|
+
* @extends ngt-mesh-physical-material
|
|
41
|
+
*/
|
|
42
|
+
'ngts-mesh-transmission-material': NgtsMeshTranmissionMaterialState & NgtMeshPhysicalMaterial;
|
|
43
|
+
}
|
|
35
44
|
}
|
|
36
|
-
export declare class NgtsMeshTranmissionMaterial
|
|
37
|
-
|
|
45
|
+
export declare class NgtsMeshTranmissionMaterial {
|
|
46
|
+
private inputs;
|
|
38
47
|
materialRef: import("angular-three").NgtInjectedRef<MeshTransmissionMaterial & {
|
|
39
48
|
time: number;
|
|
40
49
|
buffer?: THREE.Texture | undefined;
|
|
@@ -43,49 +52,56 @@ export declare class NgtsMeshTranmissionMaterial extends NgtSignalStore<NgtsMesh
|
|
|
43
52
|
* generated once for all transmissive materials. The upside is that it can be faster if you
|
|
44
53
|
* use multiple MeshPhysical and Transmission materials, the downside is that transmissive materials
|
|
45
54
|
* using this can't see other transparent or transmissive objects, default: false */
|
|
46
|
-
set
|
|
55
|
+
set _transmissionSampler(transmissionSampler: boolean);
|
|
47
56
|
/** Render the backside of the material (more cost, better results), default: false */
|
|
48
|
-
set
|
|
57
|
+
set _backside(backside: boolean);
|
|
49
58
|
/** Backside thickness (when backside is true), default: 0 */
|
|
50
|
-
set
|
|
59
|
+
set _backsideThickness(backsideThickness: number);
|
|
51
60
|
/** Resolution of the local buffer, default: undefined (fullscreen) */
|
|
52
|
-
set
|
|
61
|
+
set _resolution(resolution: number);
|
|
53
62
|
/** Resolution of the local buffer for backfaces, default: undefined (fullscreen) */
|
|
54
|
-
set
|
|
63
|
+
set _backsideResolution(backsideResolution: number);
|
|
55
64
|
/** Refraction samples, default: 10 */
|
|
56
|
-
set
|
|
65
|
+
set _samples(samples: number);
|
|
57
66
|
/** Buffer scene background (can be a texture, a cubetexture or a color), default: null */
|
|
58
|
-
set
|
|
59
|
-
set
|
|
60
|
-
set
|
|
61
|
-
set
|
|
62
|
-
set
|
|
63
|
-
set
|
|
64
|
-
set
|
|
65
|
-
set
|
|
66
|
-
set
|
|
67
|
+
set _background(background: THREE.Texture | THREE.Color);
|
|
68
|
+
set _transmission(transmission: number);
|
|
69
|
+
set _thickness(thickness: number);
|
|
70
|
+
set _roughness(roughness: number);
|
|
71
|
+
set _chromaticAberration(chromaticAberration: number);
|
|
72
|
+
set _anisotropy(anisotropy: number);
|
|
73
|
+
set _anisotropicBlur(anisotropicBlur: number);
|
|
74
|
+
set _distortion(distortion: number);
|
|
75
|
+
set _distortionScale(distortionScale: number);
|
|
76
|
+
set _temporalDistortion(temporalDistortion: number);
|
|
67
77
|
/** The scene rendered into a texture (use it to share a texture between materials), default: null */
|
|
68
|
-
set
|
|
78
|
+
set _buffer(buffer: THREE.Texture);
|
|
69
79
|
/** Internals */
|
|
70
|
-
set
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
80
|
+
set _time(time: number);
|
|
81
|
+
transmissionSampler: import("@angular/core").Signal<boolean>;
|
|
82
|
+
backside: import("@angular/core").Signal<boolean>;
|
|
83
|
+
transmission: import("@angular/core").Signal<number>;
|
|
84
|
+
thickness: import("@angular/core").Signal<number>;
|
|
85
|
+
backsideThickness: import("@angular/core").Signal<number>;
|
|
86
|
+
samples: import("@angular/core").Signal<number>;
|
|
87
|
+
roughness: import("@angular/core").Signal<number>;
|
|
88
|
+
anisotropy: import("@angular/core").Signal<number>;
|
|
89
|
+
anisotropicBlur: import("@angular/core").Signal<number>;
|
|
90
|
+
chromaticAberration: import("@angular/core").Signal<number>;
|
|
91
|
+
distortion: import("@angular/core").Signal<number>;
|
|
92
|
+
distortionScale: import("@angular/core").Signal<number>;
|
|
93
|
+
temporalDistortion: import("@angular/core").Signal<number>;
|
|
94
|
+
buffer: import("@angular/core").Signal<THREE.Texture | null>;
|
|
95
|
+
time: import("@angular/core").Signal<number>;
|
|
96
|
+
private discardMaterial;
|
|
97
|
+
private backsideResolution;
|
|
98
|
+
private resolution;
|
|
99
|
+
private fboBackSettings;
|
|
100
|
+
private fboMainSettings;
|
|
101
|
+
fboBackRef: import("angular-three").NgtInjectedRef<THREE.WebGLRenderTarget<THREE.Texture> | null>;
|
|
102
|
+
fboMainRef: import("angular-three").NgtInjectedRef<THREE.WebGLRenderTarget<THREE.Texture> | null>;
|
|
103
|
+
side: 0;
|
|
88
104
|
constructor();
|
|
89
105
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsMeshTranmissionMaterial, never>;
|
|
90
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsMeshTranmissionMaterial, "ngts-mesh-transmission-material", never, { "materialRef": { "alias": "materialRef"; "required": false; }; "
|
|
106
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsMeshTranmissionMaterial, "ngts-mesh-transmission-material", never, { "materialRef": { "alias": "materialRef"; "required": false; }; "_transmissionSampler": { "alias": "transmissionSampler"; "required": false; }; "_backside": { "alias": "backside"; "required": false; }; "_backsideThickness": { "alias": "backsideThickness"; "required": false; }; "_resolution": { "alias": "resolution"; "required": false; }; "_backsideResolution": { "alias": "backsideResolution"; "required": false; }; "_samples": { "alias": "samples"; "required": false; }; "_background": { "alias": "background"; "required": false; }; "_transmission": { "alias": "transmission"; "required": false; }; "_thickness": { "alias": "thickness"; "required": false; }; "_roughness": { "alias": "roughness"; "required": false; }; "_chromaticAberration": { "alias": "chromaticAberration"; "required": false; }; "_anisotropy": { "alias": "anisotropy"; "required": false; }; "_anisotropicBlur": { "alias": "anisotropicBlur"; "required": false; }; "_distortion": { "alias": "distortion"; "required": false; }; "_distortionScale": { "alias": "distortionScale"; "required": false; }; "_temporalDistortion": { "alias": "temporalDistortion"; "required": false; }; "_buffer": { "alias": "buffer"; "required": false; }; "_time": { "alias": "time"; "required": false; }; }, {}, never, never, true, never>;
|
|
91
107
|
}
|
|
@@ -1,20 +1,29 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { type NgtMeshStandardMaterial } from 'angular-three';
|
|
2
2
|
import { MeshWobbleMaterial } from 'angular-three-soba/shaders';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export
|
|
4
|
+
export type NgtsMeshWobbleMaterialState = {
|
|
5
5
|
time: number;
|
|
6
6
|
factor: number;
|
|
7
7
|
speed: number;
|
|
8
|
+
};
|
|
9
|
+
declare global {
|
|
10
|
+
interface HTMLElementTagNameMap {
|
|
11
|
+
/**
|
|
12
|
+
* @extends ngt-mesh-standard-material
|
|
13
|
+
*/
|
|
14
|
+
'ngts-mesh-wobble-material': NgtsMeshWobbleMaterialState & NgtMeshStandardMaterial;
|
|
15
|
+
}
|
|
8
16
|
}
|
|
9
|
-
export declare class NgtsMeshWobbleMaterial
|
|
10
|
-
|
|
17
|
+
export declare class NgtsMeshWobbleMaterial {
|
|
18
|
+
private inputs;
|
|
11
19
|
materialRef: import("angular-three").NgtInjectedRef<MeshWobbleMaterial>;
|
|
12
|
-
set
|
|
13
|
-
set
|
|
14
|
-
set
|
|
15
|
-
|
|
16
|
-
|
|
20
|
+
set _time(time: number);
|
|
21
|
+
set _factor(factor: number);
|
|
22
|
+
set _speed(speed: number);
|
|
23
|
+
material: MeshWobbleMaterial;
|
|
24
|
+
time: import("@angular/core").Signal<number>;
|
|
25
|
+
factor: import("@angular/core").Signal<number>;
|
|
17
26
|
constructor();
|
|
18
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsMeshWobbleMaterial, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsMeshWobbleMaterial, "ngts-mesh-wobble-material", never, { "materialRef": { "alias": "materialRef"; "required": false; }; "
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsMeshWobbleMaterial, "ngts-mesh-wobble-material", never, { "materialRef": { "alias": "materialRef"; "required": false; }; "_time": { "alias": "time"; "required": false; }; "_factor": { "alias": "factor"; "required": false; }; "_speed": { "alias": "speed"; "required": false; }; }, {}, never, never, true, never>;
|
|
20
29
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { type NgtPointsMaterial } from 'angular-three';
|
|
2
|
+
import * as THREE from 'three';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PointMaterial extends THREE.PointsMaterial {
|
|
5
|
+
constructor(parameters: THREE.PointsMaterialParameters);
|
|
6
|
+
}
|
|
7
|
+
declare global {
|
|
8
|
+
interface HTMLElementTagNameMap {
|
|
9
|
+
/**
|
|
10
|
+
* @extends ngt-points-material
|
|
11
|
+
*/
|
|
12
|
+
'ngt-point-material': NgtPointsMaterial;
|
|
13
|
+
/**
|
|
14
|
+
* @extends ngt-points-material
|
|
15
|
+
*/
|
|
16
|
+
'ngts-point-material': NgtPointsMaterial;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
export declare class NgtsPointMaterial {
|
|
20
|
+
pointMaterialRef: import("angular-three").NgtInjectedRef<PointMaterial>;
|
|
21
|
+
material: PointMaterial;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsPointMaterial, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsPointMaterial, "ngts-point-material", never, { "pointMaterialRef": { "alias": "pointMaterialRef"; "required": false; }; }, {}, never, never, true, never>;
|
|
24
|
+
}
|
package/metadata.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"$schema":"https://raw.githubusercontent.com/microsoft/vscode-html-languageservice/main/docs/customData.schema.json","version":1.1,"tags":[{"name":"ngts-orbit-controls","attributes":[{"name":"object"},{"name":"[object]"},{"name":"domElement"},{"name":"[domElement]"},{"name":"enabled"},{"name":"[enabled]"},{"name":"target"},{"name":"[target]"},{"name":"minDistance"},{"name":"[minDistance]"},{"name":"maxDistance"},{"name":"[maxDistance]"},{"name":"minZoom"},{"name":"[minZoom]"},{"name":"maxZoom"},{"name":"[maxZoom]"},{"name":"minPolarAngle"},{"name":"[minPolarAngle]"},{"name":"maxPolarAngle"},{"name":"[maxPolarAngle]"},{"name":"minAzimuthAngle"},{"name":"[minAzimuthAngle]"},{"name":"maxAzimuthAngle"},{"name":"[maxAzimuthAngle]"},{"name":"enableDamping"},{"name":"[enableDamping]"},{"name":"dampingFactor"},{"name":"[dampingFactor]"},{"name":"enableZoom"},{"name":"[enableZoom]"},{"name":"zoomSpeed"},{"name":"[zoomSpeed]"},{"name":"enableRotate"},{"name":"[enableRotate]"},{"name":"rotateSpeed"},{"name":"[rotateSpeed]"},{"name":"enablePan"},{"name":"[enablePan]"},{"name":"panSpeed"},{"name":"[panSpeed]"},{"name":"screenSpacePanning"},{"name":"[screenSpacePanning]"},{"name":"keyPanSpeed"},{"name":"[keyPanSpeed]"},{"name":"autoRotate"},{"name":"[autoRotate]"},{"name":"autoRotateSpeed"},{"name":"[autoRotateSpeed]"},{"name":"reverseOrbit"},{"name":"[reverseOrbit]"},{"name":"reverseHorizontalOrbit"},{"name":"[reverseHorizontalOrbit]"},{"name":"reverseVerticalOrbit"},{"name":"[reverseVerticalOrbit]"},{"name":"keys"},{"name":"[keys]"},{"name":"mouseButtons"},{"name":"[mouseButtons]"},{"name":"touches"},{"name":"[touches]"},{"name":"_domElementKeyEvents"},{"name":"[_domElementKeyEvents]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"camera"},{"name":"[camera]"},{"name":"makeDefault"},{"name":"[makeDefault]"},{"name":"regress"},{"name":"[regress]"},{"name":"keyEvents"},{"name":"[keyEvents]"}]},{"name":"ngts-billboard","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"follow"},{"name":"[follow]"},{"name":"lockX"},{"name":"[lockX]"},{"name":"lockY"},{"name":"[lockY]"},{"name":"lockZ"},{"name":"[lockZ]"}]},{"name":"ngts-text","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"text"},{"name":"[text]"},{"name":"fontSize"},{"name":"[fontSize]"},{"name":"anchorX"},{"name":"[anchorX]"},{"name":"anchorY"},{"name":"[anchorY]"},{"name":"sdfGlyphSize"},{"name":"[sdfGlyphSize]"},{"name":"font"},{"name":"[font]"},{"name":"characters"},{"name":"[characters]"},{"name":"color"},{"name":"[color]"},{"name":"maxWidth"},{"name":"[maxWidth]"},{"name":"lineHeight"},{"name":"[lineHeight]"},{"name":"letterSpacing"},{"name":"[letterSpacing]"},{"name":"textAlign"},{"name":"[textAlign]"},{"name":"clipRect"},{"name":"[clipRect]"},{"name":"depthOffset"},{"name":"[depthOffset]"},{"name":"direction"},{"name":"[direction]"},{"name":"overflowWrap"},{"name":"[overflowWrap]"},{"name":"whiteSpace"},{"name":"[whiteSpace]"},{"name":"outlineWidth"},{"name":"[outlineWidth]"},{"name":"outlineOffsetX"},{"name":"[outlineOffsetX]"},{"name":"outlineOffsetY"},{"name":"[outlineOffsetY]"},{"name":"outlineBlur"},{"name":"[outlineBlur]"},{"name":"outlineColor"},{"name":"[outlineColor]"},{"name":"outlineOpacity"},{"name":"[outlineOpacity]"},{"name":"strokeWidth"},{"name":"[strokeWidth]"},{"name":"strokeColor"},{"name":"[strokeColor]"},{"name":"strokeOpacity"},{"name":"[strokeOpacity]"},{"name":"fillOpacity"},{"name":"[fillOpacity]"},{"name":"debugSDF"},{"name":"[debugSDF]"}]},{"name":"ngts-grid","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"args"},{"name":"[args]"}]},{"name":"ngts-text-3d","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"bevelEnabled"},{"name":"[bevelEnabled]"},{"name":"bevelOffset"},{"name":"[bevelOffset]"},{"name":"bevelSize"},{"name":"[bevelSize]"},{"name":"bevelThickness"},{"name":"[bevelThickness]"},{"name":"curveSegments"},{"name":"[curveSegments]"},{"name":"font"},{"name":"[font]"},{"name":"height"},{"name":"[height]"},{"name":"size"},{"name":"[size]"},{"name":"lineHeight"},{"name":"[lineHeight]"},{"name":"letterSpacing"},{"name":"[letterSpacing]"},{"name":"text"},{"name":"[text]"},{"name":"bevelSegments"},{"name":"[bevelSegments]"},{"name":"smooth"},{"name":"[smooth]"}]},{"name":"ngts-perspective-camera","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"makeDefault"},{"name":"[makeDefault]"},{"name":"manual"},{"name":"[manual]"},{"name":"frames"},{"name":"[frames]"},{"name":"resolution"},{"name":"[resolution]"},{"name":"envMap"},{"name":"[envMap]"}]},{"name":"ngts-orthographic-camera","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"makeDefault"},{"name":"[makeDefault]"},{"name":"manual"},{"name":"[manual]"},{"name":"frames"},{"name":"[frames]"},{"name":"resolution"},{"name":"[resolution]"},{"name":"envMap"},{"name":"[envMap]"},{"name":"left"},{"name":"[left]"},{"name":"top"},{"name":"[top]"},{"name":"right"},{"name":"[right]"},{"name":"bottom"},{"name":"[bottom]"}]},{"name":"ngts-cube-camera","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"resolution"},{"name":"[resolution]"},{"name":"near"},{"name":"[near]"},{"name":"far"},{"name":"[far]"},{"name":"envMap"},{"name":"[envMap]"},{"name":"fog"},{"name":"[fog]"},{"name":"frames"},{"name":"[frames]"}]},{"name":"ngts-decal","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"debug"},{"name":"[debug]"},{"name":"mesh"},{"name":"[mesh]"},{"name":"map"},{"name":"[map]"},{"name":"polygonOffsetFactor"},{"name":"[polygonOffsetFactor]"},{"name":"depthTest"},{"name":"[depthTest]"}]},{"name":"ngts-sampler","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"count"},{"name":"[count]"},{"name":"mesh"},{"name":"[mesh]"},{"name":"transform"},{"name":"[transform]"},{"name":"weight"},{"name":"[weight]"},{"name":"instancedMesh"},{"name":"[instancedMesh]"}]},{"name":"ngts-shadow","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"colorStop"},{"name":"[colorStop]"},{"name":"fog"},{"name":"[fog]"},{"name":"color"},{"name":"[color]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"depthWrite"},{"name":"[depthWrite]"}]},{"name":"ngts-html","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"as"},{"name":"[as]"},{"name":"prepend"},{"name":"[prepend]"},{"name":"transform"},{"name":"[transform]"},{"name":"zIndexRange"},{"name":"[zIndexRange]"},{"name":"calculatePosition"},{"name":"[calculatePosition]"},{"name":"fullscreen"},{"name":"[fullscreen]"},{"name":"center"},{"name":"[center]"},{"name":"sprite"},{"name":"[sprite]"},{"name":"pointerEvents"},{"name":"[pointerEvents]"},{"name":"eps"},{"name":"[eps]"},{"name":"content"},{"name":"[content]"},{"name":"distanceFactor"},{"name":"[distanceFactor]"},{"name":"style"},{"name":"[style]"},{"name":"renderedDivClass"},{"name":"[renderedDivClass]"},{"name":"wrapperClass"},{"name":"[wrapperClass]"},{"name":"portal"},{"name":"[portal]"},{"name":"occlude"},{"name":"[occlude]"},{"name":"material"},{"name":"[material]"},{"name":"geometry"},{"name":"[geometry]"},{"name":"castShadow"},{"name":"[castShadow]"},{"name":"receiveShadow"},{"name":"[receiveShadow]"}]},{"name":"ngts-trail","attributes":[{"name":"color"},{"name":"[color]"},{"name":"attenuation"},{"name":"[attenuation]"},{"name":"target"},{"name":"[target]"}]},{"name":"ngts-mesh-wobble-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"alphaHash"},{"name":"[alphaHash]"},{"name":"alphaTest"},{"name":"[alphaTest]"},{"name":"alphaToCoverage"},{"name":"[alphaToCoverage]"},{"name":"blendDst"},{"name":"[blendDst]"},{"name":"blendDstAlpha"},{"name":"[blendDstAlpha]"},{"name":"blendEquation"},{"name":"[blendEquation]"},{"name":"blendEquationAlpha"},{"name":"[blendEquationAlpha]"},{"name":"blending"},{"name":"[blending]"},{"name":"blendSrc"},{"name":"[blendSrc]"},{"name":"blendSrcAlpha"},{"name":"[blendSrcAlpha]"},{"name":"clipIntersection"},{"name":"[clipIntersection]"},{"name":"clippingPlanes"},{"name":"[clippingPlanes]"},{"name":"clipShadows"},{"name":"[clipShadows]"},{"name":"colorWrite"},{"name":"[colorWrite]"},{"name":"defines"},{"name":"[defines]"},{"name":"depthFunc"},{"name":"[depthFunc]"},{"name":"depthTest"},{"name":"[depthTest]"},{"name":"depthWrite"},{"name":"[depthWrite]"},{"name":"stencilWrite"},{"name":"[stencilWrite]"},{"name":"stencilFunc"},{"name":"[stencilFunc]"},{"name":"stencilRef"},{"name":"[stencilRef]"},{"name":"stencilWriteMask"},{"name":"[stencilWriteMask]"},{"name":"stencilFuncMask"},{"name":"[stencilFuncMask]"},{"name":"stencilFail"},{"name":"[stencilFail]"},{"name":"stencilZFail"},{"name":"[stencilZFail]"},{"name":"stencilZPass"},{"name":"[stencilZPass]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"polygonOffset"},{"name":"[polygonOffset]"},{"name":"polygonOffsetFactor"},{"name":"[polygonOffsetFactor]"},{"name":"polygonOffsetUnits"},{"name":"[polygonOffsetUnits]"},{"name":"precision"},{"name":"[precision]"},{"name":"premultipliedAlpha"},{"name":"[premultipliedAlpha]"},{"name":"forceSinglePass"},{"name":"[forceSinglePass]"},{"name":"dithering"},{"name":"[dithering]"},{"name":"side"},{"name":"[side]"},{"name":"shadowSide"},{"name":"[shadowSide]"},{"name":"toneMapped"},{"name":"[toneMapped]"},{"name":"transparent"},{"name":"[transparent]"},{"name":"vertexColors"},{"name":"[vertexColors]"},{"name":"visible"},{"name":"[visible]"},{"name":"version"},{"name":"[version]"},{"name":"onBeforeCompile"},{"name":"[onBeforeCompile]"},{"name":"customProgramCacheKey"},{"name":"[customProgramCacheKey]"},{"name":"color"},{"name":"[color]"},{"name":"fog"},{"name":"[fog]"},{"name":"map"},{"name":"[map]"},{"name":"alphaMap"},{"name":"[alphaMap]"},{"name":"wireframe"},{"name":"[wireframe]"},{"name":"wireframeLinewidth"},{"name":"[wireframeLinewidth]"},{"name":"roughness"},{"name":"[roughness]"},{"name":"metalness"},{"name":"[metalness]"},{"name":"lightMap"},{"name":"[lightMap]"},{"name":"lightMapIntensity"},{"name":"[lightMapIntensity]"},{"name":"aoMap"},{"name":"[aoMap]"},{"name":"aoMapIntensity"},{"name":"[aoMapIntensity]"},{"name":"emissive"},{"name":"[emissive]"},{"name":"emissiveIntensity"},{"name":"[emissiveIntensity]"},{"name":"emissiveMap"},{"name":"[emissiveMap]"},{"name":"bumpMap"},{"name":"[bumpMap]"},{"name":"bumpScale"},{"name":"[bumpScale]"},{"name":"normalMap"},{"name":"[normalMap]"},{"name":"normalMapType"},{"name":"[normalMapType]"},{"name":"normalScale"},{"name":"[normalScale]"},{"name":"displacementMap"},{"name":"[displacementMap]"},{"name":"displacementScale"},{"name":"[displacementScale]"},{"name":"displacementBias"},{"name":"[displacementBias]"},{"name":"roughnessMap"},{"name":"[roughnessMap]"},{"name":"metalnessMap"},{"name":"[metalnessMap]"},{"name":"envMap"},{"name":"[envMap]"},{"name":"envMapIntensity"},{"name":"[envMapIntensity]"},{"name":"wireframeLinecap"},{"name":"[wireframeLinecap]"},{"name":"wireframeLinejoin"},{"name":"[wireframeLinejoin]"},{"name":"flatShading"},{"name":"[flatShading]"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"time"},{"name":"[time]"},{"name":"factor"},{"name":"[factor]"},{"name":"speed"},{"name":"[speed]"}]},{"name":"ngts-mesh-distort-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"alphaHash"},{"name":"[alphaHash]"},{"name":"alphaTest"},{"name":"[alphaTest]"},{"name":"alphaToCoverage"},{"name":"[alphaToCoverage]"},{"name":"blendDst"},{"name":"[blendDst]"},{"name":"blendDstAlpha"},{"name":"[blendDstAlpha]"},{"name":"blendEquation"},{"name":"[blendEquation]"},{"name":"blendEquationAlpha"},{"name":"[blendEquationAlpha]"},{"name":"blending"},{"name":"[blending]"},{"name":"blendSrc"},{"name":"[blendSrc]"},{"name":"blendSrcAlpha"},{"name":"[blendSrcAlpha]"},{"name":"clipIntersection"},{"name":"[clipIntersection]"},{"name":"clippingPlanes"},{"name":"[clippingPlanes]"},{"name":"clipShadows"},{"name":"[clipShadows]"},{"name":"colorWrite"},{"name":"[colorWrite]"},{"name":"defines"},{"name":"[defines]"},{"name":"depthFunc"},{"name":"[depthFunc]"},{"name":"depthTest"},{"name":"[depthTest]"},{"name":"depthWrite"},{"name":"[depthWrite]"},{"name":"stencilWrite"},{"name":"[stencilWrite]"},{"name":"stencilFunc"},{"name":"[stencilFunc]"},{"name":"stencilRef"},{"name":"[stencilRef]"},{"name":"stencilWriteMask"},{"name":"[stencilWriteMask]"},{"name":"stencilFuncMask"},{"name":"[stencilFuncMask]"},{"name":"stencilFail"},{"name":"[stencilFail]"},{"name":"stencilZFail"},{"name":"[stencilZFail]"},{"name":"stencilZPass"},{"name":"[stencilZPass]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"polygonOffset"},{"name":"[polygonOffset]"},{"name":"polygonOffsetFactor"},{"name":"[polygonOffsetFactor]"},{"name":"polygonOffsetUnits"},{"name":"[polygonOffsetUnits]"},{"name":"precision"},{"name":"[precision]"},{"name":"premultipliedAlpha"},{"name":"[premultipliedAlpha]"},{"name":"forceSinglePass"},{"name":"[forceSinglePass]"},{"name":"dithering"},{"name":"[dithering]"},{"name":"side"},{"name":"[side]"},{"name":"shadowSide"},{"name":"[shadowSide]"},{"name":"toneMapped"},{"name":"[toneMapped]"},{"name":"transparent"},{"name":"[transparent]"},{"name":"vertexColors"},{"name":"[vertexColors]"},{"name":"visible"},{"name":"[visible]"},{"name":"version"},{"name":"[version]"},{"name":"onBeforeCompile"},{"name":"[onBeforeCompile]"},{"name":"customProgramCacheKey"},{"name":"[customProgramCacheKey]"},{"name":"color"},{"name":"[color]"},{"name":"fog"},{"name":"[fog]"},{"name":"map"},{"name":"[map]"},{"name":"alphaMap"},{"name":"[alphaMap]"},{"name":"wireframe"},{"name":"[wireframe]"},{"name":"wireframeLinewidth"},{"name":"[wireframeLinewidth]"},{"name":"clearcoat"},{"name":"[clearcoat]"},{"name":"clearcoatMap"},{"name":"[clearcoatMap]"},{"name":"clearcoatRoughness"},{"name":"[clearcoatRoughness]"},{"name":"clearcoatRoughnessMap"},{"name":"[clearcoatRoughnessMap]"},{"name":"clearcoatNormalScale"},{"name":"[clearcoatNormalScale]"},{"name":"clearcoatNormalMap"},{"name":"[clearcoatNormalMap]"},{"name":"reflectivity"},{"name":"[reflectivity]"},{"name":"ior"},{"name":"[ior]"},{"name":"sheen"},{"name":"[sheen]"},{"name":"sheenColor"},{"name":"[sheenColor]"},{"name":"sheenColorMap"},{"name":"[sheenColorMap]"},{"name":"sheenRoughness"},{"name":"[sheenRoughness]"},{"name":"sheenRoughnessMap"},{"name":"[sheenRoughnessMap]"},{"name":"transmission"},{"name":"[transmission]"},{"name":"transmissionMap"},{"name":"[transmissionMap]"},{"name":"thickness"},{"name":"[thickness]"},{"name":"thicknessMap"},{"name":"[thicknessMap]"},{"name":"attenuationDistance"},{"name":"[attenuationDistance]"},{"name":"attenuationColor"},{"name":"[attenuationColor]"},{"name":"specularIntensity"},{"name":"[specularIntensity]"},{"name":"specularColor"},{"name":"[specularColor]"},{"name":"specularIntensityMap"},{"name":"[specularIntensityMap]"},{"name":"specularColorMap"},{"name":"[specularColorMap]"},{"name":"iridescenceMap"},{"name":"[iridescenceMap]"},{"name":"iridescenceIOR"},{"name":"[iridescenceIOR]"},{"name":"iridescence"},{"name":"[iridescence]"},{"name":"iridescenceThicknessRange"},{"name":"[iridescenceThicknessRange]"},{"name":"iridescenceThicknessMap"},{"name":"[iridescenceThicknessMap]"},{"name":"anisotropy"},{"name":"[anisotropy]"},{"name":"anisotropyRotation"},{"name":"[anisotropyRotation]"},{"name":"anisotropyMap"},{"name":"[anisotropyMap]"},{"name":"roughness"},{"name":"[roughness]"},{"name":"metalness"},{"name":"[metalness]"},{"name":"lightMap"},{"name":"[lightMap]"},{"name":"lightMapIntensity"},{"name":"[lightMapIntensity]"},{"name":"aoMap"},{"name":"[aoMap]"},{"name":"aoMapIntensity"},{"name":"[aoMapIntensity]"},{"name":"emissive"},{"name":"[emissive]"},{"name":"emissiveIntensity"},{"name":"[emissiveIntensity]"},{"name":"emissiveMap"},{"name":"[emissiveMap]"},{"name":"bumpMap"},{"name":"[bumpMap]"},{"name":"bumpScale"},{"name":"[bumpScale]"},{"name":"normalMap"},{"name":"[normalMap]"},{"name":"normalMapType"},{"name":"[normalMapType]"},{"name":"normalScale"},{"name":"[normalScale]"},{"name":"displacementMap"},{"name":"[displacementMap]"},{"name":"displacementScale"},{"name":"[displacementScale]"},{"name":"displacementBias"},{"name":"[displacementBias]"},{"name":"roughnessMap"},{"name":"[roughnessMap]"},{"name":"metalnessMap"},{"name":"[metalnessMap]"},{"name":"envMap"},{"name":"[envMap]"},{"name":"envMapIntensity"},{"name":"[envMapIntensity]"},{"name":"wireframeLinecap"},{"name":"[wireframeLinecap]"},{"name":"wireframeLinejoin"},{"name":"[wireframeLinejoin]"},{"name":"flatShading"},{"name":"[flatShading]"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"time"},{"name":"[time]"},{"name":"distort"},{"name":"[distort]"},{"name":"radius"},{"name":"[radius]"},{"name":"speed"},{"name":"[speed]"}]},{"name":"ngts-mesh-reflector-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"alphaHash"},{"name":"[alphaHash]"},{"name":"alphaTest"},{"name":"[alphaTest]"},{"name":"alphaToCoverage"},{"name":"[alphaToCoverage]"},{"name":"blendDst"},{"name":"[blendDst]"},{"name":"blendDstAlpha"},{"name":"[blendDstAlpha]"},{"name":"blendEquation"},{"name":"[blendEquation]"},{"name":"blendEquationAlpha"},{"name":"[blendEquationAlpha]"},{"name":"blending"},{"name":"[blending]"},{"name":"blendSrc"},{"name":"[blendSrc]"},{"name":"blendSrcAlpha"},{"name":"[blendSrcAlpha]"},{"name":"clipIntersection"},{"name":"[clipIntersection]"},{"name":"clippingPlanes"},{"name":"[clippingPlanes]"},{"name":"clipShadows"},{"name":"[clipShadows]"},{"name":"colorWrite"},{"name":"[colorWrite]"},{"name":"defines"},{"name":"[defines]"},{"name":"depthFunc"},{"name":"[depthFunc]"},{"name":"depthTest"},{"name":"[depthTest]"},{"name":"depthWrite"},{"name":"[depthWrite]"},{"name":"stencilWrite"},{"name":"[stencilWrite]"},{"name":"stencilFunc"},{"name":"[stencilFunc]"},{"name":"stencilRef"},{"name":"[stencilRef]"},{"name":"stencilWriteMask"},{"name":"[stencilWriteMask]"},{"name":"stencilFuncMask"},{"name":"[stencilFuncMask]"},{"name":"stencilFail"},{"name":"[stencilFail]"},{"name":"stencilZFail"},{"name":"[stencilZFail]"},{"name":"stencilZPass"},{"name":"[stencilZPass]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"polygonOffset"},{"name":"[polygonOffset]"},{"name":"polygonOffsetFactor"},{"name":"[polygonOffsetFactor]"},{"name":"polygonOffsetUnits"},{"name":"[polygonOffsetUnits]"},{"name":"precision"},{"name":"[precision]"},{"name":"premultipliedAlpha"},{"name":"[premultipliedAlpha]"},{"name":"forceSinglePass"},{"name":"[forceSinglePass]"},{"name":"dithering"},{"name":"[dithering]"},{"name":"side"},{"name":"[side]"},{"name":"shadowSide"},{"name":"[shadowSide]"},{"name":"toneMapped"},{"name":"[toneMapped]"},{"name":"transparent"},{"name":"[transparent]"},{"name":"vertexColors"},{"name":"[vertexColors]"},{"name":"visible"},{"name":"[visible]"},{"name":"version"},{"name":"[version]"},{"name":"onBeforeCompile"},{"name":"[onBeforeCompile]"},{"name":"customProgramCacheKey"},{"name":"[customProgramCacheKey]"},{"name":"color"},{"name":"[color]"},{"name":"fog"},{"name":"[fog]"},{"name":"map"},{"name":"[map]"},{"name":"alphaMap"},{"name":"[alphaMap]"},{"name":"wireframe"},{"name":"[wireframe]"},{"name":"wireframeLinewidth"},{"name":"[wireframeLinewidth]"},{"name":"roughness"},{"name":"[roughness]"},{"name":"metalness"},{"name":"[metalness]"},{"name":"lightMap"},{"name":"[lightMap]"},{"name":"lightMapIntensity"},{"name":"[lightMapIntensity]"},{"name":"aoMap"},{"name":"[aoMap]"},{"name":"aoMapIntensity"},{"name":"[aoMapIntensity]"},{"name":"emissive"},{"name":"[emissive]"},{"name":"emissiveIntensity"},{"name":"[emissiveIntensity]"},{"name":"emissiveMap"},{"name":"[emissiveMap]"},{"name":"bumpMap"},{"name":"[bumpMap]"},{"name":"bumpScale"},{"name":"[bumpScale]"},{"name":"normalMap"},{"name":"[normalMap]"},{"name":"normalMapType"},{"name":"[normalMapType]"},{"name":"normalScale"},{"name":"[normalScale]"},{"name":"displacementMap"},{"name":"[displacementMap]"},{"name":"displacementScale"},{"name":"[displacementScale]"},{"name":"displacementBias"},{"name":"[displacementBias]"},{"name":"roughnessMap"},{"name":"[roughnessMap]"},{"name":"metalnessMap"},{"name":"[metalnessMap]"},{"name":"envMap"},{"name":"[envMap]"},{"name":"envMapIntensity"},{"name":"[envMapIntensity]"},{"name":"wireframeLinecap"},{"name":"[wireframeLinecap]"},{"name":"wireframeLinejoin"},{"name":"[wireframeLinejoin]"},{"name":"flatShading"},{"name":"[flatShading]"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"resolution"},{"name":"[resolution]"},{"name":"mixBlur"},{"name":"[mixBlur]"},{"name":"mixStrength"},{"name":"[mixStrength]"},{"name":"blur"},{"name":"[blur]"},{"name":"mirror"},{"name":"[mirror]"},{"name":"minDepthThreshold"},{"name":"[minDepthThreshold]"},{"name":"maxDepthThreshold"},{"name":"[maxDepthThreshold]"},{"name":"depthScale"},{"name":"[depthScale]"},{"name":"depthToBlurRatioBias"},{"name":"[depthToBlurRatioBias]"},{"name":"distortionMap"},{"name":"[distortionMap]"},{"name":"distortion"},{"name":"[distortion]"},{"name":"mixContrast"},{"name":"[mixContrast]"},{"name":"reflectorOffset"},{"name":"[reflectorOffset]"}]},{"name":"ngt-point-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"alphaHash"},{"name":"[alphaHash]"},{"name":"alphaTest"},{"name":"[alphaTest]"},{"name":"alphaToCoverage"},{"name":"[alphaToCoverage]"},{"name":"blendDst"},{"name":"[blendDst]"},{"name":"blendDstAlpha"},{"name":"[blendDstAlpha]"},{"name":"blendEquation"},{"name":"[blendEquation]"},{"name":"blendEquationAlpha"},{"name":"[blendEquationAlpha]"},{"name":"blending"},{"name":"[blending]"},{"name":"blendSrc"},{"name":"[blendSrc]"},{"name":"blendSrcAlpha"},{"name":"[blendSrcAlpha]"},{"name":"clipIntersection"},{"name":"[clipIntersection]"},{"name":"clippingPlanes"},{"name":"[clippingPlanes]"},{"name":"clipShadows"},{"name":"[clipShadows]"},{"name":"colorWrite"},{"name":"[colorWrite]"},{"name":"defines"},{"name":"[defines]"},{"name":"depthFunc"},{"name":"[depthFunc]"},{"name":"depthTest"},{"name":"[depthTest]"},{"name":"depthWrite"},{"name":"[depthWrite]"},{"name":"stencilWrite"},{"name":"[stencilWrite]"},{"name":"stencilFunc"},{"name":"[stencilFunc]"},{"name":"stencilRef"},{"name":"[stencilRef]"},{"name":"stencilWriteMask"},{"name":"[stencilWriteMask]"},{"name":"stencilFuncMask"},{"name":"[stencilFuncMask]"},{"name":"stencilFail"},{"name":"[stencilFail]"},{"name":"stencilZFail"},{"name":"[stencilZFail]"},{"name":"stencilZPass"},{"name":"[stencilZPass]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"polygonOffset"},{"name":"[polygonOffset]"},{"name":"polygonOffsetFactor"},{"name":"[polygonOffsetFactor]"},{"name":"polygonOffsetUnits"},{"name":"[polygonOffsetUnits]"},{"name":"precision"},{"name":"[precision]"},{"name":"premultipliedAlpha"},{"name":"[premultipliedAlpha]"},{"name":"forceSinglePass"},{"name":"[forceSinglePass]"},{"name":"dithering"},{"name":"[dithering]"},{"name":"side"},{"name":"[side]"},{"name":"shadowSide"},{"name":"[shadowSide]"},{"name":"toneMapped"},{"name":"[toneMapped]"},{"name":"transparent"},{"name":"[transparent]"},{"name":"vertexColors"},{"name":"[vertexColors]"},{"name":"visible"},{"name":"[visible]"},{"name":"version"},{"name":"[version]"},{"name":"onBeforeCompile"},{"name":"[onBeforeCompile]"},{"name":"customProgramCacheKey"},{"name":"[customProgramCacheKey]"},{"name":"color"},{"name":"[color]"},{"name":"fog"},{"name":"[fog]"},{"name":"map"},{"name":"[map]"},{"name":"alphaMap"},{"name":"[alphaMap]"},{"name":"sizeAttenuation"},{"name":"[sizeAttenuation]"},{"name":"size"},{"name":"[size]"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"}]},{"name":"ngts-point-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"alphaHash"},{"name":"[alphaHash]"},{"name":"alphaTest"},{"name":"[alphaTest]"},{"name":"alphaToCoverage"},{"name":"[alphaToCoverage]"},{"name":"blendDst"},{"name":"[blendDst]"},{"name":"blendDstAlpha"},{"name":"[blendDstAlpha]"},{"name":"blendEquation"},{"name":"[blendEquation]"},{"name":"blendEquationAlpha"},{"name":"[blendEquationAlpha]"},{"name":"blending"},{"name":"[blending]"},{"name":"blendSrc"},{"name":"[blendSrc]"},{"name":"blendSrcAlpha"},{"name":"[blendSrcAlpha]"},{"name":"clipIntersection"},{"name":"[clipIntersection]"},{"name":"clippingPlanes"},{"name":"[clippingPlanes]"},{"name":"clipShadows"},{"name":"[clipShadows]"},{"name":"colorWrite"},{"name":"[colorWrite]"},{"name":"defines"},{"name":"[defines]"},{"name":"depthFunc"},{"name":"[depthFunc]"},{"name":"depthTest"},{"name":"[depthTest]"},{"name":"depthWrite"},{"name":"[depthWrite]"},{"name":"stencilWrite"},{"name":"[stencilWrite]"},{"name":"stencilFunc"},{"name":"[stencilFunc]"},{"name":"stencilRef"},{"name":"[stencilRef]"},{"name":"stencilWriteMask"},{"name":"[stencilWriteMask]"},{"name":"stencilFuncMask"},{"name":"[stencilFuncMask]"},{"name":"stencilFail"},{"name":"[stencilFail]"},{"name":"stencilZFail"},{"name":"[stencilZFail]"},{"name":"stencilZPass"},{"name":"[stencilZPass]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"polygonOffset"},{"name":"[polygonOffset]"},{"name":"polygonOffsetFactor"},{"name":"[polygonOffsetFactor]"},{"name":"polygonOffsetUnits"},{"name":"[polygonOffsetUnits]"},{"name":"precision"},{"name":"[precision]"},{"name":"premultipliedAlpha"},{"name":"[premultipliedAlpha]"},{"name":"forceSinglePass"},{"name":"[forceSinglePass]"},{"name":"dithering"},{"name":"[dithering]"},{"name":"side"},{"name":"[side]"},{"name":"shadowSide"},{"name":"[shadowSide]"},{"name":"toneMapped"},{"name":"[toneMapped]"},{"name":"transparent"},{"name":"[transparent]"},{"name":"vertexColors"},{"name":"[vertexColors]"},{"name":"visible"},{"name":"[visible]"},{"name":"version"},{"name":"[version]"},{"name":"onBeforeCompile"},{"name":"[onBeforeCompile]"},{"name":"customProgramCacheKey"},{"name":"[customProgramCacheKey]"},{"name":"color"},{"name":"[color]"},{"name":"fog"},{"name":"[fog]"},{"name":"map"},{"name":"[map]"},{"name":"alphaMap"},{"name":"[alphaMap]"},{"name":"sizeAttenuation"},{"name":"[sizeAttenuation]"},{"name":"size"},{"name":"[size]"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"}]},{"name":"ngts-points-instances","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"limit"},{"name":"[limit]"},{"name":"range"},{"name":"[range]"}]},{"name":"ngts-points-buffers","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"positions"},{"name":"[positions]"},{"name":"colors"},{"name":"[colors]"},{"name":"sizes"},{"name":"[sizes]"},{"name":"stride"},{"name":"[stride]"}]},{"name":"ngts-points","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"}]},{"name":"ngt-position-point","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"}]},{"name":"ngt-segment-object","attributes":[]},{"name":"ngts-segment","attributes":[{"name":"start"},{"name":"[start]"},{"name":"end"},{"name":"[end]"},{"name":"color"},{"name":"[color]"}]},{"name":"ngts-segments","attributes":[{"name":"limit"},{"name":"[limit]"},{"name":"lineWidth"},{"name":"[lineWidth]"}]},{"name":"ngt-wireframe-material","attributes":[{"name":"dispose"},{"name":"[dispose]"},{"name":"id"},{"name":"[id]"},{"name":"name"},{"name":"[name]"},{"name":"userData"},{"name":"[userData]"},{"name":"alphaHash"},{"name":"[alphaHash]"},{"name":"alphaTest"},{"name":"[alphaTest]"},{"name":"alphaToCoverage"},{"name":"[alphaToCoverage]"},{"name":"blendDst"},{"name":"[blendDst]"},{"name":"blendDstAlpha"},{"name":"[blendDstAlpha]"},{"name":"blendEquation"},{"name":"[blendEquation]"},{"name":"blendEquationAlpha"},{"name":"[blendEquationAlpha]"},{"name":"blending"},{"name":"[blending]"},{"name":"blendSrc"},{"name":"[blendSrc]"},{"name":"blendSrcAlpha"},{"name":"[blendSrcAlpha]"},{"name":"clipIntersection"},{"name":"[clipIntersection]"},{"name":"clippingPlanes"},{"name":"[clippingPlanes]"},{"name":"clipShadows"},{"name":"[clipShadows]"},{"name":"colorWrite"},{"name":"[colorWrite]"},{"name":"defines"},{"name":"[defines]"},{"name":"depthFunc"},{"name":"[depthFunc]"},{"name":"depthTest"},{"name":"[depthTest]"},{"name":"depthWrite"},{"name":"[depthWrite]"},{"name":"stencilWrite"},{"name":"[stencilWrite]"},{"name":"stencilFunc"},{"name":"[stencilFunc]"},{"name":"stencilRef"},{"name":"[stencilRef]"},{"name":"stencilWriteMask"},{"name":"[stencilWriteMask]"},{"name":"stencilFuncMask"},{"name":"[stencilFuncMask]"},{"name":"stencilFail"},{"name":"[stencilFail]"},{"name":"stencilZFail"},{"name":"[stencilZFail]"},{"name":"stencilZPass"},{"name":"[stencilZPass]"},{"name":"needsUpdate"},{"name":"[needsUpdate]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"polygonOffset"},{"name":"[polygonOffset]"},{"name":"polygonOffsetFactor"},{"name":"[polygonOffsetFactor]"},{"name":"polygonOffsetUnits"},{"name":"[polygonOffsetUnits]"},{"name":"precision"},{"name":"[precision]"},{"name":"premultipliedAlpha"},{"name":"[premultipliedAlpha]"},{"name":"forceSinglePass"},{"name":"[forceSinglePass]"},{"name":"dithering"},{"name":"[dithering]"},{"name":"side"},{"name":"[side]"},{"name":"shadowSide"},{"name":"[shadowSide]"},{"name":"toneMapped"},{"name":"[toneMapped]"},{"name":"transparent"},{"name":"[transparent]"},{"name":"vertexColors"},{"name":"[vertexColors]"},{"name":"visible"},{"name":"[visible]"},{"name":"version"},{"name":"[version]"},{"name":"onBeforeCompile"},{"name":"[onBeforeCompile]"},{"name":"customProgramCacheKey"},{"name":"[customProgramCacheKey]"},{"name":"fog"},{"name":"[fog]"},{"name":"uniforms"},{"name":"[uniforms]"},{"name":"uniformsGroups"},{"name":"[uniformsGroups]"},{"name":"vertexShader"},{"name":"[vertexShader]"},{"name":"fragmentShader"},{"name":"[fragmentShader]"},{"name":"linewidth"},{"name":"[linewidth]"},{"name":"wireframe"},{"name":"[wireframe]"},{"name":"wireframeLinewidth"},{"name":"[wireframeLinewidth]"},{"name":"lights"},{"name":"[lights]"},{"name":"clipping"},{"name":"[clipping]"},{"name":"derivatives"},{"name":"[derivatives]"},{"name":"extensions"},{"name":"[extensions]"},{"name":"defaultAttributeValues"},{"name":"[defaultAttributeValues]"},{"name":"index0AttributeName"},{"name":"[index0AttributeName]"},{"name":"uniformsNeedUpdate"},{"name":"[uniformsNeedUpdate]"},{"name":"glslVersion"},{"name":"[glslVersion]"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"fillOpacity"},{"name":"[fillOpacity]"},{"name":"fillMix"},{"name":"[fillMix]"},{"name":"strokeOpacity"},{"name":"[strokeOpacity]"},{"name":"thickness"},{"name":"[thickness]"},{"name":"colorBackfaces"},{"name":"[colorBackfaces]"},{"name":"dashInvert"},{"name":"[dashInvert]"},{"name":"dash"},{"name":"[dash]"},{"name":"dashRepeats"},{"name":"[dashRepeats]"},{"name":"dashLength"},{"name":"[dashLength]"},{"name":"squeeze"},{"name":"[squeeze]"},{"name":"squeezeMin"},{"name":"[squeezeMin]"},{"name":"squeezeMax"},{"name":"[squeezeMax]"},{"name":"stroke"},{"name":"[stroke]"},{"name":"backfaceStroke"},{"name":"[backfaceStroke]"},{"name":"fill"},{"name":"[fill]"}]},{"name":"ngts-center","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"top"},{"name":"[top]"},{"name":"right"},{"name":"[right]"},{"name":"bottom"},{"name":"[bottom]"},{"name":"left"},{"name":"[left]"},{"name":"front"},{"name":"[front]"},{"name":"back"},{"name":"[back]"},{"name":"disable"},{"name":"[disable]"},{"name":"disableX"},{"name":"[disableX]"},{"name":"disableY"},{"name":"[disableY]"},{"name":"disableZ"},{"name":"[disableZ]"},{"name":"precise"},{"name":"[precise]"},{"name":"cacheKey"},{"name":"[cacheKey]"}]},{"name":"ngts-float","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"enabled"},{"name":"[enabled]"},{"name":"speed"},{"name":"[speed]"},{"name":"rotationIntensity"},{"name":"[rotationIntensity]"},{"name":"floatIntensity"},{"name":"[floatIntensity]"},{"name":"floatingRange"},{"name":"[floatingRange]"}]},{"name":"ngts-camera-shake","attributes":[{"name":"decay"},{"name":"[decay]"},{"name":"intensity"},{"name":"[intensity]"},{"name":"decayRate"},{"name":"[decayRate]"},{"name":"maxYaw"},{"name":"[maxYaw]"},{"name":"maxPitch"},{"name":"[maxPitch]"},{"name":"maxRoll"},{"name":"[maxRoll]"},{"name":"yawFrequency"},{"name":"[yawFrequency]"},{"name":"pitchFrequency"},{"name":"[pitchFrequency]"},{"name":"rollFrequency"},{"name":"[rollFrequency]"}]},{"name":"ngts-cloud","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"opacity"},{"name":"[opacity]"},{"name":"speed"},{"name":"[speed]"},{"name":"width"},{"name":"[width]"},{"name":"depth"},{"name":"[depth]"},{"name":"segments"},{"name":"[segments]"},{"name":"texture"},{"name":"[texture]"},{"name":"color"},{"name":"[color]"},{"name":"depthTest"},{"name":"[depthTest]"}]},{"name":"ngts-contact-shadows","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"opacity"},{"name":"[opacity]"},{"name":"width"},{"name":"[width]"},{"name":"height"},{"name":"[height]"},{"name":"blur"},{"name":"[blur]"},{"name":"far"},{"name":"[far]"},{"name":"smooth"},{"name":"[smooth]"},{"name":"resolution"},{"name":"[resolution]"},{"name":"frames"},{"name":"[frames]"},{"name":"color"},{"name":"[color]"},{"name":"depthWrite"},{"name":"[depthWrite]"},{"name":"renderOrder"},{"name":"[renderOrder]"}]},{"name":"ngts-sparkles","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"count"},{"name":"[count]"},{"name":"speed"},{"name":"[speed]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"color"},{"name":"[color]"},{"name":"size"},{"name":"[size]"},{"name":"noise"},{"name":"[noise]"}]},{"name":"ngts-sky","attributes":[{"name":"SkyShader"},{"name":"[SkyShader]"},{"name":"material"},{"name":"[material]"},{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"distance"},{"name":"[distance]"},{"name":"sunPosition"},{"name":"[sunPosition]"},{"name":"inclination"},{"name":"[inclination]"},{"name":"azimuth"},{"name":"[azimuth]"},{"name":"mieCoefficient"},{"name":"[mieCoefficient]"},{"name":"mieDirectionalG"},{"name":"[mieDirectionalG]"},{"name":"rayleigh"},{"name":"[rayleigh]"},{"name":"turbidity"},{"name":"[turbidity]"}]},{"name":"ngts-spot-light","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"depthBuffer"},{"name":"[depthBuffer]"},{"name":"angle"},{"name":"[angle]"},{"name":"distance"},{"name":"[distance]"},{"name":"attenuation"},{"name":"[attenuation]"},{"name":"anglePower"},{"name":"[anglePower]"},{"name":"radiusTop"},{"name":"[radiusTop]"},{"name":"radiusBottom"},{"name":"[radiusBottom]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"color"},{"name":"[color]"},{"name":"debug"},{"name":"[debug]"}]},{"name":"ngts-stars","attributes":[{"name":"radius"},{"name":"[radius]"},{"name":"depth"},{"name":"[depth]"},{"name":"count"},{"name":"[count]"},{"name":"factor"},{"name":"[factor]"},{"name":"saturation"},{"name":"[saturation]"},{"name":"fade"},{"name":"[fade]"},{"name":"speed"},{"name":"[speed]"}]},{"name":"ngts-accumulative-shadows","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"frames"},{"name":"[frames]"},{"name":"blend"},{"name":"[blend]"},{"name":"limit"},{"name":"[limit]"},{"name":"temporal"},{"name":"[temporal]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"alphaTest"},{"name":"[alphaTest]"},{"name":"color"},{"name":"[color]"},{"name":"colorBlend"},{"name":"[colorBlend]"},{"name":"resolution"},{"name":"[resolution]"},{"name":"toneMapped"},{"name":"[toneMapped]"}]},{"name":"ngts-randomized-lights","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"frames"},{"name":"[frames]"},{"name":"radius"},{"name":"[radius]"},{"name":"amount"},{"name":"[amount]"},{"name":"intensity"},{"name":"[intensity]"},{"name":"ambient"},{"name":"[ambient]"},{"name":"castShadow"},{"name":"[castShadow]"},{"name":"bias"},{"name":"[bias]"},{"name":"mapSize"},{"name":"[mapSize]"},{"name":"size"},{"name":"[size]"},{"name":"near"},{"name":"[near]"},{"name":"far"},{"name":"[far]"}]},{"name":"ngts-stage","attributes":[{"name":"preset"},{"name":"[preset]"},{"name":"shadows"},{"name":"[shadows]"},{"name":"adjustCamera"},{"name":"[adjustCamera]"},{"name":"environment"},{"name":"[environment]"},{"name":"intensity"},{"name":"[intensity]"},{"name":"center"},{"name":"[center]"}]},{"name":"ngts-backdrop","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"floor"},{"name":"[floor]"},{"name":"segments"},{"name":"[segments]"},{"name":"receiveShadow"},{"name":"[receiveShadow]"}]},{"name":"ngts-bb-anchor","attributes":[{"name":"position"},{"name":"[position]"},{"name":"up"},{"name":"[up]"},{"name":"scale"},{"name":"[scale]"},{"name":"rotation"},{"name":"[rotation]"},{"name":"matrix"},{"name":"[matrix]"},{"name":"quaternion"},{"name":"[quaternion]"},{"name":"layers"},{"name":"[layers]"},{"name":"dispose"},{"name":"[dispose]"},{"name":"(click)"},{"name":"(contextmenu)"},{"name":"(dblclick)"},{"name":"(pointerup)"},{"name":"(pointerdown)"},{"name":"(pointerover)"},{"name":"(pointerout)"},{"name":"(pointerenter)"},{"name":"(pointerleave)"},{"name":"(pointermove)"},{"name":"(pointermissed)"},{"name":"(pointercancel)"},{"name":"(wheel)"},{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"},{"name":"anchor"},{"name":"[anchor]"}]}]}
|
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
|
-
import { type
|
|
2
|
+
import { type NgtRef } from 'angular-three';
|
|
3
3
|
import * as THREE from 'three';
|
|
4
|
-
export declare function injectNgtsAnimations(animationsFactory: () => THREE.AnimationClip[], { ref, injector }
|
|
5
|
-
ref?:
|
|
4
|
+
export declare function injectNgtsAnimations(animationsFactory: () => THREE.AnimationClip[], { ref, injector, playFirstClip, }?: {
|
|
5
|
+
ref?: NgtRef<THREE.Object3D>;
|
|
6
|
+
playFirstClip?: boolean;
|
|
6
7
|
injector?: Injector;
|
|
7
8
|
}): {
|
|
8
|
-
ref: NgtInjectedRef<THREE.Object3D<THREE.Event>>;
|
|
9
|
+
ref: import("angular-three").NgtInjectedRef<THREE.Object3D<THREE.Event>>;
|
|
9
10
|
actions: Record<string, THREE.AnimationAction>;
|
|
10
11
|
mixer: THREE.AnimationMixer;
|
|
11
12
|
names: string[];
|
|
12
13
|
clips: THREE.AnimationClip[];
|
|
14
|
+
ready: import("@angular/core").Signal<boolean>;
|
|
13
15
|
};
|