angular-three-soba 4.2.0 → 4.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/fesm2022/angular-three-soba-abstractions.mjs +98 -98
  2. package/fesm2022/angular-three-soba-abstractions.mjs.map +1 -1
  3. package/fesm2022/angular-three-soba-cameras.mjs +26 -26
  4. package/fesm2022/angular-three-soba-cameras.mjs.map +1 -1
  5. package/fesm2022/angular-three-soba-controls.mjs +32 -32
  6. package/fesm2022/angular-three-soba-controls.mjs.map +1 -1
  7. package/fesm2022/angular-three-soba-gizmos.mjs +119 -119
  8. package/fesm2022/angular-three-soba-gizmos.mjs.map +1 -1
  9. package/fesm2022/angular-three-soba-loaders.mjs +6 -6
  10. package/fesm2022/angular-three-soba-loaders.mjs.map +1 -1
  11. package/fesm2022/angular-three-soba-materials.mjs +75 -75
  12. package/fesm2022/angular-three-soba-materials.mjs.map +1 -1
  13. package/fesm2022/angular-three-soba-misc.mjs +85 -76
  14. package/fesm2022/angular-three-soba-misc.mjs.map +1 -1
  15. package/fesm2022/angular-three-soba-performances.mjs +164 -60
  16. package/fesm2022/angular-three-soba-performances.mjs.map +1 -1
  17. package/fesm2022/angular-three-soba-staging.mjs +257 -257
  18. package/fesm2022/angular-three-soba-staging.mjs.map +1 -1
  19. package/fesm2022/angular-three-soba-stats.mjs +5 -5
  20. package/fesm2022/angular-three-soba-stats.mjs.map +1 -1
  21. package/package.json +141 -140
  22. package/performances/README.md +47 -0
  23. package/types/angular-three-soba-abstractions.d.ts +57 -57
  24. package/types/angular-three-soba-cameras.d.ts +3 -3
  25. package/types/angular-three-soba-controls.d.ts +4 -4
  26. package/types/angular-three-soba-gizmos.d.ts +4 -4
  27. package/types/angular-three-soba-materials.d.ts +4 -4
  28. package/types/angular-three-soba-misc.d.ts +16 -5
  29. package/types/angular-three-soba-performances.d.ts +55 -9
  30. package/types/angular-three-soba-staging.d.ts +13 -13
@@ -121,7 +121,7 @@ declare class NgtsLine {
121
121
  * Configuration options for the line appearance and behavior.
122
122
  */
123
123
  options: _angular_core.InputSignalWithTransform<NgtsLineOptions, "" | Partial<NgtsLineOptions>>;
124
- protected parameters: _angular_core.Signal<Omit<NgtsLineOptions, "vertexColors" | "color" | "dashed" | "linewidth" | "segments" | "lineWidth">>;
124
+ protected parameters: _angular_core.Signal<Omit<NgtsLineOptions, "vertexColors" | "color" | "dashed" | "linewidth" | "lineWidth" | "segments">>;
125
125
  /**
126
126
  * Reference to the underlying Line2 or LineSegments2 Three.js object.
127
127
  */
@@ -218,19 +218,6 @@ declare class NgtsCatmullRomLine {
218
218
  type?: string | undefined;
219
219
  parent?: THREE.Object3D<THREE.Object3DEventMap> | Readonly<THREE.Object3D<THREE.Object3DEventMap> | null> | undefined;
220
220
  children?: THREE.Object3D<THREE.Object3DEventMap>[] | undefined;
221
- isMesh?: true | undefined;
222
- geometry?: three_stdlib.LineGeometry | Readonly<three_stdlib.LineGeometry | undefined>;
223
- material?: three_stdlib.LineMaterial | Readonly<three_stdlib.LineMaterial | undefined>;
224
- morphTargetInfluences?: number[] | Readonly<number[] | undefined>;
225
- morphTargetDictionary?: {
226
- [key: string]: number;
227
- } | Readonly<{
228
- [key: string]: number;
229
- } | undefined>;
230
- count?: Readonly<number | undefined>;
231
- updateMorphTargets?: (() => void) | Readonly<(() => void) | undefined>;
232
- getVertexPosition?: ((index: number, target: THREE.Vector3) => THREE.Vector3) | Readonly<((index: number, target: THREE.Vector3) => THREE.Vector3) | undefined>;
233
- toJSON?: ((((meta?: THREE.JSONMeta) => THREE.MeshJSON) | Readonly<(meta?: THREE.JSONMeta) => THREE.MeshJSON>) & (((meta?: THREE.JSONMeta) => THREE.ShaderMaterialJSON) | Readonly<(meta?: THREE.JSONMeta) => THREE.ShaderMaterialJSON>)) | undefined;
234
221
  isObject3D?: true | undefined;
235
222
  up?: THREE.Vector3 | [x: number, y: number, z: number] | Readonly<number | THREE.Vector3 | [x: number, y: number, z: number] | undefined>;
236
223
  position?: THREE.Vector3 | [x: number, y: number, z: number] | Readonly<number | THREE.Vector3 | [x: number, y: number, z: number] | undefined>;
@@ -301,6 +288,7 @@ declare class NgtsCatmullRomLine {
301
288
  updateMatrix?: (() => void) | Readonly<(() => void) | undefined>;
302
289
  updateMatrixWorld?: ((force?: boolean) => void) | Readonly<((force?: boolean) => void) | undefined>;
303
290
  updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | Readonly<((updateParents: boolean, updateChildren: boolean) => void) | undefined>;
291
+ toJSON?: ((((meta?: THREE.JSONMeta) => THREE.MeshJSON) | Readonly<(meta?: THREE.JSONMeta) => THREE.MeshJSON>) & (((meta?: THREE.JSONMeta) => THREE.ShaderMaterialJSON) | Readonly<(meta?: THREE.JSONMeta) => THREE.ShaderMaterialJSON>)) | undefined;
304
292
  clone?: ((((recursive?: boolean) => three_stdlib.Line2) | Readonly<(recursive?: boolean) => three_stdlib.Line2>) & ((() => three_stdlib.LineMaterial) | Readonly<() => three_stdlib.LineMaterial>)) | undefined;
305
293
  copy?: ((((object: THREE.Object3D, recursive?: boolean) => three_stdlib.Line2) | Readonly<(object: THREE.Object3D, recursive?: boolean) => three_stdlib.Line2>) & (((source: THREE.Material) => three_stdlib.LineMaterial) | Readonly<(source: THREE.Material) => three_stdlib.LineMaterial>)) | undefined;
306
294
  addEventListener?: ((((<T extends keyof THREE.Object3DEventMap>(type: T, listener: THREE.EventListener<THREE.Object3DEventMap[T], T, three_stdlib.Line2>) => void) | Readonly<(<T extends keyof THREE.Object3DEventMap>(type: T, listener: THREE.EventListener<THREE.Object3DEventMap[T], T, three_stdlib.Line2>) => void) | undefined>) & (<TEventKey extends keyof angular_three.NgtEventHandlers | "added" | "removed" | "childadded" | "childremoved" | "change" | keyof angular_three.NgtNodeEventMap<three_stdlib.Line2>>(type: TEventKey, listener: (this: angular_three.NgtNodeElement<typeof three_stdlib.Line2, three_stdlib.Line2>, ev: angular_three.NgtAllObject3DEventsMap<three_stdlib.Line2>[TEventKey]) => any) => void)) & (((<T extends "dispose">(type: T, listener: THREE.EventListener<{
@@ -324,13 +312,8 @@ declare class NgtsCatmullRomLine {
324
312
  dispose: {};
325
313
  }[T]) => void)>)) | undefined;
326
314
  dispose?: (((() => void) | Readonly<() => void> | null) & (((() => void) & (() => void)) | Readonly<(() => void) & (() => void)>)) | undefined;
327
- isMaterial?: Readonly<boolean | undefined>;
328
- version?: Readonly<number | undefined>;
329
- defines?: Record<string, unknown> | Readonly<Record<string, unknown> | undefined>;
330
- onBeforeCompile?: ((parameters: THREE.WebGLProgramParametersWithUniforms, renderer: THREE.WebGLRenderer) => void) | Readonly<((parameters: THREE.WebGLProgramParametersWithUniforms, renderer: THREE.WebGLRenderer) => void) | undefined>;
331
- customProgramCacheKey?: (() => string) | Readonly<(() => string) | undefined>;
332
- setValues?: ((values?: THREE.ShaderMaterialParameters) => void) | Readonly<((values?: THREE.ShaderMaterialParameters) => void) | undefined>;
333
- needsUpdate?: Readonly<boolean | undefined>;
315
+ parameters?: ((Partial<three_stdlib.Line2> | Readonly<Partial<three_stdlib.Line2>>) & (Partial<three_stdlib.LineMaterial> | Readonly<Partial<three_stdlib.LineMaterial>>)) | undefined;
316
+ color?: THREE.ColorRepresentation | undefined;
334
317
  blending?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
335
318
  side?: 0 | 1 | 2 | undefined;
336
319
  opacity?: number | undefined;
@@ -371,8 +354,6 @@ declare class NgtsCatmullRomLine {
371
354
  allowOverride?: boolean | undefined;
372
355
  toneMapped?: boolean | undefined;
373
356
  alphaTest?: number | undefined;
374
- parameters?: ((Partial<three_stdlib.Line2> | Readonly<Partial<three_stdlib.Line2>>) & (Partial<three_stdlib.LineMaterial> | Readonly<Partial<three_stdlib.LineMaterial>>)) | undefined;
375
- color?: THREE.ColorRepresentation | undefined;
376
357
  dashed?: boolean | undefined | undefined;
377
358
  dashScale?: number | undefined | undefined;
378
359
  dashSize?: number | undefined | undefined;
@@ -382,11 +363,30 @@ declare class NgtsCatmullRomLine {
382
363
  resolution?: (THREE.Vector2 & (number | THREE.Vector2 | [x: number, y: number] | Readonly<THREE.Vector2> | readonly [x: number, y: number])) | undefined;
383
364
  wireframe?: boolean | undefined | undefined;
384
365
  worldUnits?: boolean | undefined | undefined;
366
+ geometry?: three_stdlib.LineGeometry | Readonly<three_stdlib.LineGeometry | undefined>;
367
+ material?: three_stdlib.LineMaterial | Readonly<three_stdlib.LineMaterial | undefined>;
385
368
  isLine2?: true | undefined;
386
369
  isLineSegments2?: true | undefined;
387
370
  computeLineDistances?: (() => three_stdlib.Line2) | Readonly<(() => three_stdlib.Line2) | undefined>;
371
+ isMesh?: true | undefined;
372
+ morphTargetInfluences?: number[] | Readonly<number[] | undefined>;
373
+ morphTargetDictionary?: {
374
+ [key: string]: number;
375
+ } | Readonly<{
376
+ [key: string]: number;
377
+ } | undefined>;
378
+ count?: Readonly<number | undefined>;
379
+ updateMorphTargets?: (() => void) | Readonly<(() => void) | undefined>;
380
+ getVertexPosition?: ((index: number, target: THREE.Vector3) => THREE.Vector3) | Readonly<((index: number, target: THREE.Vector3) => THREE.Vector3) | undefined>;
388
381
  isLineMaterial?: true | undefined;
389
382
  isShaderMaterial?: Readonly<boolean | undefined>;
383
+ setValues?: ((values?: THREE.ShaderMaterialParameters) => void) | Readonly<((values?: THREE.ShaderMaterialParameters) => void) | undefined>;
384
+ defines?: Record<string, unknown> | Readonly<Record<string, unknown> | undefined>;
385
+ isMaterial?: Readonly<boolean | undefined>;
386
+ version?: Readonly<number | undefined>;
387
+ onBeforeCompile?: ((parameters: THREE.WebGLProgramParametersWithUniforms, renderer: THREE.WebGLRenderer) => void) | Readonly<((parameters: THREE.WebGLProgramParametersWithUniforms, renderer: THREE.WebGLRenderer) => void) | undefined>;
388
+ customProgramCacheKey?: (() => string) | Readonly<(() => string) | undefined>;
389
+ needsUpdate?: Readonly<boolean | undefined>;
390
390
  uniforms?: {
391
391
  [uniform: string]: THREE.IUniform<any>;
392
392
  } | Readonly<{
@@ -514,18 +514,6 @@ declare class NgtsEdges {
514
514
  type?: string | undefined;
515
515
  parent?: THREE.Object3D<THREE.Object3DEventMap> | Readonly<THREE.Object3D<THREE.Object3DEventMap> | null> | undefined;
516
516
  children?: THREE.Object3D<THREE.Object3DEventMap>[] | undefined;
517
- isMesh?: true | undefined;
518
- material?: ((THREE.Material | THREE.Material[] | Readonly<THREE.Material> | readonly THREE.Material[]) & (three_stdlib.LineMaterial | Readonly<three_stdlib.LineMaterial>)) | undefined;
519
- morphTargetInfluences?: number[] | Readonly<number[] | undefined>;
520
- morphTargetDictionary?: {
521
- [key: string]: number;
522
- } | Readonly<{
523
- [key: string]: number;
524
- } | undefined>;
525
- count?: Readonly<number | undefined>;
526
- updateMorphTargets?: (() => void) | Readonly<(() => void) | undefined>;
527
- getVertexPosition?: ((index: number, target: THREE.Vector3) => THREE.Vector3) | Readonly<((index: number, target: THREE.Vector3) => THREE.Vector3) | undefined>;
528
- toJSON?: ((((meta?: THREE.JSONMeta) => THREE.MeshJSON) | Readonly<(meta?: THREE.JSONMeta) => THREE.MeshJSON>) & (((meta?: THREE.JSONMeta) => THREE.ShaderMaterialJSON) | Readonly<(meta?: THREE.JSONMeta) => THREE.ShaderMaterialJSON>)) | undefined;
529
517
  isObject3D?: true | undefined;
530
518
  up?: THREE.Vector3 | [x: number, y: number, z: number] | Readonly<number | THREE.Vector3 | [x: number, y: number, z: number] | undefined>;
531
519
  position?: THREE.Vector3 | [x: number, y: number, z: number] | Readonly<number | THREE.Vector3 | [x: number, y: number, z: number] | undefined>;
@@ -596,6 +584,7 @@ declare class NgtsEdges {
596
584
  updateMatrix?: (() => void) | Readonly<(() => void) | undefined>;
597
585
  updateMatrixWorld?: ((force?: boolean) => void) | Readonly<((force?: boolean) => void) | undefined>;
598
586
  updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | Readonly<((updateParents: boolean, updateChildren: boolean) => void) | undefined>;
587
+ toJSON?: ((((meta?: THREE.JSONMeta) => THREE.MeshJSON) | Readonly<(meta?: THREE.JSONMeta) => THREE.MeshJSON>) & (((meta?: THREE.JSONMeta) => THREE.ShaderMaterialJSON) | Readonly<(meta?: THREE.JSONMeta) => THREE.ShaderMaterialJSON>)) | undefined;
599
588
  clone?: ((((recursive?: boolean) => THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes, THREE.BufferGeometryEventMap>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>) | Readonly<(recursive?: boolean) => THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes, THREE.BufferGeometryEventMap>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>) & ((((recursive?: boolean) => three_stdlib.Line2) | Readonly<(recursive?: boolean) => three_stdlib.Line2>) & ((() => three_stdlib.LineMaterial) | Readonly<() => three_stdlib.LineMaterial>))) | undefined;
600
589
  copy?: ((((object: THREE.Object3D, recursive?: boolean) => THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes, THREE.BufferGeometryEventMap>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>) | Readonly<(object: THREE.Object3D, recursive?: boolean) => THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes, THREE.BufferGeometryEventMap>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>) & ((((object: THREE.Object3D, recursive?: boolean) => three_stdlib.Line2) | Readonly<(object: THREE.Object3D, recursive?: boolean) => three_stdlib.Line2>) & (((source: THREE.Material) => three_stdlib.LineMaterial) | Readonly<(source: THREE.Material) => three_stdlib.LineMaterial>))) | undefined;
601
590
  addEventListener?: ((((<T extends keyof THREE.Object3DEventMap>(type: T, listener: THREE.EventListener<THREE.Object3DEventMap[T], T, THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes, THREE.BufferGeometryEventMap>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>) => void) | Readonly<(<T extends keyof THREE.Object3DEventMap>(type: T, listener: THREE.EventListener<THREE.Object3DEventMap[T], T, THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes, THREE.BufferGeometryEventMap>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>) => void) | undefined>) & (<TEventKey extends keyof angular_three.NgtEventHandlers | "added" | "removed" | "childadded" | "childremoved" | "change" | keyof angular_three.NgtNodeEventMap<THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes, THREE.BufferGeometryEventMap>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>>(type: TEventKey, listener: (this: angular_three.NgtNodeElement<typeof THREE.Mesh, THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes, THREE.BufferGeometryEventMap>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>, ev: angular_three.NgtAllObject3DEventsMap<THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes, THREE.BufferGeometryEventMap>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>[TEventKey]) => any) => void)) & ((((<T extends keyof THREE.Object3DEventMap>(type: T, listener: THREE.EventListener<THREE.Object3DEventMap[T], T, three_stdlib.Line2>) => void) | Readonly<(<T extends keyof THREE.Object3DEventMap>(type: T, listener: THREE.EventListener<THREE.Object3DEventMap[T], T, three_stdlib.Line2>) => void) | undefined>) & (<TEventKey extends keyof angular_three.NgtEventHandlers | "added" | "removed" | "childadded" | "childremoved" | "change" | keyof angular_three.NgtNodeEventMap<three_stdlib.Line2>>(type: TEventKey, listener: (this: angular_three.NgtNodeElement<typeof three_stdlib.Line2, three_stdlib.Line2>, ev: angular_three.NgtAllObject3DEventsMap<three_stdlib.Line2>[TEventKey]) => any) => void)) & (((<T extends "dispose">(type: T, listener: THREE.EventListener<{
@@ -619,13 +608,9 @@ declare class NgtsEdges {
619
608
  dispose: {};
620
609
  }[T]) => void)>)) | undefined;
621
610
  dispose?: (((() => void) | Readonly<() => void> | null) & (((() => void) & (() => void)) | Readonly<(() => void) & (() => void)>)) | undefined;
622
- isMaterial?: Readonly<boolean | undefined>;
623
- version?: Readonly<number | undefined>;
624
- defines?: Record<string, unknown> | Readonly<Record<string, unknown> | undefined>;
625
- onBeforeCompile?: ((parameters: THREE.WebGLProgramParametersWithUniforms, renderer: THREE.WebGLRenderer) => void) | Readonly<((parameters: THREE.WebGLProgramParametersWithUniforms, renderer: THREE.WebGLRenderer) => void) | undefined>;
626
- customProgramCacheKey?: (() => string) | Readonly<(() => string) | undefined>;
627
- setValues?: ((values?: THREE.ShaderMaterialParameters) => void) | Readonly<((values?: THREE.ShaderMaterialParameters) => void) | undefined>;
628
- needsUpdate?: Readonly<boolean | undefined>;
611
+ parameters?: ((Partial<THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes, THREE.BufferGeometryEventMap>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>> | Readonly<Partial<THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes, THREE.BufferGeometryEventMap>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>>) & ((Partial<three_stdlib.Line2> | Readonly<Partial<three_stdlib.Line2>>) & (Partial<three_stdlib.LineMaterial> | Readonly<Partial<three_stdlib.LineMaterial>>))) | undefined;
612
+ __ngt_args__?: (([geometry?: THREE.BufferGeometry<THREE.NormalBufferAttributes, THREE.BufferGeometryEventMap> | undefined, material?: THREE.Material | THREE.Material[] | undefined] | readonly [geometry?: THREE.BufferGeometry<THREE.NormalBufferAttributes, THREE.BufferGeometryEventMap> | undefined, material?: THREE.Material | THREE.Material[] | undefined]) & (([geometry?: three_stdlib.LineGeometry | undefined, material?: three_stdlib.LineMaterial | undefined] | readonly [geometry?: three_stdlib.LineGeometry | undefined, material?: three_stdlib.LineMaterial | undefined]) & ([parameters?: LineMaterialParameters | undefined] | readonly [parameters?: LineMaterialParameters | undefined]))) | undefined;
613
+ color?: THREE.ColorRepresentation | undefined;
629
614
  blending?: 0 | 1 | 2 | 3 | 4 | 5 | undefined;
630
615
  side?: 0 | 1 | 2 | undefined;
631
616
  opacity?: number | undefined;
@@ -666,9 +651,6 @@ declare class NgtsEdges {
666
651
  allowOverride?: boolean | undefined;
667
652
  toneMapped?: boolean | undefined;
668
653
  alphaTest?: number | undefined;
669
- parameters?: ((Partial<THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes, THREE.BufferGeometryEventMap>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>> | Readonly<Partial<THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes, THREE.BufferGeometryEventMap>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>>) & ((Partial<three_stdlib.Line2> | Readonly<Partial<three_stdlib.Line2>>) & (Partial<three_stdlib.LineMaterial> | Readonly<Partial<three_stdlib.LineMaterial>>))) | undefined;
670
- __ngt_args__?: (([geometry?: THREE.BufferGeometry<THREE.NormalBufferAttributes, THREE.BufferGeometryEventMap> | undefined, material?: THREE.Material | THREE.Material[] | undefined] | readonly [geometry?: THREE.BufferGeometry<THREE.NormalBufferAttributes, THREE.BufferGeometryEventMap> | undefined, material?: THREE.Material | THREE.Material[] | undefined]) & (([geometry?: three_stdlib.LineGeometry | undefined, material?: three_stdlib.LineMaterial | undefined] | readonly [geometry?: three_stdlib.LineGeometry | undefined, material?: three_stdlib.LineMaterial | undefined]) & ([parameters?: LineMaterialParameters | undefined] | readonly [parameters?: LineMaterialParameters | undefined]))) | undefined;
671
- color?: THREE.ColorRepresentation | undefined;
672
654
  dashed?: boolean | undefined | undefined;
673
655
  dashScale?: number | undefined | undefined;
674
656
  dashSize?: number | undefined | undefined;
@@ -678,11 +660,29 @@ declare class NgtsEdges {
678
660
  resolution?: (THREE.Vector2 & (number | THREE.Vector2 | [x: number, y: number] | Readonly<THREE.Vector2> | readonly [x: number, y: number])) | undefined;
679
661
  wireframe?: boolean | undefined | undefined;
680
662
  worldUnits?: boolean | undefined | undefined;
663
+ material?: ((THREE.Material | THREE.Material[] | Readonly<THREE.Material> | readonly THREE.Material[]) & (three_stdlib.LineMaterial | Readonly<three_stdlib.LineMaterial>)) | undefined;
681
664
  isLine2?: true | undefined;
682
665
  isLineSegments2?: true | undefined;
683
666
  computeLineDistances?: (() => three_stdlib.Line2) | Readonly<(() => three_stdlib.Line2) | undefined>;
667
+ isMesh?: true | undefined;
668
+ morphTargetInfluences?: number[] | Readonly<number[] | undefined>;
669
+ morphTargetDictionary?: {
670
+ [key: string]: number;
671
+ } | Readonly<{
672
+ [key: string]: number;
673
+ } | undefined>;
674
+ count?: Readonly<number | undefined>;
675
+ updateMorphTargets?: (() => void) | Readonly<(() => void) | undefined>;
676
+ getVertexPosition?: ((index: number, target: THREE.Vector3) => THREE.Vector3) | Readonly<((index: number, target: THREE.Vector3) => THREE.Vector3) | undefined>;
684
677
  isLineMaterial?: true | undefined;
685
678
  isShaderMaterial?: Readonly<boolean | undefined>;
679
+ setValues?: ((values?: THREE.ShaderMaterialParameters) => void) | Readonly<((values?: THREE.ShaderMaterialParameters) => void) | undefined>;
680
+ defines?: Record<string, unknown> | Readonly<Record<string, unknown> | undefined>;
681
+ isMaterial?: Readonly<boolean | undefined>;
682
+ version?: Readonly<number | undefined>;
683
+ onBeforeCompile?: ((parameters: THREE.WebGLProgramParametersWithUniforms, renderer: THREE.WebGLRenderer) => void) | Readonly<((parameters: THREE.WebGLProgramParametersWithUniforms, renderer: THREE.WebGLRenderer) => void) | undefined>;
684
+ customProgramCacheKey?: (() => string) | Readonly<(() => string) | undefined>;
685
+ needsUpdate?: Readonly<boolean | undefined>;
686
686
  uniforms?: {
687
687
  [uniform: string]: THREE.IUniform<any>;
688
688
  } | Readonly<{
@@ -972,13 +972,13 @@ declare class NgtsPrismGeometry {
972
972
  * @default 1
973
973
  */
974
974
  height: number;
975
+ curveSegments?: number | undefined | undefined;
976
+ steps?: number | undefined | undefined;
975
977
  bevelEnabled?: boolean | undefined | undefined;
976
- bevelOffset?: number | undefined | undefined;
977
- bevelSize?: number | undefined | undefined;
978
978
  bevelThickness?: number | undefined | undefined;
979
- curveSegments?: number | undefined | undefined;
979
+ bevelSize?: number | undefined | undefined;
980
+ bevelOffset?: number | undefined | undefined;
980
981
  bevelSegments?: number | undefined | undefined;
981
- steps?: number | undefined | undefined;
982
982
  extrudePath?: THREE.Curve<THREE.Vector3> | undefined;
983
983
  UVGenerator?: THREE.UVGenerator | undefined;
984
984
  }>;
@@ -1142,7 +1142,7 @@ declare class NgtsRoundedBox {
1142
1142
  * Configuration options for the rounded box dimensions and appearance.
1143
1143
  */
1144
1144
  options: _angular_core.InputSignalWithTransform<NgtsRoundedBoxOptions, "" | Partial<NgtsRoundedBoxOptions>>;
1145
- protected parameters: _angular_core.Signal<Omit<NgtsRoundedBoxOptions, "height" | "bevelSegments" | "width" | "depth" | "radius" | "smoothness" | "steps" | "creaseAngle">>;
1145
+ protected parameters: _angular_core.Signal<Omit<NgtsRoundedBoxOptions, "width" | "height" | "depth" | "steps" | "bevelSegments" | "radius" | "smoothness" | "creaseAngle">>;
1146
1146
  private width;
1147
1147
  private height;
1148
1148
  private depth;
@@ -1425,7 +1425,7 @@ declare class NgtsText3D {
1425
1425
  * Configuration options for the 3D text appearance.
1426
1426
  */
1427
1427
  options: _angular_core.InputSignalWithTransform<Partial<NgtThreeElement<typeof THREE.Mesh>> & NgtsText3DOptions, "" | Partial<Partial<NgtThreeElement<typeof THREE.Mesh>> & NgtsText3DOptions>>;
1428
- protected parameters: _angular_core.Signal<Omit<Partial<NgtThreeElement<typeof THREE.Mesh>> & NgtsText3DOptions, "bevelEnabled" | "bevelOffset" | "bevelSize" | "bevelThickness" | "curveSegments" | "height" | "size" | "lineHeight" | "letterSpacing" | "bevelSegments" | "smooth">>;
1428
+ protected parameters: _angular_core.Signal<Omit<Partial<NgtThreeElement<typeof THREE.Mesh>> & NgtsText3DOptions, "size" | "height" | "curveSegments" | "bevelEnabled" | "bevelThickness" | "bevelSize" | "bevelOffset" | "bevelSegments" | "lineHeight" | "letterSpacing" | "smooth">>;
1429
1429
  /**
1430
1430
  * Reference to the underlying Mesh Three.js object.
1431
1431
  */
@@ -1435,16 +1435,16 @@ declare class NgtsText3D {
1435
1435
  private smooth;
1436
1436
  private textOptions;
1437
1437
  protected textArgs: _angular_core.Signal<(string | {
1438
+ size?: number | undefined;
1439
+ height?: number | undefined;
1440
+ curveSegments?: number | undefined;
1438
1441
  bevelEnabled?: boolean | undefined;
1439
- bevelOffset?: number | undefined;
1440
- bevelSize?: number | undefined;
1441
1442
  bevelThickness?: number | undefined;
1442
- curveSegments?: number | undefined;
1443
- height?: number | undefined;
1444
- size?: number | undefined;
1443
+ bevelSize?: number | undefined;
1444
+ bevelOffset?: number | undefined;
1445
+ bevelSegments: number;
1445
1446
  lineHeight?: number | undefined;
1446
1447
  letterSpacing?: number | undefined;
1447
- bevelSegments: number;
1448
1448
  font: three_stdlib.Font;
1449
1449
  })[] | null>;
1450
1450
  constructor();
@@ -141,7 +141,7 @@ type NgtsCubeCameraOptions = Partial<NgtThreeElements['ngt-group']> & CubeCamera
141
141
  */
142
142
  declare class NgtsCubeCamera {
143
143
  options: _angular_core.InputSignalWithTransform<NgtsCubeCameraOptions, "" | Partial<NgtsCubeCameraOptions>>;
144
- protected parameters: _angular_core.Signal<Omit<NgtsCubeCameraOptions, "near" | "far" | "envMap" | "frames" | "resolution" | "fog">>;
144
+ protected parameters: _angular_core.Signal<Omit<NgtsCubeCameraOptions, "resolution" | "near" | "far" | "envMap" | "fog" | "frames">>;
145
145
  private cubeCamera;
146
146
  protected camera: _angular_core.Signal<THREE.CubeCamera>;
147
147
  protected texture: _angular_core.Signal<THREE.CubeTexture<unknown>>;
@@ -217,7 +217,7 @@ interface NgtsOrthographicCameraOptions extends Partial<NgtThreeElements['ngt-or
217
217
  */
218
218
  declare class NgtsOrthographicCamera {
219
219
  options: _angular_core.InputSignalWithTransform<NgtsOrthographicCameraOptions, "" | Partial<NgtsOrthographicCameraOptions>>;
220
- protected parameters: _angular_core.Signal<Omit<NgtsOrthographicCameraOptions, "envMap" | "makeDefault" | "frames" | "resolution" | "left" | "right" | "top" | "bottom">>;
220
+ protected parameters: _angular_core.Signal<Omit<NgtsOrthographicCameraOptions, "resolution" | "envMap" | "frames" | "left" | "right" | "top" | "bottom" | "makeDefault">>;
221
221
  protected content: _angular_core.Signal<TemplateRef<any> | undefined>;
222
222
  protected cameraContent: _angular_core.Signal<TemplateRef<any> | undefined>;
223
223
  /**
@@ -310,7 +310,7 @@ interface NgtsPerspectiveCameraOptions extends Partial<NgtThreeElements['ngt-per
310
310
  */
311
311
  declare class NgtsPerspectiveCamera {
312
312
  options: _angular_core.InputSignalWithTransform<NgtsPerspectiveCameraOptions, "" | Partial<NgtsPerspectiveCameraOptions>>;
313
- protected parameters: _angular_core.Signal<Omit<NgtsPerspectiveCameraOptions, "envMap" | "makeDefault" | "frames" | "resolution">>;
313
+ protected parameters: _angular_core.Signal<Omit<NgtsPerspectiveCameraOptions, "resolution" | "envMap" | "frames" | "makeDefault">>;
314
314
  protected content: _angular_core.Signal<TemplateRef<any> | undefined>;
315
315
  protected cameraContent: _angular_core.Signal<TemplateRef<any> | undefined>;
316
316
  /**
@@ -64,7 +64,7 @@ interface NgtsCameraControlsOptions {
64
64
  */
65
65
  declare class NgtsCameraControls {
66
66
  options: _angular_core.InputSignalWithTransform<Partial<CameraControls> & NgtsCameraControlsOptions, "" | Partial<Partial<CameraControls> & NgtsCameraControlsOptions>>;
67
- protected parameters: _angular_core.Signal<Omit<Partial<CameraControls> & NgtsCameraControlsOptions, "domElement" | "camera" | "regress" | "makeDefault">>;
67
+ protected parameters: _angular_core.Signal<Omit<Partial<CameraControls> & NgtsCameraControlsOptions, "camera" | "makeDefault" | "regress" | "domElement">>;
68
68
  control: _angular_core.OutputEmitterRef<any>;
69
69
  controlStart: _angular_core.OutputEmitterRef<any>;
70
70
  controlEnd: _angular_core.OutputEmitterRef<any>;
@@ -155,7 +155,7 @@ type NgtsOrbitControlsOptions = Omit<NgtOverwrite<NgtThreeElement<typeof OrbitCo
155
155
  */
156
156
  declare class NgtsOrbitControls {
157
157
  options: _angular_core.InputSignalWithTransform<NgtsOrbitControlsOptions, "" | Partial<NgtsOrbitControlsOptions>>;
158
- protected parameters: _angular_core.Signal<Omit<NgtsOrbitControlsOptions, "domElement" | "camera" | "regress" | "makeDefault" | "enableDamping" | "keyEvents">>;
158
+ protected parameters: _angular_core.Signal<Omit<NgtsOrbitControlsOptions, "camera" | "makeDefault" | "regress" | "domElement" | "enableDamping" | "keyEvents">>;
159
159
  changed: _angular_core.OutputEmitterRef<node_modules_three_stdlib_controls_EventDispatcher.Event<keyof node_modules_three_stdlib_controls_StandardControlsEventMap.StandardControlsEventMap, OrbitControls>>;
160
160
  started: _angular_core.OutputEmitterRef<THREE.Event<string, unknown>>;
161
161
  ended: _angular_core.OutputEmitterRef<THREE.Event<string, unknown>>;
@@ -230,7 +230,7 @@ declare class NgtsPointerLockControls {
230
230
  lock: _angular_core.OutputEmitterRef<THREE.Event<string, unknown>>;
231
231
  unlock: _angular_core.OutputEmitterRef<THREE.Event<string, unknown>>;
232
232
  change: _angular_core.OutputEmitterRef<THREE.Event<string, unknown>>;
233
- protected parameters: _angular_core.Signal<Omit<NgtsPointerLockControlsOptions, "enabled" | "domElement" | "camera" | "makeDefault" | "selector">>;
233
+ protected parameters: _angular_core.Signal<Omit<NgtsPointerLockControlsOptions, "camera" | "enabled" | "makeDefault" | "domElement" | "selector">>;
234
234
  private document;
235
235
  private store;
236
236
  private camera;
@@ -490,7 +490,7 @@ type NgtsTrackballControlsOptions = Omit<NgtOverwrite<NgtThreeElement<typeof Tra
490
490
  */
491
491
  declare class NgtsTrackballControls {
492
492
  options: _angular_core.InputSignalWithTransform<NgtsTrackballControlsOptions, "" | Partial<NgtsTrackballControlsOptions>>;
493
- protected parameters: _angular_core.Signal<Omit<NgtsTrackballControlsOptions, "domElement" | "camera" | "regress" | "makeDefault">>;
493
+ protected parameters: _angular_core.Signal<Omit<NgtsTrackballControlsOptions, "camera" | "makeDefault" | "regress" | "domElement">>;
494
494
  changed: _angular_core.OutputEmitterRef<THREE.Event<string, unknown>>;
495
495
  started: _angular_core.OutputEmitterRef<THREE.Event<string, unknown>>;
496
496
  ended: _angular_core.OutputEmitterRef<THREE.Event<string, unknown>>;
@@ -277,7 +277,7 @@ interface NgtsGizmoViewportOptions extends Partial<NgtThreeElements['ngt-group']
277
277
  declare class NgtsGizmoViewport {
278
278
  protected readonly Math: Math;
279
279
  options: _angular_core.InputSignalWithTransform<NgtsGizmoViewportOptions, "" | Partial<NgtsGizmoViewportOptions>>;
280
- protected parameters: _angular_core.Signal<Omit<NgtsGizmoViewportOptions, "axisColors" | "axisScale" | "labels" | "axisHeadScale" | "labelColor" | "hideNegativeAxes" | "hideAxisHeads" | "disabled" | "font">>;
280
+ protected parameters: _angular_core.Signal<Omit<NgtsGizmoViewportOptions, "font" | "axisColors" | "axisScale" | "labels" | "axisHeadScale" | "labelColor" | "hideNegativeAxes" | "hideAxisHeads" | "disabled">>;
281
281
  click: _angular_core.OutputEmitterRef<NgtThreeEvent<MouseEvent>>;
282
282
  protected axisColors: _angular_core.Signal<[string, string, string]>;
283
283
  protected axisScale: _angular_core.Signal<[number, number, number] | undefined>;
@@ -502,7 +502,7 @@ interface NgtsPivotControlsOptions {
502
502
  */
503
503
  declare class NgtsPivotControls {
504
504
  options: _angular_core.InputSignalWithTransform<NgtsPivotControlsOptions, "" | Partial<NgtsPivotControlsOptions>>;
505
- protected parameters: _angular_core.Signal<Omit<NgtsPivotControlsOptions, "anchor" | "fixed" | "visible" | "rotation" | "scale" | "matrix" | "renderOrder" | "userData" | "enabled" | "autoTransform" | "disableAxes" | "disableSliders" | "disableRotations" | "disableScaling" | "activeAxes" | "offset" | "lineWidth" | "translationLimits" | "rotationLimits" | "scaleLimits" | "depthTest" | "axisColors" | "hoveredColor" | "annotations" | "annotationsClass" | "opacity">>;
505
+ protected parameters: _angular_core.Signal<Omit<NgtsPivotControlsOptions, "rotation" | "scale" | "matrix" | "visible" | "renderOrder" | "userData" | "opacity" | "anchor" | "fixed" | "axisColors" | "hoveredColor" | "enabled" | "lineWidth" | "offset" | "autoTransform" | "activeAxes" | "disableAxes" | "disableSliders" | "disableRotations" | "disableScaling" | "translationLimits" | "rotationLimits" | "scaleLimits" | "annotations" | "annotationsClass" | "depthTest">>;
506
506
  dragStarted: _angular_core.OutputEmitterRef<OnDragStartParameters>;
507
507
  dragEnded: _angular_core.OutputEmitterRef<void>;
508
508
  dragged: _angular_core.OutputEmitterRef<OnDragParameters>;
@@ -670,8 +670,8 @@ type NgtsTransformControlsOptions = Partial<NgtsTransformControlsObject> & Parti
670
670
  declare class NgtsTransformControls {
671
671
  object: _angular_core.InputSignal<THREE.Object3D<THREE.Object3DEventMap> | ElementRef<THREE.Object3D<THREE.Object3DEventMap>> | null | undefined>;
672
672
  options: _angular_core.InputSignal<Partial<NgtsTransformControlsOptions>>;
673
- protected parameters: _angular_core.Signal<Omit<Partial<NgtsTransformControlsOptions>, "enabled" | "axis" | "domElement" | "mode" | "translationSnap" | "rotationSnap" | "scaleSnap" | "space" | "size" | "showX" | "showY" | "showZ" | "camera" | "makeDefault">>;
674
- protected controlsOptions: _angular_core.Signal<Pick<Partial<NgtsTransformControlsOptions>, "enabled" | "axis" | "mode" | "translationSnap" | "rotationSnap" | "scaleSnap" | "space" | "size" | "showX" | "showY" | "showZ">>;
673
+ protected parameters: _angular_core.Signal<Omit<Partial<NgtsTransformControlsOptions>, "camera" | "size" | "domElement" | "enabled" | "axis" | "mode" | "translationSnap" | "rotationSnap" | "scaleSnap" | "space" | "showX" | "showY" | "showZ" | "makeDefault">>;
674
+ protected controlsOptions: _angular_core.Signal<Pick<Partial<NgtsTransformControlsOptions>, "size" | "enabled" | "axis" | "mode" | "translationSnap" | "rotationSnap" | "scaleSnap" | "space" | "showX" | "showY" | "showZ">>;
675
675
  private camera;
676
676
  private domElement;
677
677
  private makeDefault;
@@ -29,7 +29,7 @@ declare class NgtsCustomShaderMaterial {
29
29
  /**
30
30
  * The base Three.js material to extend. Can be a material instance, material class, or ElementRef to a material.
31
31
  */
32
- baseMaterial: _angular_core.InputSignal<typeof THREE.Material | THREE.Material | ElementRef<THREE.Material>>;
32
+ baseMaterial: _angular_core.InputSignal<THREE.Material | typeof THREE.Material | ElementRef<THREE.Material>>;
33
33
  /**
34
34
  * How to attach the material to its parent object.
35
35
  * @default 'material'
@@ -41,7 +41,7 @@ declare class NgtsCustomShaderMaterial {
41
41
  */
42
42
  options: _angular_core.InputSignal<Omit<any, "baseMaterial">>;
43
43
  /** Material parameters excluding shader-specific options. */
44
- parameters: _angular_core.Signal<Omit<Omit<any, "baseMaterial">, "uniforms" | "vertexShader" | "fragmentShader" | "cacheKey">>;
44
+ parameters: _angular_core.Signal<Omit<Omit<any, "baseMaterial">, "fragmentShader" | "vertexShader" | "uniforms" | "cacheKey">>;
45
45
  private base;
46
46
  private fragmentShader;
47
47
  private vertexShader;
@@ -195,7 +195,7 @@ declare class NgtsMeshPortalMaterial {
195
195
  * Configuration options for the portal material.
196
196
  */
197
197
  options: _angular_core.InputSignalWithTransform<NgtsMeshPortalMaterialOptions, "" | Partial<NgtsMeshPortalMaterialOptions>>;
198
- protected parameters: _angular_core.Signal<Omit<NgtsMeshPortalMaterialOptions, "resolution" | "events" | "blur" | "worldUnits" | "eventPriority" | "renderPriority">>;
198
+ protected parameters: _angular_core.Signal<Omit<NgtsMeshPortalMaterialOptions, "resolution" | "blur" | "worldUnits" | "eventPriority" | "renderPriority" | "events">>;
199
199
  protected blur: _angular_core.Signal<number>;
200
200
  protected eventPriority: _angular_core.Signal<number>;
201
201
  protected renderPriority: _angular_core.Signal<number>;
@@ -525,7 +525,7 @@ declare class NgtsMeshTransmissionMaterial {
525
525
  * Configuration options for the transmission material.
526
526
  */
527
527
  options: _angular_core.InputSignalWithTransform<NgtsMeshTransmissionMaterialOptions, "" | Partial<NgtsMeshTransmissionMaterialOptions>>;
528
- protected parameters: _angular_core.Signal<Omit<NgtsMeshTransmissionMaterialOptions, "side" | "thickness" | "anisotropy" | "transmission" | "buffer" | "anisotropicBlur" | "samples" | "transmissionSampler" | "backside" | "backsideThickness" | "backsideEnvMapIntensity" | "resolution" | "backsideResolution" | "background">>;
528
+ protected parameters: _angular_core.Signal<Omit<NgtsMeshTransmissionMaterialOptions, "thickness" | "anisotropy" | "transmission" | "side" | "resolution" | "background" | "buffer" | "anisotropicBlur" | "samples" | "transmissionSampler" | "backside" | "backsideThickness" | "backsideEnvMapIntensity" | "backsideResolution">>;
529
529
  private resolution;
530
530
  private backsideResolution;
531
531
  private samples;
@@ -260,7 +260,7 @@ declare class NgtsDecal {
260
260
  * Decal configuration options including position, scale, rotation, and material properties.
261
261
  */
262
262
  options: _angular_core.InputSignalWithTransform<NgtsDecalOptions, "" | Partial<NgtsDecalOptions>>;
263
- protected parameters: _angular_core.Signal<Omit<NgtsDecalOptions, "position" | "rotation" | "scale" | "map" | "depthTest" | "polygonOffsetFactor" | "debug">>;
263
+ protected parameters: _angular_core.Signal<Omit<NgtsDecalOptions, "debug" | "scale" | "position" | "map" | "rotation" | "depthTest" | "polygonOffsetFactor">>;
264
264
  meshRef: _angular_core.Signal<ElementRef<THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes, THREE.BufferGeometryEventMap>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>>;
265
265
  private helperRef;
266
266
  protected map: _angular_core.Signal<THREE.Texture<unknown> | null | undefined>;
@@ -355,8 +355,13 @@ interface NgtsFBOParams {
355
355
  height?: number;
356
356
  /**
357
357
  * Additional THREE.RenderTargetOptions for the WebGLRenderTarget.
358
+ *
359
+ * Note: `depth` accepts a boolean here as a flag to attach a `DepthTexture`
360
+ * to the render target (on top of THREE's default number meaning for 3D targets).
358
361
  */
359
- settings?: THREE.RenderTargetOptions;
362
+ settings?: Omit<THREE.RenderTargetOptions, 'depth'> & {
363
+ depth?: boolean | number;
364
+ };
360
365
  }
361
366
  /**
362
367
  * Creates a WebGLRenderTarget (Frame Buffer Object) for off-screen rendering.
@@ -540,6 +545,12 @@ interface NgtsHTMLContentOptions {
540
545
  * Defaults to the canvas container or `events.connected` element.
541
546
  */
542
547
  parent?: HTMLElement | ElementRef<HTMLElement>;
548
+ /**
549
+ * Computes z-index with a logarithmic scale, which prevents
550
+ * near objects from all having the same z-index when
551
+ * camera.far is very large.
552
+ */
553
+ logarithmicDepth?: boolean;
543
554
  }
544
555
  /**
545
556
  * Renders HTML content positioned relative to a `NgtsHTML` anchor in 3D space.
@@ -694,7 +705,7 @@ declare class NgtsHTMLImpl {
694
705
  * HTML anchor configuration including position, occlusion, and transform settings.
695
706
  */
696
707
  options: _angular_core.InputSignalWithTransform<NgtsHTMLOptions, "" | Partial<NgtsHTMLOptions>>;
697
- protected parameters: _angular_core.Signal<Omit<NgtsHTMLOptions, "transform" | "castShadow" | "receiveShadow" | "occlude">>;
708
+ protected parameters: _angular_core.Signal<Omit<NgtsHTMLOptions, "castShadow" | "receiveShadow" | "transform" | "occlude">>;
698
709
  /** Reference to the THREE.Group that serves as the 3D anchor point */
699
710
  groupRef: _angular_core.Signal<ElementRef<THREE.Group<THREE.Object3DEventMap>>>;
700
711
  /** Reference to the occlusion mesh (when using blending occlusion mode) */
@@ -704,7 +715,7 @@ declare class NgtsHTMLImpl {
704
715
  protected castShadow: _angular_core.Signal<boolean>;
705
716
  protected receiveShadow: _angular_core.Signal<boolean>;
706
717
  /** Current occlusion mode setting */
707
- occlude: _angular_core.Signal<boolean | "raycast" | THREE.Object3D<THREE.Object3DEventMap>[] | ElementRef<THREE.Object3D<THREE.Object3DEventMap>>[] | "blending">;
718
+ occlude: _angular_core.Signal<boolean | "raycast" | THREE.Object3D<THREE.Object3DEventMap>[] | "blending" | ElementRef<THREE.Object3D<THREE.Object3DEventMap>>[]>;
708
719
  /** Whether CSS 3D transform mode is enabled */
709
720
  transform: _angular_core.Signal<boolean>;
710
721
  isRaycastOcclusion: _angular_core.Signal<boolean | 0>;
@@ -980,7 +991,7 @@ declare class NgtsSampler {
980
991
  * Sampler configuration including count, weight attribute, and transform function.
981
992
  */
982
993
  options: _angular_core.InputSignalWithTransform<NgtsSamplerOptions, "" | Partial<NgtsSamplerOptions>>;
983
- protected parameters: _angular_core.Signal<Omit<NgtsSamplerOptions, "transform" | "count" | "weight">>;
994
+ protected parameters: _angular_core.Signal<Omit<NgtsSamplerOptions, "count" | "transform" | "weight">>;
984
995
  groupRef: _angular_core.Signal<ElementRef<THREE.Group<THREE.Object3DEventMap>>>;
985
996
  private count;
986
997
  private weight;
@@ -1,5 +1,5 @@
1
1
  import * as _angular_core from '@angular/core';
2
- import { ElementRef } from '@angular/core';
2
+ import { ElementRef, TemplateRef } from '@angular/core';
3
3
  import { NgtThreeElements, NgtThreeElement } from 'angular-three';
4
4
  import * as THREE from 'three';
5
5
  import { SplitStrategy } from 'three-mesh-bvh';
@@ -133,7 +133,7 @@ declare class NgtsBVH {
133
133
  */
134
134
  options: _angular_core.InputSignalWithTransform<NgtsBVHOptions, "" | Partial<NgtsBVHOptions>>;
135
135
  /** @internal */
136
- protected parameters: _angular_core.Signal<Omit<NgtsBVHOptions, "indirect" | "enabled" | "firstHitOnly" | "strategy" | "verbose" | "setBoundingBox" | "maxDepth" | "maxLeafTris">>;
136
+ protected parameters: _angular_core.Signal<Omit<NgtsBVHOptions, "enabled" | "firstHitOnly" | "strategy" | "verbose" | "setBoundingBox" | "maxDepth" | "maxLeafTris" | "indirect">>;
137
137
  /**
138
138
  * Reference to the underlying THREE.Group element.
139
139
  */
@@ -340,7 +340,7 @@ declare class NgtsInstances {
340
340
  */
341
341
  options: _angular_core.InputSignalWithTransform<NgtsInstancesOptions, "" | Partial<NgtsInstancesOptions>>;
342
342
  /** @internal */
343
- protected parameters: _angular_core.Signal<Omit<NgtsInstancesOptions, "limit" | "range" | "frames">>;
343
+ protected parameters: _angular_core.Signal<Omit<NgtsInstancesOptions, "limit" | "frames" | "range">>;
344
344
  /**
345
345
  * Reference to the underlying THREE.InstancedMesh element.
346
346
  */
@@ -367,6 +367,52 @@ declare class NgtsInstances {
367
367
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<NgtsInstances, "ngts-instances", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
368
368
  }
369
369
 
370
+ type NgtsLODLevelOptions = {
371
+ distance: number;
372
+ hysteresis: number;
373
+ };
374
+ /**
375
+ * Helper directive to capture a template to attach to
376
+ * an NgtsLOD component.
377
+ */
378
+ declare class NgtsLODLevel {
379
+ lodLevel: _angular_core.InputSignalWithTransform<NgtsLODLevelOptions, "" | Partial<NgtsLODLevelOptions>>;
380
+ template: TemplateRef<any>;
381
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<NgtsLODLevel, never>;
382
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<NgtsLODLevel, "ng-template[lodLevel]", never, { "lodLevel": { "alias": "lodLevel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
383
+ }
384
+ /**
385
+ * Angular-native port of THREE.LOD
386
+ *
387
+ * Allows to display an object with several levels of details.
388
+ *
389
+ * The main difference with THREE.LOD is that we use angular-three
390
+ * to add/remove the right object from the scene graph, rather than
391
+ * setting the visible flag on one of the object, but keeping them
392
+ * all in the graph.
393
+ *
394
+ * Usage:
395
+ *
396
+ * ```html
397
+ * <ngt-group lod [maxDistance]="10000">
398
+ * <ngt-mesh *lodLevel />
399
+ * <ngt-mesh *lodLevel="{distance: 100, hysteresis: 0.1}" />
400
+ * <ngt-mesh *lodLevel="{distance: 1000}" />
401
+ * </ngt-group>
402
+ * ```
403
+ */
404
+ declare class NgtsLODImpl {
405
+ maxDistance: _angular_core.InputSignal<number | undefined>;
406
+ private store;
407
+ private container;
408
+ readonly levels: _angular_core.Signal<readonly NgtsLODLevel[]>;
409
+ readonly level: _angular_core.WritableSignal<NgtsLODLevel | undefined>;
410
+ constructor();
411
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<NgtsLODImpl, never>;
412
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<NgtsLODImpl, "[lod]", never, { "maxDistance": { "alias": "maxDistance"; "required": false; "isSignal": true; }; }, {}, ["levels"], never, true, never>;
413
+ }
414
+ declare const NgtsLOD: readonly [typeof NgtsLODImpl, typeof NgtsLODLevel];
415
+
370
416
  /**
371
417
  * Type definition for the PositionPoint element in Angular Three templates.
372
418
  */
@@ -717,6 +763,10 @@ declare class NgtsSegments {
717
763
  /** @internal */
718
764
  protected materialParameters: _angular_core.Signal<{
719
765
  name?: string | undefined;
766
+ visible?: boolean | undefined;
767
+ userData?: Record<string, any> | undefined;
768
+ color?: number | undefined | undefined;
769
+ wireframe?: boolean | undefined | undefined;
720
770
  blending?: THREE.Blending | undefined;
721
771
  side?: THREE.Side | undefined;
722
772
  vertexColors: boolean;
@@ -756,11 +806,8 @@ declare class NgtsSegments {
756
806
  premultipliedAlpha?: boolean | undefined;
757
807
  forceSinglePass?: boolean | undefined;
758
808
  allowOverride?: boolean | undefined;
759
- visible?: boolean | undefined;
760
809
  toneMapped?: boolean | undefined;
761
- userData?: Record<string, any> | undefined;
762
810
  alphaTest?: number | undefined;
763
- color?: number | undefined | undefined;
764
811
  dashed?: boolean | undefined | undefined;
765
812
  dashScale?: number | undefined | undefined;
766
813
  dashSize?: number | undefined | undefined;
@@ -768,7 +815,6 @@ declare class NgtsSegments {
768
815
  gapSize?: number | undefined | undefined;
769
816
  linewidth: number;
770
817
  resolution: THREE.Vector2;
771
- wireframe?: boolean | undefined | undefined;
772
818
  worldUnits?: boolean | undefined | undefined;
773
819
  }>;
774
820
  /** @internal */
@@ -787,5 +833,5 @@ declare class NgtsSegments {
787
833
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<NgtsSegments, "ngts-segments", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
788
834
  }
789
835
 
790
- export { NgtsAdaptiveDpr, NgtsAdaptiveEvents, NgtsBVH, NgtsDetailed, NgtsInstance, NgtsInstances, NgtsPoint, NgtsPointsBuffer, NgtsPointsInstances, NgtsSegment, NgtsSegments };
791
- export type { NgtsBVHOptions, NgtsDetailedOptions, NgtsInstancesOptions, NgtsPointsInstancesOptions, NgtsSegmentsOptions };
836
+ export { NgtsAdaptiveDpr, NgtsAdaptiveEvents, NgtsBVH, NgtsDetailed, NgtsInstance, NgtsInstances, NgtsLOD, NgtsLODImpl, NgtsLODLevel, NgtsPoint, NgtsPointsBuffer, NgtsPointsInstances, NgtsSegment, NgtsSegments };
837
+ export type { NgtsBVHOptions, NgtsDetailedOptions, NgtsInstancesOptions, NgtsLODLevelOptions, NgtsPointsInstancesOptions, NgtsSegmentsOptions };