angular-three-soba 2.0.0-beta.26 → 2.0.0-beta.261
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/README.md +62 -4
- package/abstractions/README.md +278 -2
- package/abstractions/index.d.ts +11 -6
- package/abstractions/lib/catmull-rom-line.d.ts +648 -0
- package/abstractions/lib/cubic-bezier-line.d.ts +19 -0
- package/abstractions/lib/edges.d.ts +850 -0
- package/abstractions/lib/gradient-texture.d.ts +24 -0
- package/abstractions/lib/grid.d.ts +339 -0
- package/abstractions/lib/helper.d.ts +25 -0
- package/abstractions/lib/line.d.ts +41 -0
- package/abstractions/lib/prism-geometry.d.ts +30 -0
- package/abstractions/lib/quadratic-bezier-line.d.ts +21 -0
- package/abstractions/lib/text-3d.d.ts +338 -0
- package/abstractions/lib/text.d.ts +55 -0
- package/cameras/README.md +91 -2
- package/cameras/index.d.ts +4 -4
- package/cameras/lib/camera-content.d.ts +10 -0
- package/cameras/lib/cube-camera.d.ts +38 -0
- package/cameras/lib/orthographic-camera.d.ts +40 -0
- package/cameras/lib/perspective-camera.d.ts +36 -0
- package/controls/README.md +95 -2
- package/controls/index.d.ts +2 -1
- package/controls/lib/camera-controls.d.ts +31 -0
- package/controls/lib/orbit-controls.d.ts +38 -0
- package/esm2022/abstractions/index.mjs +12 -7
- package/esm2022/abstractions/lib/catmull-rom-line.mjs +76 -0
- package/esm2022/abstractions/lib/cubic-bezier-line.mjs +51 -0
- package/esm2022/abstractions/lib/edges.mjs +70 -0
- package/esm2022/abstractions/lib/gradient-texture.mjs +91 -0
- package/esm2022/abstractions/lib/grid.mjs +103 -0
- package/esm2022/abstractions/lib/helper.mjs +80 -0
- package/esm2022/abstractions/lib/line.mjs +123 -0
- package/esm2022/abstractions/lib/prism-geometry.mjs +55 -0
- package/esm2022/abstractions/lib/quadratic-bezier-line.mjs +73 -0
- package/esm2022/abstractions/lib/text-3d.mjs +98 -0
- package/esm2022/abstractions/lib/text.mjs +92 -0
- package/esm2022/cameras/index.mjs +5 -5
- package/esm2022/cameras/lib/camera-content.mjs +14 -0
- package/esm2022/cameras/lib/cube-camera.mjs +111 -0
- package/esm2022/cameras/lib/orthographic-camera.mjs +131 -0
- package/esm2022/cameras/lib/perspective-camera.mjs +104 -0
- package/esm2022/controls/index.mjs +3 -2
- package/esm2022/controls/lib/camera-controls.mjs +127 -0
- package/esm2022/controls/lib/orbit-controls.mjs +126 -0
- package/esm2022/loaders/index.mjs +6 -5
- package/esm2022/loaders/lib/font-loader.mjs +49 -0
- package/esm2022/loaders/lib/gltf-loader.mjs +33 -0
- package/esm2022/loaders/lib/loader.mjs +109 -0
- package/esm2022/loaders/lib/progress.mjs +51 -0
- package/esm2022/loaders/lib/texture-loader.mjs +32 -0
- package/esm2022/materials/index.mjs +7 -7
- package/esm2022/materials/lib/custom-shader-material.mjs +71 -0
- package/esm2022/materials/lib/mesh-distort-material.mjs +42 -0
- package/esm2022/materials/lib/mesh-reflector-material.mjs +278 -0
- package/esm2022/materials/lib/mesh-refraction-material.mjs +144 -0
- package/esm2022/materials/lib/mesh-transmission-material.mjs +188 -0
- package/esm2022/materials/lib/mesh-wobble-material.mjs +42 -0
- package/esm2022/misc/index.mjs +10 -14
- package/esm2022/misc/lib/animations.mjs +74 -0
- package/esm2022/misc/lib/bake-shadows.mjs +26 -0
- package/esm2022/misc/lib/computed-attribute.mjs +56 -0
- package/esm2022/misc/lib/constants.mjs +5 -0
- package/esm2022/misc/lib/decal.mjs +135 -0
- package/esm2022/misc/lib/deprecated.mjs +15 -0
- package/esm2022/misc/lib/depth-buffer.mjs +39 -0
- package/esm2022/misc/lib/fbo.mjs +89 -0
- package/esm2022/misc/lib/sampler.mjs +121 -0
- package/esm2022/shaders/index.mjs +3 -18
- package/esm2022/shaders/lib/grid-material.mjs +81 -0
- package/esm2022/shaders/lib/mesh-refraction-material.mjs +163 -0
- package/esm2022/staging/index.mjs +19 -22
- package/esm2022/staging/lib/accumulative-shadows.mjs +182 -0
- package/esm2022/staging/lib/backdrop.mjs +73 -0
- package/esm2022/staging/lib/bb-anchor.mjs +58 -0
- package/esm2022/staging/lib/bounds.mjs +286 -0
- package/esm2022/staging/lib/camera-shake.mjs +69 -0
- package/esm2022/staging/lib/caustics.mjs +188 -0
- package/esm2022/staging/lib/center.mjs +113 -0
- package/esm2022/staging/lib/contact-shadows.mjs +201 -0
- package/esm2022/staging/lib/environment.mjs +465 -0
- package/esm2022/staging/lib/float.mjs +60 -0
- package/esm2022/staging/lib/lightformer.mjs +107 -0
- package/esm2022/staging/lib/matcap-texture.mjs +81 -0
- package/esm2022/staging/lib/normal-texture.mjs +85 -0
- package/esm2022/staging/lib/randomized-lights.mjs +104 -0
- package/esm2022/staging/lib/render-texture.mjs +213 -0
- package/esm2022/staging/lib/sky.mjs +86 -0
- package/esm2022/staging/lib/spot-light.mjs +450 -0
- package/esm2022/staging/lib/stage.mjs +236 -0
- package/esm2022/vanilla-exports/angular-three-soba-vanilla-exports.mjs +5 -0
- package/esm2022/vanilla-exports/index.mjs +3 -0
- package/fesm2022/angular-three-soba-abstractions.mjs +739 -718
- package/fesm2022/angular-three-soba-abstractions.mjs.map +1 -1
- package/fesm2022/angular-three-soba-cameras.mjs +260 -307
- package/fesm2022/angular-three-soba-cameras.mjs.map +1 -1
- package/fesm2022/angular-three-soba-controls.mjs +174 -110
- package/fesm2022/angular-three-soba-controls.mjs.map +1 -1
- package/fesm2022/angular-three-soba-loaders.mjs +151 -129
- package/fesm2022/angular-three-soba-loaders.mjs.map +1 -1
- package/fesm2022/angular-three-soba-materials.mjs +511 -764
- package/fesm2022/angular-three-soba-materials.mjs.map +1 -1
- package/fesm2022/angular-three-soba-misc.mjs +405 -2149
- package/fesm2022/angular-three-soba-misc.mjs.map +1 -1
- package/fesm2022/angular-three-soba-shaders.mjs +33 -1373
- package/fesm2022/angular-three-soba-shaders.mjs.map +1 -1
- package/fesm2022/angular-three-soba-staging.mjs +2329 -3538
- package/fesm2022/angular-three-soba-staging.mjs.map +1 -1
- package/fesm2022/angular-three-soba-vanilla-exports.mjs +6 -0
- package/fesm2022/angular-three-soba-vanilla-exports.mjs.map +1 -0
- package/loaders/README.md +130 -2
- package/loaders/index.d.ts +5 -4
- package/loaders/lib/font-loader.d.ts +27 -0
- package/loaders/lib/gltf-loader.d.ts +21 -0
- package/loaders/lib/loader.d.ts +29 -0
- package/loaders/lib/progress.d.ts +9 -0
- package/loaders/lib/texture-loader.d.ts +13 -0
- package/materials/README.md +160 -2
- package/materials/index.d.ts +6 -6
- package/materials/lib/custom-shader-material.d.ts +19 -0
- package/materials/lib/mesh-distort-material.d.ts +18 -0
- package/materials/lib/mesh-reflector-material.d.ts +50 -0
- package/materials/lib/mesh-refraction-material.d.ts +42 -0
- package/materials/lib/mesh-transmission-material.d.ts +77 -0
- package/materials/lib/mesh-wobble-material.d.ts +15 -0
- package/metadata.json +1 -1
- package/misc/README.md +217 -2
- package/misc/index.d.ts +9 -13
- package/misc/lib/animations.d.ts +14 -0
- package/misc/lib/computed-attribute.d.ts +69 -0
- package/misc/lib/constants.d.ts +1 -0
- package/misc/lib/decal.d.ts +27 -0
- package/misc/lib/deprecated.d.ts +14 -0
- package/misc/lib/depth-buffer.d.ts +8 -0
- package/misc/lib/fbo.d.ts +47 -0
- package/misc/lib/sampler.d.ts +73 -0
- package/package.json +60 -38
- package/shaders/index.d.ts +2 -17
- package/shaders/lib/grid-material.d.ts +69 -0
- package/shaders/lib/mesh-refraction-material.d.ts +11 -0
- package/staging/README.md +472 -2
- package/staging/index.d.ts +18 -21
- package/staging/lib/accumulative-shadows.d.ts +75 -0
- package/staging/lib/backdrop.d.ts +22 -0
- package/staging/lib/bb-anchor.d.ts +17 -0
- package/staging/lib/bounds.d.ts +47 -0
- package/staging/lib/camera-shake.d.ts +29 -0
- package/staging/lib/caustics.d.ts +53 -0
- package/staging/lib/center.d.ts +422 -0
- package/staging/lib/contact-shadows.d.ts +45 -0
- package/staging/lib/environment.d.ts +159 -0
- package/staging/lib/float.d.ts +19 -0
- package/staging/lib/lightformer.d.ts +334 -0
- package/staging/lib/matcap-texture.d.ts +32 -0
- package/staging/lib/normal-texture.d.ts +37 -0
- package/staging/lib/randomized-lights.d.ts +54 -0
- package/staging/lib/render-texture.d.ts +64 -0
- package/staging/lib/sky.d.ts +32 -0
- package/staging/lib/spot-light.d.ts +120 -0
- package/staging/lib/stage.d.ts +376 -0
- package/vanilla-exports/README.md +3 -0
- package/vanilla-exports/index.d.ts +27 -0
- package/web-types.json +1 -1
- package/abstractions/billboard/billboard.d.ts +0 -28
- package/abstractions/detailed/detailed.d.ts +0 -26
- package/abstractions/edges/edges.d.ts +0 -34
- package/abstractions/grid/grid.d.ts +0 -50
- package/abstractions/text/text.d.ts +0 -82
- package/abstractions/text-3d/text-3d.d.ts +0 -84
- package/assets/distort.vert.glsl +0 -1
- package/cameras/camera/camera-content.d.ts +0 -13
- package/cameras/camera/camera.d.ts +0 -26
- package/cameras/cube-camera/cube-camera.d.ts +0 -69
- package/cameras/orthographic-camera/orthographic-camera.d.ts +0 -37
- package/cameras/perspective-camera/perspective-camera.d.ts +0 -18
- package/controls/orbit-controls/orbit-controls.d.ts +0 -54
- package/esm2022/abstractions/billboard/billboard.mjs +0 -74
- package/esm2022/abstractions/detailed/detailed.mjs +0 -64
- package/esm2022/abstractions/edges/edges.mjs +0 -88
- package/esm2022/abstractions/grid/grid.mjs +0 -180
- package/esm2022/abstractions/text/text.mjs +0 -274
- package/esm2022/abstractions/text-3d/text-3d.mjs +0 -172
- package/esm2022/cameras/camera/camera-content.mjs +0 -21
- package/esm2022/cameras/camera/camera.mjs +0 -77
- package/esm2022/cameras/cube-camera/cube-camera.mjs +0 -161
- package/esm2022/cameras/orthographic-camera/orthographic-camera.mjs +0 -102
- package/esm2022/cameras/perspective-camera/perspective-camera.mjs +0 -46
- package/esm2022/controls/orbit-controls/orbit-controls.mjs +0 -185
- package/esm2022/gizmos/angular-three-soba-gizmos.mjs +0 -5
- package/esm2022/gizmos/gizmo-helper/gizmo-helper.mjs +0 -197
- package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/constants.mjs +0 -31
- package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-edge.mjs +0 -93
- package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-face.mjs +0 -150
- package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-input.mjs +0 -66
- package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube.mjs +0 -71
- package/esm2022/gizmos/gizmo-helper/gizmo-viewport/gizmo-viewport-axis.mjs +0 -195
- package/esm2022/gizmos/gizmo-helper/gizmo-viewport/gizmo-viewport.mjs +0 -272
- package/esm2022/gizmos/index.mjs +0 -4
- package/esm2022/loaders/gltf-loader/gltf-loader.mjs +0 -30
- package/esm2022/loaders/loader/loader.mjs +0 -138
- package/esm2022/loaders/progress/progress.mjs +0 -52
- package/esm2022/loaders/texture-loader/texture-loader.mjs +0 -28
- package/esm2022/materials/mesh-distort-material/mesh-distort-material.mjs +0 -82
- package/esm2022/materials/mesh-reflector-material/mesh-reflector-material.mjs +0 -367
- package/esm2022/materials/mesh-refraction-material/mesh-refraction-material.mjs +0 -171
- package/esm2022/materials/mesh-transmission-material/mesh-transmission-material.mjs +0 -278
- package/esm2022/materials/mesh-wobble-material/mesh-wobble-material.mjs +0 -68
- package/esm2022/materials/point-material/point-material.mjs +0 -50
- package/esm2022/misc/animations/animations.mjs +0 -59
- package/esm2022/misc/bake-shadows/bake-shadows.mjs +0 -24
- package/esm2022/misc/caustics/caustics.mjs +0 -387
- package/esm2022/misc/decal/decal.mjs +0 -187
- package/esm2022/misc/depth-buffer/depth-buffer.mjs +0 -44
- package/esm2022/misc/example/example.mjs +0 -160
- package/esm2022/misc/fbo/fbo.mjs +0 -47
- package/esm2022/misc/html/html-wrapper.mjs +0 -478
- package/esm2022/misc/html/html.mjs +0 -304
- package/esm2022/misc/sampler/sampler.mjs +0 -142
- package/esm2022/misc/shadow/shadow.mjs +0 -111
- package/esm2022/misc/stats-gl/stats-gl.mjs +0 -61
- package/esm2022/misc/trail/trail.mjs +0 -209
- package/esm2022/misc/trail-texture/inject-trail-texture.mjs +0 -17
- package/esm2022/misc/trail-texture/trail-texture.mjs +0 -106
- package/esm2022/modifiers/angular-three-soba-modifiers.mjs +0 -5
- package/esm2022/modifiers/curve-modifier/curve-modifier.mjs +0 -64
- package/esm2022/modifiers/index.mjs +0 -2
- package/esm2022/performances/adaptive-dpr/adaptive-dpr.mjs +0 -44
- package/esm2022/performances/adaptive-events/adaptive-events.mjs +0 -27
- package/esm2022/performances/angular-three-soba-performances.mjs +0 -5
- package/esm2022/performances/index.mjs +0 -8
- package/esm2022/performances/instances/instances.mjs +0 -220
- package/esm2022/performances/instances/position-mesh.mjs +0 -52
- package/esm2022/performances/points/points-input.mjs +0 -64
- package/esm2022/performances/points/points.mjs +0 -326
- package/esm2022/performances/points/position-point.mjs +0 -54
- package/esm2022/performances/segments/segment-object.mjs +0 -9
- package/esm2022/performances/segments/segments.mjs +0 -182
- package/esm2022/shaders/blur-pass/blur-pass.mjs +0 -61
- package/esm2022/shaders/caustics/caustics-material.mjs +0 -130
- package/esm2022/shaders/caustics/caustics-projection-material.mjs +0 -31
- package/esm2022/shaders/convolution-material/convolution-material.mjs +0 -94
- package/esm2022/shaders/discard-material/discard-material.mjs +0 -3
- package/esm2022/shaders/grid-material/grid-material.mjs +0 -77
- package/esm2022/shaders/mesh-distort-material/mesh-distort-material.mjs +0 -56
- package/esm2022/shaders/mesh-reflector-material/mesh-reflector-material.mjs +0 -223
- package/esm2022/shaders/mesh-refraction-material/mesh-refraction-material.mjs +0 -170
- package/esm2022/shaders/mesh-transmission-material/mesh-transmission-material.mjs +0 -268
- package/esm2022/shaders/mesh-wobble-material/mesh-wobble-material.mjs +0 -37
- package/esm2022/shaders/shader-material/shader-material.mjs +0 -34
- package/esm2022/shaders/soft-shadow-material/soft-shadow-material.mjs +0 -25
- package/esm2022/shaders/sparkles-material/sparkles-material.mjs +0 -33
- package/esm2022/shaders/spot-light-material/spot-light-material.mjs +0 -86
- package/esm2022/shaders/star-field-material/star-field-material.mjs +0 -33
- package/esm2022/shaders/wireframe-material/wireframe-material.mjs +0 -247
- package/esm2022/staging/accumulative-shadows/accumulative-shadows.mjs +0 -267
- package/esm2022/staging/accumulative-shadows/progressive-light-map.mjs +0 -108
- package/esm2022/staging/accumulative-shadows/randomized-lights.mjs +0 -206
- package/esm2022/staging/backdrop/backdrop.mjs +0 -77
- package/esm2022/staging/bb-anchor/bb-anchor.mjs +0 -69
- package/esm2022/staging/bounds/bounds.mjs +0 -308
- package/esm2022/staging/camera-shake/camera-shake.mjs +0 -123
- package/esm2022/staging/center/center.mjs +0 -165
- package/esm2022/staging/cloud/cloud.mjs +0 -158
- package/esm2022/staging/contact-shadows/contact-shadows.mjs +0 -246
- package/esm2022/staging/environment/assets.mjs +0 -13
- package/esm2022/staging/environment/environment-cube.mjs +0 -47
- package/esm2022/staging/environment/environment-ground.mjs +0 -41
- package/esm2022/staging/environment/environment-input.mjs +0 -119
- package/esm2022/staging/environment/environment-map.mjs +0 -53
- package/esm2022/staging/environment/environment-portal.mjs +0 -113
- package/esm2022/staging/environment/environment.mjs +0 -61
- package/esm2022/staging/environment/utils.mjs +0 -106
- package/esm2022/staging/float/float.mjs +0 -94
- package/esm2022/staging/matcap-texture/matcap-texture.mjs +0 -64
- package/esm2022/staging/normal-texture/normal-texture.mjs +0 -53
- package/esm2022/staging/sky/sky.mjs +0 -119
- package/esm2022/staging/sparkles/sparkles.mjs +0 -164
- package/esm2022/staging/spot-light/shadow-mesh-input.mjs +0 -63
- package/esm2022/staging/spot-light/shadow-mesh.mjs +0 -266
- package/esm2022/staging/spot-light/spot-light-input.mjs +0 -84
- package/esm2022/staging/spot-light/spot-light.mjs +0 -81
- package/esm2022/staging/spot-light/volumetric-mesh.mjs +0 -98
- package/esm2022/staging/stage/stage.mjs +0 -389
- package/esm2022/staging/stars/stars.mjs +0 -147
- package/esm2022/staging/wireframe/wireframe-input.mjs +0 -191
- package/esm2022/staging/wireframe/wireframe.mjs +0 -228
- package/esm2022/utils/angular-three-soba-utils.mjs +0 -5
- package/esm2022/utils/content/content.mjs +0 -15
- package/esm2022/utils/index.mjs +0 -2
- package/fesm2022/angular-three-soba-gizmos.mjs +0 -1043
- package/fesm2022/angular-three-soba-gizmos.mjs.map +0 -1
- package/fesm2022/angular-three-soba-modifiers.mjs +0 -71
- package/fesm2022/angular-three-soba-modifiers.mjs.map +0 -1
- package/fesm2022/angular-three-soba-performances.mjs +0 -956
- package/fesm2022/angular-three-soba-performances.mjs.map +0 -1
- package/fesm2022/angular-three-soba-utils.mjs +0 -22
- package/fesm2022/angular-three-soba-utils.mjs.map +0 -1
- package/gizmos/README.md +0 -3
- package/gizmos/gizmo-helper/gizmo-helper.d.ts +0 -69
- package/gizmos/gizmo-helper/gizmo-viewcube/constants.d.ts +0 -12
- package/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-edge.d.ts +0 -22
- package/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-face.d.ts +0 -29
- package/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-input.d.ts +0 -33
- package/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube.d.ts +0 -10
- package/gizmos/gizmo-helper/gizmo-viewport/gizmo-viewport-axis.d.ts +0 -40
- package/gizmos/gizmo-helper/gizmo-viewport/gizmo-viewport.d.ts +0 -30
- package/gizmos/index.d.ts +0 -3
- package/loaders/gltf-loader/gltf-loader.d.ts +0 -10
- package/loaders/loader/loader.d.ts +0 -33
- package/loaders/progress/progress.d.ts +0 -9
- package/loaders/texture-loader/texture-loader.d.ts +0 -7
- package/materials/mesh-distort-material/mesh-distort-material.d.ts +0 -40
- package/materials/mesh-reflector-material/mesh-reflector-material.d.ts +0 -99
- package/materials/mesh-refraction-material/mesh-refraction-material.d.ts +0 -62
- package/materials/mesh-transmission-material/mesh-transmission-material.d.ts +0 -107
- package/materials/mesh-wobble-material/mesh-wobble-material.d.ts +0 -29
- package/materials/point-material/point-material.d.ts +0 -24
- package/misc/animations/animations.d.ts +0 -15
- package/misc/caustics/caustics.d.ts +0 -87
- package/misc/decal/decal.d.ts +0 -49
- package/misc/depth-buffer/depth-buffer.d.ts +0 -9
- package/misc/example/example.d.ts +0 -81
- package/misc/fbo/fbo.d.ts +0 -17
- package/misc/html/html-wrapper.d.ts +0 -559
- package/misc/html/html.d.ts +0 -214
- package/misc/sampler/sampler.d.ts +0 -67
- package/misc/shadow/shadow.d.ts +0 -37
- package/misc/stats-gl/stats-gl.d.ts +0 -24
- package/misc/trail/trail.d.ts +0 -57
- package/misc/trail-texture/inject-trail-texture.d.ts +0 -9
- package/misc/trail-texture/trail-texture.d.ts +0 -50
- package/modifiers/README.md +0 -3
- package/modifiers/curve-modifier/curve-modifier.d.ts +0 -23
- package/modifiers/index.d.ts +0 -1
- package/performances/README.md +0 -3
- package/performances/adaptive-dpr/adaptive-dpr.d.ts +0 -14
- package/performances/adaptive-events/adaptive-events.d.ts +0 -9
- package/performances/index.d.ts +0 -7
- package/performances/instances/instances.d.ts +0 -79
- package/performances/instances/position-mesh.d.ts +0 -10
- package/performances/points/points-input.d.ts +0 -32
- package/performances/points/points.d.ts +0 -92
- package/performances/points/position-point.d.ts +0 -11
- package/performances/segments/segment-object.d.ts +0 -7
- package/performances/segments/segments.d.ts +0 -124
- package/shaders/blur-pass/blur-pass.d.ts +0 -23
- package/shaders/caustics/caustics-material.d.ts +0 -4
- package/shaders/caustics/caustics-projection-material.d.ts +0 -4
- package/shaders/convolution-material/convolution-material.d.ts +0 -7
- package/shaders/discard-material/discard-material.d.ts +0 -3
- package/shaders/grid-material/grid-material.d.ts +0 -37
- package/shaders/mesh-distort-material/mesh-distort-material.d.ts +0 -295
- package/shaders/mesh-reflector-material/mesh-reflector-material.d.ts +0 -50
- package/shaders/mesh-refraction-material/mesh-refraction-material.d.ts +0 -4
- package/shaders/mesh-transmission-material/mesh-transmission-material.d.ts +0 -25
- package/shaders/mesh-wobble-material/mesh-wobble-material.d.ts +0 -16
- package/shaders/shader-material/shader-material.d.ts +0 -6
- package/shaders/soft-shadow-material/soft-shadow-material.d.ts +0 -19
- package/shaders/sparkles-material/sparkles-material.d.ts +0 -17
- package/shaders/spot-light-material/spot-light-material.d.ts +0 -13
- package/shaders/star-field-material/star-field-material.d.ts +0 -13
- package/shaders/wireframe-material/wireframe-material.d.ts +0 -58
- package/staging/accumulative-shadows/accumulative-shadows.d.ts +0 -146
- package/staging/accumulative-shadows/progressive-light-map.d.ts +0 -34
- package/staging/accumulative-shadows/randomized-lights.d.ts +0 -90
- package/staging/backdrop/backdrop.d.ts +0 -30
- package/staging/bb-anchor/bb-anchor.d.ts +0 -27
- package/staging/bounds/bounds.d.ts +0 -134
- package/staging/camera-shake/camera-shake.d.ts +0 -43
- package/staging/center/center.d.ts +0 -70
- package/staging/cloud/cloud.d.ts +0 -51
- package/staging/contact-shadows/contact-shadows.d.ts +0 -70
- package/staging/environment/assets.d.ts +0 -13
- package/staging/environment/environment-cube.d.ts +0 -15
- package/staging/environment/environment-ground.d.ts +0 -13
- package/staging/environment/environment-input.d.ts +0 -68
- package/staging/environment/environment-map.d.ts +0 -16
- package/staging/environment/environment-portal.d.ts +0 -18
- package/staging/environment/environment.d.ts +0 -8
- package/staging/environment/utils.d.ts +0 -7
- package/staging/float/float.d.ts +0 -31
- package/staging/matcap-texture/matcap-texture.d.ts +0 -13
- package/staging/normal-texture/normal-texture.d.ts +0 -16
- package/staging/sky/sky.d.ts +0 -48
- package/staging/sparkles/sparkles.d.ts +0 -63
- package/staging/spot-light/shadow-mesh-input.d.ts +0 -29
- package/staging/spot-light/shadow-mesh.d.ts +0 -37
- package/staging/spot-light/spot-light-input.d.ts +0 -38
- package/staging/spot-light/spot-light.d.ts +0 -39
- package/staging/spot-light/volumetric-mesh.d.ts +0 -24
- package/staging/stage/stage.d.ts +0 -130
- package/staging/stars/stars.d.ts +0 -45
- package/staging/wireframe/wireframe-input.d.ts +0 -65
- package/staging/wireframe/wireframe.d.ts +0 -28
- package/utils/README.md +0 -3
- package/utils/content/content.d.ts +0 -8
- package/utils/index.d.ts +0 -1
- /package/misc/{bake-shadows → lib}/bake-shadows.d.ts +0 -0
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { NgtMeshPhysicalMaterial } from 'angular-three';
|
|
3
|
+
import { MeshTransmissionMaterial } from 'angular-three-soba/vanilla-exports';
|
|
4
|
+
import { Color, Texture } from 'three';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
type MeshTransmissionMaterialOptions = ConstructorParameters<typeof MeshTransmissionMaterial>[0];
|
|
7
|
+
export type NgtsMeshTransmissionMaterialOptions = Partial<NgtMeshPhysicalMaterial> & Omit<MeshTransmissionMaterialOptions, 'buffer' | 'anisotropicBlur'> & {
|
|
8
|
+
anisotropicBlur?: number;
|
|
9
|
+
buffer?: Texture;
|
|
10
|
+
/** transmissionSampler, you can use the threejs transmission sampler texture that is
|
|
11
|
+
* generated once for all transmissive materials. The upside is that it can be faster if you
|
|
12
|
+
* use multiple MeshPhysical and Transmission materials, the downside is that transmissive materials
|
|
13
|
+
* using this can't see other transparent or transmissive objects, default: false */
|
|
14
|
+
transmissionSampler: boolean;
|
|
15
|
+
/** Render the backside of the material (more cost, better results), default: false */
|
|
16
|
+
backside: boolean;
|
|
17
|
+
/** Backside thickness (when backside is true), default: 0 */
|
|
18
|
+
backsideThickness: number;
|
|
19
|
+
backsideEnvMapIntensity: number;
|
|
20
|
+
/** Resolution of the local buffer, default: undefined (fullscreen) */
|
|
21
|
+
resolution?: number;
|
|
22
|
+
/** Resolution of the local buffer for backfaces, default: undefined (fullscreen) */
|
|
23
|
+
backsideResolution?: number;
|
|
24
|
+
/** Refraction samples, default: 6 */
|
|
25
|
+
samples: number;
|
|
26
|
+
/** Buffer scene background (can be a texture, a cubetexture or a color), default: null */
|
|
27
|
+
background?: Texture | Color;
|
|
28
|
+
};
|
|
29
|
+
export declare class NgtsMeshTransmissionMaterial {
|
|
30
|
+
attach: import("@angular/core").InputSignal<string>;
|
|
31
|
+
options: import("@angular/core").InputSignalWithTransform<NgtsMeshTransmissionMaterialOptions, "" | Partial<NgtsMeshTransmissionMaterialOptions>>;
|
|
32
|
+
parameters: import("@angular/core").Signal<Omit<NgtsMeshTransmissionMaterialOptions, "side" | "thickness" | "anisotropy" | "transmission" | "resolution" | "buffer" | "anisotropicBlur" | "samples" | "transmissionSampler" | "backside" | "backsideThickness" | "backsideEnvMapIntensity" | "backsideResolution" | "background">>;
|
|
33
|
+
private resolution;
|
|
34
|
+
private backsideResolution;
|
|
35
|
+
private samples;
|
|
36
|
+
private buffer;
|
|
37
|
+
private anisotropy;
|
|
38
|
+
private anisotropicBlur;
|
|
39
|
+
private background;
|
|
40
|
+
private backside;
|
|
41
|
+
private backsideThickness;
|
|
42
|
+
private backsideEnvMapIntensity;
|
|
43
|
+
transmissionSampler: import("@angular/core").Signal<boolean>;
|
|
44
|
+
transmission: import("@angular/core").Signal<number | undefined>;
|
|
45
|
+
thickness: import("@angular/core").Signal<number | undefined>;
|
|
46
|
+
side: import("@angular/core").Signal<import("three").Side | undefined>;
|
|
47
|
+
materialRef: import("@angular/core").Signal<ElementRef<MeshTransmissionMaterial & {
|
|
48
|
+
samples?: number | undefined;
|
|
49
|
+
transmissionSampler?: boolean | undefined;
|
|
50
|
+
chromaticAberration?: number | undefined;
|
|
51
|
+
transmission?: number | undefined;
|
|
52
|
+
_transmission?: number | undefined;
|
|
53
|
+
transmissionMap?: null | undefined;
|
|
54
|
+
roughness?: number | undefined;
|
|
55
|
+
thickness?: number | undefined;
|
|
56
|
+
thicknessMap?: null | undefined;
|
|
57
|
+
attenuationDistance?: number | undefined;
|
|
58
|
+
attenuationColor?: Color | undefined;
|
|
59
|
+
anisotropicBlur?: number | undefined;
|
|
60
|
+
time?: number | undefined;
|
|
61
|
+
distortion?: number | undefined;
|
|
62
|
+
distortionScale?: number | undefined;
|
|
63
|
+
temporalDistortion?: number | undefined;
|
|
64
|
+
buffer?: null | undefined;
|
|
65
|
+
}> | undefined>;
|
|
66
|
+
private backResolution;
|
|
67
|
+
private fboBack;
|
|
68
|
+
private fboMain;
|
|
69
|
+
bufferTexture: import("@angular/core").Signal<Texture>;
|
|
70
|
+
anisotropicBlurOption: import("@angular/core").Signal<number | undefined>;
|
|
71
|
+
private discardMaterial;
|
|
72
|
+
material: import("@angular/core").Signal<MeshTransmissionMaterial>;
|
|
73
|
+
constructor();
|
|
74
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsMeshTransmissionMaterial, never>;
|
|
75
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsMeshTransmissionMaterial, "ngts-mesh-transmission-material", never, { "attach": { "alias": "attach"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
76
|
+
}
|
|
77
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { NgtMeshStandardMaterial } from 'angular-three';
|
|
2
|
+
import { MeshWobbleMaterial, MeshWobbleMaterialParameters } from 'angular-three-soba/vanilla-exports';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export interface NgtsMeshWobbleMaterialOptions extends MeshWobbleMaterialParameters, Partial<NgtMeshStandardMaterial> {
|
|
5
|
+
speed: number;
|
|
6
|
+
}
|
|
7
|
+
export declare class NgtsMeshWobbleMaterial {
|
|
8
|
+
attach: import("@angular/core").InputSignal<string>;
|
|
9
|
+
options: import("@angular/core").InputSignalWithTransform<NgtsMeshWobbleMaterialOptions, "" | Partial<NgtsMeshWobbleMaterialOptions>>;
|
|
10
|
+
parameters: import("@angular/core").Signal<Omit<NgtsMeshWobbleMaterialOptions, "speed">>;
|
|
11
|
+
material: import("@angular/core").Signal<MeshWobbleMaterial>;
|
|
12
|
+
constructor();
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsMeshWobbleMaterial, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsMeshWobbleMaterial, "ngts-mesh-wobble-material", never, { "attach": { "alias": "attach"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
15
|
+
}
|
package/metadata.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"$schema":"https://raw.githubusercontent.com/microsoft/vscode-html-languageservice/main/docs/customData.schema.json","version":1.1,"tags":[{"name":"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
|
+
{"$schema":"https://raw.githubusercontent.com/microsoft/vscode-html-languageservice/main/docs/customData.schema.json","version":1.1,"tags":[{"name":"ngt-grid-material","attributes":[{"name":"cellSize"},{"name":"[cellSize]"},{"name":"cellThickness"},{"name":"[cellThickness]"},{"name":"cellColor"},{"name":"[cellColor]"},{"name":"sectionSize"},{"name":"[sectionSize]"},{"name":"sectionThickness"},{"name":"[sectionThickness]"},{"name":"sectionColor"},{"name":"[sectionColor]"},{"name":"followCamera"},{"name":"[followCamera]"},{"name":"infiniteGrid"},{"name":"[infiniteGrid]"},{"name":"fadeDistance"},{"name":"[fadeDistance]"},{"name":"fadeStrength"},{"name":"[fadeStrength]"},{"name":"fadeFrom"},{"name":"[fadeFrom]"},{"name":"side"},{"name":"[side]"}],"extends":"/html/elements/ngt-shader-material"},{"name":"ngt-soft-shadow-material","attributes":[{"name":"color"},{"name":"[color]"},{"name":"blend"},{"name":"[blend]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"alphaTest"},{"name":"[alphaTest]"},{"name":"map"},{"name":"[map]"}],"extends":"/html/elements/ngt-mesh-standard-material"},{"name":"ngt-spot-light-material","attributes":[{"name":"depth"},{"name":"[depth]"},{"name":"opacity"},{"name":"[opacity]"},{"name":"attenuation"},{"name":"[attenuation]"},{"name":"anglePower"},{"name":"[anglePower]"},{"name":"spotPosition"},{"name":"[spotPosition]"},{"name":"lightColor"},{"name":"[lightColor]"},{"name":"cameraNear"},{"name":"[cameraNear]"},{"name":"cameraFar"},{"name":"[cameraFar]"},{"name":"resolution"},{"name":"[resolution]"},{"name":"transparent"},{"name":"[transparent]"},{"name":"depthWrite"},{"name":"[depthWrite]"}],"extends":"/html/elements/ngt-shader-material"},{"name":"ngt-caustics-projection-material","attributes":[{"name":"color"},{"name":"[color]"},{"name":"causticsTexture"},{"name":"[causticsTexture]"},{"name":"causticsTextureB"},{"name":"[causticsTextureB]"},{"name":"lightProjMatrix"},{"name":"[lightProjMatrix]"},{"name":"lightViewMatrix"},{"name":"[lightViewMatrix]"}],"extends":"/html/elements/ngt-shader-material"}]}
|
package/misc/README.md
CHANGED
|
@@ -1,3 +1,218 @@
|
|
|
1
|
-
# angular-three-soba/misc
|
|
1
|
+
# `angular-three-soba/misc`
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
This secondary entry point includes miscellaneous utilities and components for animations, shadows, and frame buffer objects (FBOs).
|
|
4
|
+
|
|
5
|
+
## TOC
|
|
6
|
+
|
|
7
|
+
- [injectAnimations](#injectanimations)
|
|
8
|
+
- [injectFBO](#injectfbo)
|
|
9
|
+
- [NgtsFBO](#ngtsfbo)
|
|
10
|
+
- [NgtsBakeShadows](#ngtsbakeshadows)
|
|
11
|
+
- [injectDepthBuffer](#injectdepthbuffer)
|
|
12
|
+
- [NgtsSampler](#ngtssampler)
|
|
13
|
+
- [NgtsComputedAttribute](#ngtscomputedattribute)
|
|
14
|
+
- [NgtsDecal](#ngtsdecal)
|
|
15
|
+
|
|
16
|
+
## `injectAnimations`
|
|
17
|
+
|
|
18
|
+
```ts
|
|
19
|
+
function injectAnimations<TAnimation extends AnimationClip>(
|
|
20
|
+
animations: () => NgtsAnimation<TAnimation> | undefined | null,
|
|
21
|
+
object: ElementRef<Object3D> | Object3D | (() => ElementRef<Object3D> | Object3D | undefined | null),
|
|
22
|
+
{ injector }: { injector?: Injector } = {},
|
|
23
|
+
): Signal<NgtsAnimationApi<TAnimation> | null>;
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Provides a way to inject and manage animations in your Angular component. It takes a function animations that returns an array of animation clips or an object containing an array of animation clips, a reference to the object to be animated, and an optional injector. It returns a signal that holds an object containing the animation clips, mixer, names, actions, and a signal indicating if the animations are ready.
|
|
27
|
+
|
|
28
|
+
This function is commonly used together with `injectGLTF` since GLTF files often contain animation data for 3D models. It provides an abstraction around `AnimationMixer`, which simplifies the process of playing and controlling animations.
|
|
29
|
+
|
|
30
|
+
The `NgtsAnimationApi` object contains the following properties:
|
|
31
|
+
|
|
32
|
+
- `clips`: An array of `AnimationClip` objects representing the available animations.
|
|
33
|
+
- `mixer`: An instance of `AnimationMixer` used to control the playback of animations.
|
|
34
|
+
- `names`: An array of strings representing the names of the available animations.
|
|
35
|
+
- `actions`: An object where keys are animation names and values are `AnimationAction` objects, which control the playback of individual animations.
|
|
36
|
+
- `ready`: A signal indicating if the animations are ready.
|
|
37
|
+
|
|
38
|
+
## `injectFBO`
|
|
39
|
+
|
|
40
|
+
```ts
|
|
41
|
+
function injectFBO(params: () => NgtsFBOParams, { injector }: { injector?: Injector } = {}): Signal<WebGLRenderTarget>;
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Injects a `WebGLRenderTarget` (FBO) into your Angular component. It takes a function params that returns the parameters for the FBO and an optional injector. It returns a signal that holds the `WebGLRenderTarget` object.
|
|
45
|
+
|
|
46
|
+
The `params` object includes the following properties:
|
|
47
|
+
|
|
48
|
+
- `width`: The width of the FBO in pixels. Or it can also be the `settings` object.
|
|
49
|
+
- `height`: The height of the FBO in pixels.
|
|
50
|
+
- `settings`: An object containing the settings for the FBO.
|
|
51
|
+
- `samples`: The number of samples for multisample anti-aliasing (MSAA). Set to 0 to disable MSAA.
|
|
52
|
+
- `depth`: If set, the scene depth will be rendered into buffer.depthTexture. (Default: false)
|
|
53
|
+
- `wrapS`: The wrapping mode for the s-coordinate of the FBO texture.
|
|
54
|
+
- `wrapT`: The wrapping mode for the t-coordinate of the FBO texture.
|
|
55
|
+
- `magFilter`: The magnification filter for the FBO texture.
|
|
56
|
+
- `minFilter`: The minification filter for the FBO texture.
|
|
57
|
+
- `format`: The internal format of the color buffer.
|
|
58
|
+
- `type`: The data type of the color buffer.
|
|
59
|
+
- `anisotropy`: The level of anisotropic filtering for the FBO texture.
|
|
60
|
+
- `depthBuffer`: Whether to include a depth buffer. (Default: true)
|
|
61
|
+
- `stencilBuffer`: Whether to include a stencil buffer. (Default: false)
|
|
62
|
+
- `generateMipmaps`: Whether to generate mipmaps for the FBO texture. (Default: true)
|
|
63
|
+
- `depthTexture`: A DepthTexture instance to use for the depth buffer.
|
|
64
|
+
- `encoding`: The encoding of the FBO texture.
|
|
65
|
+
- `colorSpace`: The color space of the FBO texture.
|
|
66
|
+
|
|
67
|
+
### NgtsFBO
|
|
68
|
+
|
|
69
|
+
A directive that allows you to render a part of your scene into an FBO using an `ng-template`. It takes an input fbo that defines the parameters for the FBO, using the same `NgtsFBOParams` type as `injectFBO`.
|
|
70
|
+
|
|
71
|
+
```html
|
|
72
|
+
<ng-template [fbo]="options()" let-target>
|
|
73
|
+
<ngts-perspective-camera [options]="{ position: [0, 0, 3] }" />
|
|
74
|
+
|
|
75
|
+
<ngt-portal [container]="scene()">
|
|
76
|
+
<ngt-mesh *portalContent></ngt-mesh>
|
|
77
|
+
</ngt-portal>
|
|
78
|
+
|
|
79
|
+
<ngt-mesh>
|
|
80
|
+
<ngt-box-geometry *args="[3, 3, 3]" />
|
|
81
|
+
<ngt-mesh-standard-material [map]="target().texture" />
|
|
82
|
+
</ngt-mesh>
|
|
83
|
+
</ng-template>
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## NgtsBakeShadows
|
|
87
|
+
|
|
88
|
+
A directive that bakes shadows in your scene. It sets `gl.shadowMap.autoUpdate` to false and requests a single `gl.shadowMap.needsUpdate = true`. This can improve performance by making shadows static.
|
|
89
|
+
|
|
90
|
+
```html
|
|
91
|
+
<ngts-bake-shadows />
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
## injectDepthBuffer
|
|
95
|
+
|
|
96
|
+
Renders the scene into a depth-buffer. Often effects depend on it and this allows you to render a single buffer and share it, which minimizes the performance impact. It returns the buffer's `depthTexture`.
|
|
97
|
+
|
|
98
|
+
Since this is a rather expensive effect you can limit the amount of frames it renders when your objects are static. For instance making it render only once by setting `frames: 1`.
|
|
99
|
+
|
|
100
|
+
```ts
|
|
101
|
+
export class MyCmp {
|
|
102
|
+
depthBuffer = injectDepthBuffer(() => ({
|
|
103
|
+
size: 256, // The size of the depth buffer
|
|
104
|
+
frames: Infinity, // The amount of frames to render
|
|
105
|
+
}));
|
|
106
|
+
}
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
## NgtsSampler
|
|
110
|
+
|
|
111
|
+
A component that samples points from a mesh and transforms an `InstancedMesh`'s matrix to distribute instances on the points. It takes a `Mesh` and an `InstancedMesh` as children.
|
|
112
|
+
|
|
113
|
+
### Object Inputs (NgtsSamplerOptions)
|
|
114
|
+
|
|
115
|
+
| Property | Description | Default value |
|
|
116
|
+
| ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------- |
|
|
117
|
+
| `weight` | The name of the attribute to use as the sampling weight. | `undefined` |
|
|
118
|
+
| `transform` | A function that transforms each instance given a sample. It receives a dummy `Object3D` with all the sampled data and should mutate `transformPayload.dummy`. | `undefined` |
|
|
119
|
+
| `count` | The number of samples to take. | `16` |
|
|
120
|
+
|
|
121
|
+
#### Passing `InstancedMesh` and `Mesh` as content children
|
|
122
|
+
|
|
123
|
+
```html
|
|
124
|
+
<ngts-sampler [options]="{ weight: 'normal', transform: transformPoint, count: 16 }">
|
|
125
|
+
<ngt-mesh>
|
|
126
|
+
<ngt-sphere-geometry *args="[2]" />
|
|
127
|
+
</ngt-mesh>
|
|
128
|
+
|
|
129
|
+
<ngt-instanced-mesh *args="[undefined, undefined, 1_000]">
|
|
130
|
+
<ngt-sphere-geometry *args="[0.1]" />
|
|
131
|
+
</ngt-instanced-mesh>
|
|
132
|
+
</ngts-sampler>
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
or use references when you can't compose declaratively:
|
|
136
|
+
|
|
137
|
+
```ts
|
|
138
|
+
@Component({
|
|
139
|
+
template: `
|
|
140
|
+
<ngts-sampler [instances]="instancedRef()" [mesh]="mesh()" />
|
|
141
|
+
|
|
142
|
+
<ngt-instanced-mesh #instanced *args="[undefined, undefined, 1_000]">
|
|
143
|
+
<!-- content -->
|
|
144
|
+
</ngt-instanced-mesh>
|
|
145
|
+
`,
|
|
146
|
+
})
|
|
147
|
+
class MyCmp {
|
|
148
|
+
instancedRef = viewChild<ElementRef<InstancedMesh>>('instanced');
|
|
149
|
+
|
|
150
|
+
gltf = injectGLTF(() => 'my/mesh/url');
|
|
151
|
+
mesh = computed(() => this.gltf()?.scene || null);
|
|
152
|
+
}
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
## NgtsComputedAttribute
|
|
156
|
+
|
|
157
|
+
A component that allows you to compute and attach an attribute to a geometry declaratively.
|
|
158
|
+
|
|
159
|
+
It accepts the following inputs:
|
|
160
|
+
|
|
161
|
+
- `compute`: A function that computes the attribute. It receives the geometry as an argument and should return a `BufferAttribute`.
|
|
162
|
+
- `name`: The name of the attribute to attach to the geometry.
|
|
163
|
+
- `options`: pass-through options for `BufferAttribute`
|
|
164
|
+
|
|
165
|
+
```html
|
|
166
|
+
<ngt-sphere-geometry>
|
|
167
|
+
<ngts-computed-attribute
|
|
168
|
+
name="my-attribute-name"
|
|
169
|
+
[compute]="computeAttributeFn"
|
|
170
|
+
[options]="{ usage: StaticReadUsage }"
|
|
171
|
+
/>
|
|
172
|
+
</ngt-sphere-geometry>
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
## NgtsDecal
|
|
176
|
+
|
|
177
|
+
Abstraction around Three's `DecalGeometry`. It will use the its parent `mesh` as the decal surface by default.
|
|
178
|
+
|
|
179
|
+
The decal box has to intersect the surface, otherwise it will not be visible. if you do not specify a rotation it will look at the parents center point. You can also pass a single number as the rotation which allows you to spin it.
|
|
180
|
+
|
|
181
|
+
### Object Inputs (NgtsDecalOptions)
|
|
182
|
+
|
|
183
|
+
| Property | Description | Default value |
|
|
184
|
+
| --------------------- | ----------------------------------------------------- | ------------- |
|
|
185
|
+
| `map` | The texture to use for the decal. | `undefined` |
|
|
186
|
+
| `debug` | Makes the "bounding box" of the decal visible. | `false` |
|
|
187
|
+
| `depthTest` | Whether to enable depth testing. | `false` |
|
|
188
|
+
| `polygonOffsetFactor` | The factor by which the polygon offset is multiplied. | `-10` |
|
|
189
|
+
|
|
190
|
+
It also accepts a `mesh` input that allows you to specify the surface the decal must attach to.
|
|
191
|
+
|
|
192
|
+
```html
|
|
193
|
+
<mesh>
|
|
194
|
+
<sphereGeometry />
|
|
195
|
+
<meshBasicMaterial />
|
|
196
|
+
<ngts-decal [options]="{ position: [0, 0, 0], rotation: [0, 0, 0], scale: 1, debug: true }">
|
|
197
|
+
<ngt-mesh-basic-material [map]="texture()" [polygonOffset]="true" [polygonOffsetFactor]="-1" />
|
|
198
|
+
</ngts-decal>
|
|
199
|
+
</mesh>
|
|
200
|
+
```
|
|
201
|
+
|
|
202
|
+
If you do not specify a material it will create a transparent `ngt-mesh-basic-material` with a `polygonOffsetFactor` of -10.
|
|
203
|
+
|
|
204
|
+
```html
|
|
205
|
+
<ngt-mesh>
|
|
206
|
+
<ngt-mesh-sphere-geometry />
|
|
207
|
+
<ngt-mesh-basic-material />
|
|
208
|
+
<ngts-decal [options]="{ map: texture() }" />
|
|
209
|
+
</ngt-mesh>
|
|
210
|
+
```
|
|
211
|
+
|
|
212
|
+
If declarative composition is not possible, use the `mesh` input to define the surface the decal must attach to.
|
|
213
|
+
|
|
214
|
+
```html
|
|
215
|
+
<ngts-decal [mesh]="meshRef()">
|
|
216
|
+
<ngt-mesh-basic-material [map]="texture()" [polygonOffset]="true" [polygonOffsetFactor]="-1" />
|
|
217
|
+
</ngts-decal>
|
|
218
|
+
```
|