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
package/staging/stars/stars.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { type NgtBeforeRenderEvent } from 'angular-three';
|
|
2
|
+
import { StarFieldMaterial } from 'angular-three-soba/shaders';
|
|
2
3
|
import * as THREE from 'three';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
|
-
export
|
|
5
|
+
export type NgtsStarsState = {
|
|
5
6
|
radius: number;
|
|
6
7
|
depth: number;
|
|
7
8
|
count: number;
|
|
@@ -9,26 +10,36 @@ export interface NgtsStarsState {
|
|
|
9
10
|
saturation: number;
|
|
10
11
|
fade: boolean;
|
|
11
12
|
speed: number;
|
|
13
|
+
};
|
|
14
|
+
declare global {
|
|
15
|
+
interface HTMLElementTagNameMap {
|
|
16
|
+
'ngts-stars': NgtsStarsState;
|
|
17
|
+
}
|
|
12
18
|
}
|
|
13
|
-
export declare class NgtsStars
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
starsRef: import("angular-three").NgtInjectedRef<THREE.Points<THREE.BufferGeometry
|
|
18
|
-
set
|
|
19
|
-
set
|
|
20
|
-
set
|
|
21
|
-
set
|
|
22
|
-
set
|
|
19
|
+
export declare class NgtsStars {
|
|
20
|
+
private inputs;
|
|
21
|
+
AdditiveBlending: 2;
|
|
22
|
+
material: THREE.ShaderMaterial;
|
|
23
|
+
starsRef: import("angular-three").NgtInjectedRef<THREE.Points<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[]>>;
|
|
24
|
+
set _radius(radius: number);
|
|
25
|
+
set _depth(depth: number);
|
|
26
|
+
set _count(count: number);
|
|
27
|
+
set _factor(factor: number);
|
|
28
|
+
set _saturation(saturation: number);
|
|
23
29
|
set starsFade(fade: boolean);
|
|
24
|
-
set
|
|
25
|
-
|
|
26
|
-
|
|
30
|
+
set _speed(speed: number);
|
|
31
|
+
private count;
|
|
32
|
+
private depth;
|
|
33
|
+
private factor;
|
|
34
|
+
private radius;
|
|
35
|
+
private saturation;
|
|
36
|
+
fade: import("@angular/core").Signal<boolean>;
|
|
37
|
+
attributes: import("@angular/core").Signal<{
|
|
27
38
|
positions: Float32Array;
|
|
28
39
|
colors: Float32Array;
|
|
29
40
|
sizes: Float32Array;
|
|
30
41
|
}>;
|
|
31
|
-
|
|
42
|
+
onBeforeRender({ object, state }: NgtBeforeRenderEvent<InstanceType<typeof StarFieldMaterial>>): void;
|
|
32
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsStars, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsStars, "ngts-stars", never, { "starsRef": { "alias": "starsRef"; "required": false; }; "
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsStars, "ngts-stars", never, { "starsRef": { "alias": "starsRef"; "required": false; }; "_radius": { "alias": "radius"; "required": false; }; "_depth": { "alias": "depth"; "required": false; }; "_count": { "alias": "count"; "required": false; }; "_factor": { "alias": "factor"; "required": false; }; "_saturation": { "alias": "saturation"; "required": false; }; "starsFade": { "alias": "fade"; "required": false; }; "_speed": { "alias": "speed"; "required": false; }; }, {}, never, never, true, never>;
|
|
34
45
|
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { type NgtRef } from 'angular-three';
|
|
2
|
+
import type { WireframeMaterialState } from 'angular-three-soba/shaders';
|
|
3
|
+
import * as THREE from 'three';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export type NgtsWireframeState = {
|
|
6
|
+
geometry?: NgtRef<THREE.BufferGeometry>;
|
|
7
|
+
simplify: boolean;
|
|
8
|
+
} & Required<WireframeMaterialState>;
|
|
9
|
+
export declare abstract class NgtsWireframeInput {
|
|
10
|
+
inputs: import("angular-three").NgtSignalStore<NgtsWireframeState>;
|
|
11
|
+
set _geometry(geometry: NgtRef<THREE.BufferGeometry>);
|
|
12
|
+
set _simplify(simplify: boolean);
|
|
13
|
+
set _fillOpacity(fillOpacity: number);
|
|
14
|
+
set _fillMix(fillMix: number);
|
|
15
|
+
set _strokeOpacity(strokeOpacity: number);
|
|
16
|
+
set _thickness(thickness: number);
|
|
17
|
+
set _colorBackfaces(colorBackfaces: boolean);
|
|
18
|
+
set _dashInvert(dashInvert: boolean);
|
|
19
|
+
set _dash(dash: boolean);
|
|
20
|
+
set _dashRepeats(dashRepeats: number);
|
|
21
|
+
set _dashLength(dashLength: number);
|
|
22
|
+
set _squeeze(squeeze: boolean);
|
|
23
|
+
set _squeezeMin(squeezeMin: number);
|
|
24
|
+
set _squeezeMax(squeezeMax: number);
|
|
25
|
+
set _stroke(stroke: THREE.ColorRepresentation);
|
|
26
|
+
set _backfaceStroke(backfaceStroke: THREE.ColorRepresentation);
|
|
27
|
+
set _fill(fill: THREE.ColorRepresentation);
|
|
28
|
+
simplify: import("@angular/core").Signal<boolean>;
|
|
29
|
+
geometry: import("@angular/core").Signal<NgtRef<THREE.BufferGeometry<THREE.NormalBufferAttributes>> | undefined>;
|
|
30
|
+
customGeometry: import("@angular/core").Signal<THREE.BufferGeometry<THREE.NormalBufferAttributes> | undefined>;
|
|
31
|
+
strokeOpacity: import("@angular/core").Signal<number>;
|
|
32
|
+
fillOpacity: import("@angular/core").Signal<number>;
|
|
33
|
+
fillMix: import("@angular/core").Signal<number>;
|
|
34
|
+
thickness: import("@angular/core").Signal<number>;
|
|
35
|
+
colorBackfaces: import("@angular/core").Signal<boolean>;
|
|
36
|
+
dashInvert: import("@angular/core").Signal<boolean>;
|
|
37
|
+
dash: import("@angular/core").Signal<boolean>;
|
|
38
|
+
dashRepeats: import("@angular/core").Signal<number>;
|
|
39
|
+
dashLength: import("@angular/core").Signal<number>;
|
|
40
|
+
squeeze: import("@angular/core").Signal<boolean>;
|
|
41
|
+
squeezeMin: import("@angular/core").Signal<number>;
|
|
42
|
+
squeezeMax: import("@angular/core").Signal<number>;
|
|
43
|
+
stroke: import("@angular/core").Signal<THREE.ColorRepresentation>;
|
|
44
|
+
backfaceStroke: import("@angular/core").Signal<THREE.ColorRepresentation>;
|
|
45
|
+
fill: import("@angular/core").Signal<THREE.ColorRepresentation>;
|
|
46
|
+
materialState: import("@angular/core").Signal<{
|
|
47
|
+
strokeOpacity: number;
|
|
48
|
+
fillOpacity: number;
|
|
49
|
+
fillMix: number;
|
|
50
|
+
thickness: number;
|
|
51
|
+
colorBackfaces: boolean;
|
|
52
|
+
dashInvert: boolean;
|
|
53
|
+
dash: boolean;
|
|
54
|
+
dashRepeats: number;
|
|
55
|
+
dashLength: number;
|
|
56
|
+
squeeze: boolean;
|
|
57
|
+
squeezeMin: number;
|
|
58
|
+
squeezeMax: number;
|
|
59
|
+
stroke: THREE.ColorRepresentation;
|
|
60
|
+
backfaceStroke: THREE.ColorRepresentation;
|
|
61
|
+
fill: THREE.ColorRepresentation;
|
|
62
|
+
}>;
|
|
63
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsWireframeInput, never>;
|
|
64
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NgtsWireframeInput, never, never, { "_geometry": { "alias": "geometry"; "required": false; }; "_simplify": { "alias": "simplify"; "required": false; }; "_fillOpacity": { "alias": "fillOpacity"; "required": false; }; "_fillMix": { "alias": "fillMix"; "required": false; }; "_strokeOpacity": { "alias": "strokeOpacity"; "required": false; }; "_thickness": { "alias": "thickness"; "required": false; }; "_colorBackfaces": { "alias": "colorBackfaces"; "required": false; }; "_dashInvert": { "alias": "dashInvert"; "required": false; }; "_dash": { "alias": "dash"; "required": false; }; "_dashRepeats": { "alias": "dashRepeats"; "required": false; }; "_dashLength": { "alias": "dashLength"; "required": false; }; "_squeeze": { "alias": "squeeze"; "required": false; }; "_squeezeMin": { "alias": "squeezeMin"; "required": false; }; "_squeezeMax": { "alias": "squeezeMax"; "required": false; }; "_stroke": { "alias": "stroke"; "required": false; }; "_backfaceStroke": { "alias": "backfaceStroke"; "required": false; }; "_fill": { "alias": "fill"; "required": false; }; }, {}, never, never, false, never>;
|
|
65
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as THREE from 'three';
|
|
2
|
+
import { NgtsWireframeInput, type NgtsWireframeState } from './wireframe-input';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class NgtsWireframeWithoutCustomGeometry {
|
|
5
|
+
objectRef: import("angular-three").NgtInjectedRef<THREE.Object3D<THREE.Event>>;
|
|
6
|
+
private wireframeInput;
|
|
7
|
+
private uniforms;
|
|
8
|
+
constructor();
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsWireframeWithoutCustomGeometry, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsWireframeWithoutCustomGeometry, "ngts-wireframe-without-custom-geometry", never, {}, {}, never, never, true, never>;
|
|
11
|
+
}
|
|
12
|
+
export declare class NgtsWireframeWithCustomGeometry {
|
|
13
|
+
DoubleSide: 2;
|
|
14
|
+
wireframeInput: NgtsWireframeInput;
|
|
15
|
+
drawnGeometry: import("@angular/core").WritableSignal<THREE.BufferGeometry<THREE.NormalBufferAttributes>>;
|
|
16
|
+
constructor();
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsWireframeWithCustomGeometry, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsWireframeWithCustomGeometry, "ngts-wireframe-with-custom-geometry", never, {}, {}, never, never, true, never>;
|
|
19
|
+
}
|
|
20
|
+
declare global {
|
|
21
|
+
interface HTMLElementTagNameMap {
|
|
22
|
+
'ngts-wireframe': NgtsWireframeState;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
export declare class NgtsWireframe extends NgtsWireframeInput {
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsWireframe, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsWireframe, "ngts-wireframe", never, {}, {}, never, never, true, never>;
|
|
28
|
+
}
|
package/utils/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Injector, TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class NgtsSobaContent {
|
|
4
|
+
injector: Injector;
|
|
5
|
+
template: TemplateRef<any>;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsSobaContent, never>;
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NgtsSobaContent, "ng-template[ngtsSobaContent]", ["sobaContent"], {}, {}, never, never, true, never>;
|
|
8
|
+
}
|
package/utils/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './content/content';
|
package/web-types.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"$schema":"https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json","version":"2.0","name":"angular-three","framework":"angular","js-types-syntax":"typescript","framework-config":{"enable-when":{"node-packages":["angular-three-soba"]}},"contributions":{"html":{"attributes":[{"name":"ngtCompound","description":"Annotation that this is a compounded element"},{"name":"attach","description":"Property to attach to parent. Can be dotted path"},{"name":"[attach]","description":"An array of paths to attach to parent. Can also be an NgtAttachFunction"},{"name":"[ref]","description":"Assign an NgtInjectedRef"},{"name":"(beforeRender)","description":"Register an event to be run in animation loop"},{"name":"(afterAttach)","description":"Register an event to be invoked after this node is attached to the parent"},{"name":"(afterUpdate)","description":"Register an event to be invoked after this node's properties are updated"}],"elements":[{"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,25 +0,0 @@
|
|
|
1
|
-
import * as THREE from 'three';
|
|
2
|
-
import { Line2 } from 'three-stdlib';
|
|
3
|
-
import { NgtsLineInputs } from '../line/line-input';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
declare module '../line/line-input' {
|
|
6
|
-
interface NgtsLineState {
|
|
7
|
-
closed: boolean;
|
|
8
|
-
curveType: 'centripetal' | 'chordal' | 'catmullrom';
|
|
9
|
-
tension: number;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
export declare class NgtsCatmullRomLine extends NgtsLineInputs {
|
|
13
|
-
#private;
|
|
14
|
-
lineRef: import("angular-three").NgtInjectedRef<Line2>;
|
|
15
|
-
set points(points: Array<THREE.Vector3 | THREE.Vector2 | [number, number, number] | [number, number] | number>);
|
|
16
|
-
set closed(closed: boolean);
|
|
17
|
-
set curveType(curveType: 'centripetal' | 'chordal' | 'catmullrom');
|
|
18
|
-
set tension(tension: number);
|
|
19
|
-
set segments(segments: number);
|
|
20
|
-
readonly segmentedPoints: import("@angular/core").Signal<THREE.Vector3[]>;
|
|
21
|
-
readonly interpolatedVertexColors: import("@angular/core").Signal<(THREE.Color | [number, number, number])[] | undefined>;
|
|
22
|
-
constructor();
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsCatmullRomLine, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsCatmullRomLine, "ngts-catmull-rom-line", never, { "lineRef": { "alias": "lineRef"; "required": false; }; "points": { "alias": "points"; "required": true; }; "closed": { "alias": "closed"; "required": false; }; "curveType": { "alias": "curveType"; "required": false; }; "tension": { "alias": "tension"; "required": false; }; "segments": { "alias": "segments"; "required": false; }; }, {}, never, never, true, never>;
|
|
25
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import * as THREE from 'three';
|
|
2
|
-
import type { Line2 } from 'three-stdlib';
|
|
3
|
-
import { NgtsLineInputs } from '../line/line-input';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
declare module '../line/line-input' {
|
|
6
|
-
interface NgtsLineState {
|
|
7
|
-
start: THREE.Vector3 | [number, number, number];
|
|
8
|
-
end: THREE.Vector3 | [number, number, number];
|
|
9
|
-
midA: THREE.Vector3 | [number, number, number];
|
|
10
|
-
midB: THREE.Vector3 | [number, number, number];
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
export declare class NgtsCubicBezierLine extends NgtsLineInputs {
|
|
14
|
-
#private;
|
|
15
|
-
lineRef: import("angular-three").NgtInjectedRef<Line2>;
|
|
16
|
-
set start(start: THREE.Vector3 | [number, number, number]);
|
|
17
|
-
set end(end: THREE.Vector3 | [number, number, number]);
|
|
18
|
-
set midA(midA: THREE.Vector3 | [number, number, number]);
|
|
19
|
-
set midB(midB: THREE.Vector3 | [number, number, number]);
|
|
20
|
-
set segments(segments: number);
|
|
21
|
-
readonly points: import("@angular/core").Signal<THREE.Vector3[]>;
|
|
22
|
-
constructor();
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsCubicBezierLine, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsCubicBezierLine, "ngts-cubic-bezier-line", never, { "lineRef": { "alias": "lineRef"; "required": false; }; "start": { "alias": "start"; "required": true; }; "end": { "alias": "end"; "required": true; }; "midA": { "alias": "midA"; "required": true; }; "midB": { "alias": "midB"; "required": true; }; "segments": { "alias": "segments"; "required": false; }; }, {}, never, never, true, never>;
|
|
25
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, InjectionToken, Signal, TemplateRef } from '@angular/core';
|
|
2
|
-
import { NgtSignalStore } from 'angular-three';
|
|
3
|
-
import { Group, OrthographicCamera, Vector3 } from 'three';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export type NgtsGizmoHelperApi = (direction: Vector3) => void;
|
|
6
|
-
export declare const NGTS_GIZMO_HELPER_API: InjectionToken<Signal<NgtsGizmoHelperApi>>;
|
|
7
|
-
export interface NgtsGizmoHelperState {
|
|
8
|
-
alignment: 'top-left' | 'top-right' | 'bottom-right' | 'bottom-left' | 'bottom-center' | 'center-right' | 'center-left' | 'center-center' | 'top-center';
|
|
9
|
-
margin: [number, number];
|
|
10
|
-
renderPriority: number;
|
|
11
|
-
autoClear: boolean;
|
|
12
|
-
}
|
|
13
|
-
export declare class NgtsGizmoHelperContent {
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsGizmoHelperContent, never>;
|
|
15
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NgtsGizmoHelperContent, "ng-template[ngtsGizmoHelperContent]", never, {}, {}, never, never, true, never>;
|
|
16
|
-
}
|
|
17
|
-
export declare class NgtsGizmoHelper extends NgtSignalStore<NgtsGizmoHelperState> {
|
|
18
|
-
#private;
|
|
19
|
-
readonly gizmoRef: import("angular-three").NgtInjectedRef<Group>;
|
|
20
|
-
readonly virtualCameraRef: import("angular-three").NgtInjectedRef<OrthographicCamera>;
|
|
21
|
-
set alignment(alignment: 'top-left' | 'top-right' | 'bottom-right' | 'bottom-left' | 'bottom-center' | 'center-right' | 'center-left' | 'center-center' | 'top-center');
|
|
22
|
-
set margin(margin: [number, number]);
|
|
23
|
-
set renderPriority(renderPriority: number);
|
|
24
|
-
set autoClear(autoClear: boolean);
|
|
25
|
-
updated: EventEmitter<void>;
|
|
26
|
-
gizmoHelperContent: TemplateRef<unknown>;
|
|
27
|
-
readonly priority: Signal<number>;
|
|
28
|
-
readonly position: Signal<number[]>;
|
|
29
|
-
readonly api: Signal<(direction: THREE.Vector3) => void>;
|
|
30
|
-
constructor();
|
|
31
|
-
onBeforeRender(delta: number): void;
|
|
32
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsGizmoHelper, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsGizmoHelper, "ngts-gizmo-helper", never, { "alignment": { "alias": "alignment"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "renderPriority": { "alias": "renderPriority"; "required": false; }; "autoClear": { "alias": "autoClear"; "required": false; }; }, { "updated": "updated"; }, ["gizmoHelperContent"], never, true, never>;
|
|
34
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { NgtSignalStore, NgtThreeEvent } from 'angular-three';
|
|
2
|
-
import { Vector3 } from 'three';
|
|
3
|
-
import { NgtsGizmoViewcubeInputs } from './gizmo-viewcube-inputs';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class NgtsGizmoViewcubeEdgeCube extends NgtSignalStore<{
|
|
6
|
-
position: THREE.Vector3;
|
|
7
|
-
dimensions: [number, number, number];
|
|
8
|
-
}> {
|
|
9
|
-
#private;
|
|
10
|
-
protected readonly viewcubeInputs: NgtsGizmoViewcubeInputs;
|
|
11
|
-
hover: import("@angular/core").WritableSignal<boolean>;
|
|
12
|
-
set dimensions(dimensions: [number, number, number]);
|
|
13
|
-
set position(position: Vector3);
|
|
14
|
-
readonly edgePosition: import("@angular/core").Signal<Vector3>;
|
|
15
|
-
readonly edgeDimensions: import("@angular/core").Signal<[number, number, number]>;
|
|
16
|
-
constructor();
|
|
17
|
-
onPointerMove(event: NgtThreeEvent<PointerEvent>): void;
|
|
18
|
-
onPointerOut(event: NgtThreeEvent<PointerEvent>): void;
|
|
19
|
-
onClick(event: NgtThreeEvent<MouseEvent>): void;
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsGizmoViewcubeEdgeCube, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsGizmoViewcubeEdgeCube, "ngts-gizmo-viewcube-edge-cube", never, { "dimensions": { "alias": "dimensions"; "required": true; }; "position": { "alias": "position"; "required": true; }; }, {}, never, never, true, never>;
|
|
22
|
-
}
|