angular-three-soba 4.0.0-next.97 → 4.0.0-next.98
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/abstractions/lib/catmull-rom-line.d.ts +55 -55
- package/abstractions/lib/edges.d.ts +55 -55
- package/abstractions/lib/helper.d.ts +6 -1
- package/abstractions/lib/line.d.ts +1 -1
- package/abstractions/lib/text-3d.d.ts +1 -1
- package/cameras/lib/cube-camera.d.ts +7 -2
- package/cameras/lib/orthographic-camera.d.ts +1 -1
- package/cameras/lib/perspective-camera.d.ts +1 -1
- package/fesm2022/angular-three-soba-abstractions.mjs +16 -11
- package/fesm2022/angular-three-soba-abstractions.mjs.map +1 -1
- package/fesm2022/angular-three-soba-cameras.mjs +16 -11
- package/fesm2022/angular-three-soba-cameras.mjs.map +1 -1
- package/fesm2022/angular-three-soba-controls.mjs +7 -7
- package/fesm2022/angular-three-soba-controls.mjs.map +1 -1
- package/fesm2022/angular-three-soba-gizmos.mjs +10 -10
- package/fesm2022/angular-three-soba-gizmos.mjs.map +1 -1
- package/fesm2022/angular-three-soba-loaders.mjs +186 -49
- package/fesm2022/angular-three-soba-loaders.mjs.map +1 -1
- package/fesm2022/angular-three-soba-materials.mjs +14 -14
- package/fesm2022/angular-three-soba-materials.mjs.map +1 -1
- package/fesm2022/angular-three-soba-misc.mjs +38 -18
- package/fesm2022/angular-three-soba-misc.mjs.map +1 -1
- package/fesm2022/angular-three-soba-performances.mjs +6 -6
- package/fesm2022/angular-three-soba-performances.mjs.map +1 -1
- package/fesm2022/angular-three-soba-staging.mjs +142 -54
- package/fesm2022/angular-three-soba-staging.mjs.map +1 -1
- package/gizmos/lib/pivot-controls/axis-arrow.d.ts +1 -1
- package/gizmos/lib/pivot-controls/axis-rotator.d.ts +1 -1
- package/gizmos/lib/pivot-controls/pivot-controls.d.ts +1 -1
- package/gizmos/lib/pivot-controls/plane-slider.d.ts +1 -1
- package/gizmos/lib/pivot-controls/scaling-sphere.d.ts +1 -1
- package/loaders/index.d.ts +4 -0
- package/loaders/lib/fbx-loader.d.ts +9 -1
- package/loaders/lib/fbx-resource.d.ts +7 -0
- package/loaders/lib/font-loader.d.ts +6 -20
- package/loaders/lib/font-resource.d.ts +28 -0
- package/loaders/lib/gltf-loader.d.ts +8 -0
- package/loaders/lib/gltf-resource.d.ts +32 -0
- package/loaders/lib/loader.d.ts +2 -2
- package/loaders/lib/progress.d.ts +6 -1
- package/loaders/lib/texture-loader.d.ts +8 -0
- package/loaders/lib/texture-resource.d.ts +10 -0
- package/materials/lib/custom-shader-material.d.ts +2 -2
- package/materials/lib/mesh-portal-material.d.ts +1 -1
- package/materials/lib/mesh-refraction-material.d.ts +1 -1
- package/materials/lib/mesh-transmission-material.d.ts +1 -1
- package/misc/lib/animations.d.ts +6 -1
- package/misc/lib/decal.d.ts +1 -1
- package/misc/lib/depth-buffer.d.ts +6 -1
- package/misc/lib/fbo.d.ts +7 -2
- package/misc/lib/intersect.d.ts +6 -1
- package/package.json +5 -5
- package/performances/lib/bvh.d.ts +1 -1
- package/performances/lib/instances/instances.d.ts +1 -1
- package/performances/lib/points/points.d.ts +1 -1
- package/performances/lib/segments/segments.d.ts +23 -23
- package/staging/index.d.ts +1 -0
- package/staging/lib/accumulative-shadows.d.ts +1 -1
- package/staging/lib/caustics.d.ts +1 -1
- package/staging/lib/contact-shadows.d.ts +1 -1
- package/staging/lib/environment/environment-resource.d.ts +35 -0
- package/staging/lib/environment/environment.d.ts +3 -3
- package/staging/lib/environment/inject-environment.d.ts +8 -24
- package/staging/lib/lightformer.d.ts +1 -1
- package/staging/lib/matcap-texture.d.ts +17 -4
- package/staging/lib/normal-texture.d.ts +20 -7
- package/staging/lib/render-texture.d.ts +1 -1
- package/staging/lib/spot-light.d.ts +4 -4
- package/staging/lib/stage.d.ts +1 -1
|
@@ -6,7 +6,7 @@ export declare function calculateOffset(clickPoint: THREE.Vector3, normal: THREE
|
|
|
6
6
|
export declare class NgtsAxisArrow {
|
|
7
7
|
protected readonly DoubleSide: 2;
|
|
8
8
|
direction: import("@angular/core").InputSignal<THREE.Vector3>;
|
|
9
|
-
axis: import("@angular/core").InputSignal<0 |
|
|
9
|
+
axis: import("@angular/core").InputSignal<0 | 2 | 1>;
|
|
10
10
|
private groupRef;
|
|
11
11
|
private innerGroupRef;
|
|
12
12
|
private annotationRef;
|
|
@@ -7,7 +7,7 @@ export declare class NgtsAxisRotator {
|
|
|
7
7
|
protected readonly DoubleSide: 2;
|
|
8
8
|
dir1: import("@angular/core").InputSignal<THREE.Vector3>;
|
|
9
9
|
dir2: import("@angular/core").InputSignal<THREE.Vector3>;
|
|
10
|
-
axis: import("@angular/core").InputSignal<0 |
|
|
10
|
+
axis: import("@angular/core").InputSignal<0 | 2 | 1>;
|
|
11
11
|
groupRef: import("@angular/core").Signal<ElementRef<THREE.Group<THREE.Object3DEventMap>>>;
|
|
12
12
|
annotationRef: import("@angular/core").Signal<ElementRef<HTMLDivElement> | undefined>;
|
|
13
13
|
protected pivotControls: NgtsPivotControls;
|
|
@@ -60,7 +60,7 @@ export interface NgtsPivotControlsOptions {
|
|
|
60
60
|
}
|
|
61
61
|
export declare class NgtsPivotControls {
|
|
62
62
|
options: import("@angular/core").InputSignalWithTransform<NgtsPivotControlsOptions, "" | Partial<NgtsPivotControlsOptions>>;
|
|
63
|
-
protected parameters: import("@angular/core").Signal<Omit<NgtsPivotControlsOptions, "
|
|
63
|
+
protected parameters: import("@angular/core").Signal<Omit<NgtsPivotControlsOptions, "rotation" | "scale" | "matrix" | "visible" | "userData" | "opacity" | "anchor" | "fixed" | "axisColors" | "hoveredColor" | "enabled" | "lineWidth" | "offset" | "autoTransform" | "activeAxes" | "disableAxes" | "disableSliders" | "disableRotations" | "disableScaling" | "translationLimits" | "rotationLimits" | "scaleLimits" | "annotations" | "annotationsClass" | "depthTest">>;
|
|
64
64
|
dragStarted: import("@angular/core").OutputEmitterRef<OnDragStartParameters>;
|
|
65
65
|
dragEnded: import("@angular/core").OutputEmitterRef<void>;
|
|
66
66
|
dragged: import("@angular/core").OutputEmitterRef<OnDragParameters>;
|
|
@@ -7,7 +7,7 @@ export declare class NgtsPlaneSlider {
|
|
|
7
7
|
protected readonly DoubleSide: 2;
|
|
8
8
|
dir1: import("@angular/core").InputSignal<THREE.Vector3>;
|
|
9
9
|
dir2: import("@angular/core").InputSignal<THREE.Vector3>;
|
|
10
|
-
axis: import("@angular/core").InputSignal<0 |
|
|
10
|
+
axis: import("@angular/core").InputSignal<0 | 2 | 1>;
|
|
11
11
|
groupRef: import("@angular/core").Signal<ElementRef<THREE.Group<THREE.Object3DEventMap>>>;
|
|
12
12
|
private meshRef;
|
|
13
13
|
annotationRef: import("@angular/core").Signal<ElementRef<HTMLDivElement> | undefined>;
|
|
@@ -6,7 +6,7 @@ import * as i0 from "@angular/core";
|
|
|
6
6
|
export declare function calculateOffset(clickPoint: THREE.Vector3, normal: THREE.Vector3, rayStart: THREE.Vector3, rayDir: THREE.Vector3): number;
|
|
7
7
|
export declare class NgtsScalingSphere {
|
|
8
8
|
direction: import("@angular/core").InputSignal<THREE.Vector3>;
|
|
9
|
-
axis: import("@angular/core").InputSignal<0 |
|
|
9
|
+
axis: import("@angular/core").InputSignal<0 | 2 | 1>;
|
|
10
10
|
groupRef: import("@angular/core").Signal<ElementRef<THREE.Group<THREE.Object3DEventMap>>>;
|
|
11
11
|
private innerGroupRef;
|
|
12
12
|
annotationRef: import("@angular/core").Signal<ElementRef<HTMLDivElement> | undefined>;
|
package/loaders/index.d.ts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
export * from './lib/fbx-loader';
|
|
2
|
+
export * from './lib/fbx-resource';
|
|
2
3
|
export * from './lib/font-loader';
|
|
4
|
+
export * from './lib/font-resource';
|
|
3
5
|
export * from './lib/gltf-loader';
|
|
6
|
+
export * from './lib/gltf-resource';
|
|
4
7
|
export * from './lib/loader';
|
|
5
8
|
export * from './lib/progress';
|
|
6
9
|
export * from './lib/texture-loader';
|
|
10
|
+
export * from './lib/texture-resource';
|
|
@@ -1,10 +1,18 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
|
+
/**
|
|
3
|
+
* @deprecated Use fbxResource instead. Will be removed in v5.0.0
|
|
4
|
+
* @since v4.0.0
|
|
5
|
+
*/
|
|
2
6
|
declare function _injectFBX<TUrl extends string | string[] | Record<string, string>>(input: () => TUrl, { injector }?: {
|
|
3
7
|
injector?: Injector;
|
|
4
|
-
}): import("@angular/core").Signal<import("angular-three").NgtLoaderResults<TUrl, import("three").Group<import("three").Object3DEventMap>> |
|
|
8
|
+
}): import("@angular/core").Signal<import("angular-three").NgtLoaderResults<TUrl, import("three").Group<import("three").Object3DEventMap>> | undefined>;
|
|
5
9
|
declare namespace _injectFBX {
|
|
6
10
|
var preload: <TUrl extends string | string[] | Record<string, string>>(input: () => TUrl) => void;
|
|
7
11
|
}
|
|
8
12
|
export type NgtsFBXLoader = typeof _injectFBX;
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated Use fbxResource instead. Will be removed in v5.0.0
|
|
15
|
+
* @since v4.0.0
|
|
16
|
+
*/
|
|
9
17
|
export declare const injectFBX: NgtsFBXLoader;
|
|
10
18
|
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
export declare function fbxResource<TUrl extends string | string[] | Record<string, string>>(input: () => TUrl, { injector }?: {
|
|
3
|
+
injector?: Injector;
|
|
4
|
+
}): import("@angular/core").ResourceRef<import("angular-three").NgtLoaderResults<TUrl, import("three").Group<import("three").Object3DEventMap>> | undefined>;
|
|
5
|
+
export declare namespace fbxResource {
|
|
6
|
+
var preload: <TUrl extends string | string[] | Record<string, string>>(input: TUrl) => void;
|
|
7
|
+
}
|
|
@@ -1,26 +1,12 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
};
|
|
8
|
-
export type FontData = {
|
|
9
|
-
boundingBox: {
|
|
10
|
-
yMax: number;
|
|
11
|
-
yMin: number;
|
|
12
|
-
};
|
|
13
|
-
familyName: string;
|
|
14
|
-
glyphs: {
|
|
15
|
-
[k: string]: Glyph;
|
|
16
|
-
};
|
|
17
|
-
resolution: number;
|
|
18
|
-
underlineThickness: number;
|
|
19
|
-
};
|
|
20
|
-
export type NgtsFontInput = string | FontData;
|
|
2
|
+
import { type NgtsFontInput } from './font-resource';
|
|
3
|
+
/**
|
|
4
|
+
* @deprecated Use fontResource instead. Will be removed in v5.0.0
|
|
5
|
+
* @since v4.0.0
|
|
6
|
+
*/
|
|
21
7
|
export declare function injectFont(input: () => NgtsFontInput, { injector }?: {
|
|
22
8
|
injector?: Injector;
|
|
23
|
-
}): import("@angular/core").Signal<Font |
|
|
9
|
+
}): import("@angular/core").Signal<import("three-stdlib").Font | undefined>;
|
|
24
10
|
export declare namespace injectFont {
|
|
25
11
|
var preload: (input: () => NgtsFontInput) => void;
|
|
26
12
|
var clear: (input?: () => NgtsFontInput) => void;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { Font } from 'three-stdlib';
|
|
3
|
+
type Glyph = {
|
|
4
|
+
_cachedOutline: string[];
|
|
5
|
+
ha: number;
|
|
6
|
+
o: string;
|
|
7
|
+
};
|
|
8
|
+
type FontData = {
|
|
9
|
+
boundingBox: {
|
|
10
|
+
yMax: number;
|
|
11
|
+
yMin: number;
|
|
12
|
+
};
|
|
13
|
+
familyName: string;
|
|
14
|
+
glyphs: {
|
|
15
|
+
[k: string]: Glyph;
|
|
16
|
+
};
|
|
17
|
+
resolution: number;
|
|
18
|
+
underlineThickness: number;
|
|
19
|
+
};
|
|
20
|
+
export type NgtsFontInput = string | FontData;
|
|
21
|
+
export declare function fontResource(input: () => NgtsFontInput, { injector }?: {
|
|
22
|
+
injector?: Injector;
|
|
23
|
+
}): import("@angular/core").ResourceRef<Font | undefined>;
|
|
24
|
+
export declare namespace fontResource {
|
|
25
|
+
var preload: (input: NgtsFontInput) => void;
|
|
26
|
+
var clear: (input?: NgtsFontInput) => void;
|
|
27
|
+
}
|
|
28
|
+
export {};
|
|
@@ -3,6 +3,10 @@ import { NgtLoaderResults, NgtObjectMap } from 'angular-three';
|
|
|
3
3
|
import { GLTF, GLTFLoader } from 'three-stdlib';
|
|
4
4
|
type InjectGLTFUrl<TGltf extends GLTF | GLTF[] | Record<string, GLTF>> = TGltf extends GLTF ? string : TGltf extends GLTF[] ? string[] : TGltf extends Record<string, GLTF> ? Record<string, string> : never;
|
|
5
5
|
type InjectGLTFObjectMap<TGltf extends GLTF | GLTF[] | Record<string, GLTF>> = TGltf extends GLTF ? TGltf & NgtObjectMap : TGltf extends Array<infer _GLTF extends GLTF> ? Array<_GLTF & NgtObjectMap> : TGltf extends Record<string, infer _GLTF extends GLTF> ? Record<string, _GLTF & NgtObjectMap> : never;
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated Use gltfResource instead. Will be removed in v5.0.0
|
|
8
|
+
* @since v4.0.0
|
|
9
|
+
*/
|
|
6
10
|
declare function _injectGLTF<TGltf extends GLTF | GLTF[] | Record<string, GLTF> = GLTF, TUrl extends string | string[] | Record<string, string> = InjectGLTFUrl<TGltf>>(path: () => TUrl, { useDraco, useMeshOpt, injector, extensions, onLoad, }?: {
|
|
7
11
|
useDraco?: boolean | string;
|
|
8
12
|
useMeshOpt?: boolean;
|
|
@@ -22,5 +26,9 @@ declare namespace _injectGLTF {
|
|
|
22
26
|
var setDecoderPath: (path: string) => void;
|
|
23
27
|
}
|
|
24
28
|
export type NgtsGLTFLoader = typeof _injectGLTF;
|
|
29
|
+
/**
|
|
30
|
+
* @deprecated Use gltfResource instead. Will be removed in v5.0.0
|
|
31
|
+
* @since v4.0.0
|
|
32
|
+
*/
|
|
25
33
|
export declare const injectGLTF: NgtsGLTFLoader;
|
|
26
34
|
export {};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { Injector, ResourceRef, Signal } from '@angular/core';
|
|
2
|
+
import { type NgtObjectMap } from 'angular-three';
|
|
3
|
+
import { type GLTF, GLTFLoader } from 'three-stdlib';
|
|
4
|
+
type GLTFUrl<TGLTF extends GLTF | GLTF[] | Record<string, GLTF>> = TGLTF extends GLTF ? string : TGLTF extends GLTF[] ? string[] : TGLTF extends Record<string, GLTF> ? Record<string, string> : never;
|
|
5
|
+
type GLTFObjectMap<TGLTF extends GLTF | GLTF[] | Record<string, GLTF>, TUrl extends string | string[] | Record<string, string>> = [TGLTF, TUrl] extends [GLTF, string] ? TGLTF & NgtObjectMap : [TGLTF, TUrl] extends [Array<infer _GLTF extends GLTF>, string[]] ? Array<_GLTF & NgtObjectMap> : [TGLTF, TUrl] extends [Record<string, infer _GLTF extends GLTF>, Record<string, string>] ? {
|
|
6
|
+
[Key in keyof TGLTF]: _GLTF & NgtObjectMap;
|
|
7
|
+
} : [TGLTF, TUrl] extends [GLTF, string[] | Record<string, string>] ? TUrl extends string[] ? Array<TGLTF & NgtObjectMap> : {
|
|
8
|
+
[K in keyof TUrl]: TGLTF & NgtObjectMap;
|
|
9
|
+
} : never;
|
|
10
|
+
type GLTFObjectSceneMap<TGLTF extends GLTF | GLTF[] | Record<string, GLTF>, TUrl extends string | string[] | Record<string, string>> = [TGLTF, TUrl] extends [GLTF, string] ? GLTF['scene'] : [TGLTF, TUrl] extends [Array<infer _GLTF extends GLTF>, string[]] ? Array<_GLTF['scene']> : [TGLTF, TUrl] extends [Record<string, infer _GLTF extends GLTF>, Record<string, string>] ? {
|
|
11
|
+
[Key in keyof TGLTF]: _GLTF['scene'];
|
|
12
|
+
} : [TGLTF, TUrl] extends [GLTF, string[] | Record<string, string>] ? TUrl extends string[] ? Array<GLTF['scene']> : {
|
|
13
|
+
[K in keyof TUrl]: GLTF['scene'];
|
|
14
|
+
} : never;
|
|
15
|
+
export declare function gltfResource<TGLTF extends GLTF | GLTF[] | Record<string, GLTF> = GLTF, TUrl extends string | string[] | Record<string, string> = GLTFUrl<TGLTF>>(input: () => TUrl, { useDraco, useMeshOpt, injector, extensions, onLoad, }?: {
|
|
16
|
+
useDraco?: boolean | string;
|
|
17
|
+
useMeshOpt?: boolean;
|
|
18
|
+
injector?: Injector;
|
|
19
|
+
extensions?: (loader: GLTFLoader) => void;
|
|
20
|
+
onLoad?: (data: GLTFObjectMap<TGLTF, TUrl>) => void;
|
|
21
|
+
}): ResourceRef<GLTFObjectMap<TGLTF, TUrl> | undefined> & {
|
|
22
|
+
scene: Signal<GLTFObjectSceneMap<TGLTF, TUrl> | null>;
|
|
23
|
+
};
|
|
24
|
+
export declare namespace gltfResource {
|
|
25
|
+
var preload: <TUrl extends string | string[] | Record<string, string>>(input: TUrl, { useDraco, useMeshOpt, extensions, }?: {
|
|
26
|
+
useDraco?: boolean | string;
|
|
27
|
+
useMeshOpt?: boolean;
|
|
28
|
+
extensions?: (loader: GLTFLoader) => void;
|
|
29
|
+
}) => void;
|
|
30
|
+
var setDecoderPath: (path: string) => void;
|
|
31
|
+
}
|
|
32
|
+
export {};
|
package/loaders/lib/loader.d.ts
CHANGED
|
@@ -9,8 +9,8 @@ export interface NgtsLoaderOptions {
|
|
|
9
9
|
}
|
|
10
10
|
export declare class NgtsLoader {
|
|
11
11
|
private progressState;
|
|
12
|
-
protected active: import("
|
|
13
|
-
protected progress: import("
|
|
12
|
+
protected active: import("angular-three").Signal<boolean>;
|
|
13
|
+
protected progress: import("angular-three").Signal<number>;
|
|
14
14
|
options: import("@angular/core").InputSignalWithTransform<NgtsLoaderOptions, "" | Partial<NgtsLoaderOptions>>;
|
|
15
15
|
protected containerClass: import("@angular/core").Signal<string | undefined>;
|
|
16
16
|
protected innerClass: import("@angular/core").Signal<string | undefined>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
|
-
export declare function
|
|
2
|
+
export declare function progress(injector?: Injector): import("angular-three").SignalState<{
|
|
3
3
|
errors: string[];
|
|
4
4
|
active: boolean;
|
|
5
5
|
progress: number;
|
|
@@ -7,3 +7,8 @@ export declare function injectProgress(injector?: Injector): import("@angular/co
|
|
|
7
7
|
loaded: number;
|
|
8
8
|
total: number;
|
|
9
9
|
}>;
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated Use `progress` instead. Will be removed in v5.0.0
|
|
12
|
+
* @since v4.0.0
|
|
13
|
+
*/
|
|
14
|
+
export declare const injectProgress: typeof progress;
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { Injector, Signal } from '@angular/core';
|
|
2
2
|
import { NgtLoaderResults } from 'angular-three';
|
|
3
3
|
import * as THREE from 'three';
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated Use textureResource instead. Will be removed in v5.0.0
|
|
6
|
+
* @since v4.0.0
|
|
7
|
+
*/
|
|
4
8
|
declare function _injectTexture<TInput extends string[] | string | Record<string, string>>(input: () => TInput, { onLoad, injector }?: {
|
|
5
9
|
onLoad?: (texture: THREE.Texture[]) => void;
|
|
6
10
|
injector?: Injector;
|
|
@@ -9,5 +13,9 @@ declare namespace _injectTexture {
|
|
|
9
13
|
var preload: <TInput extends string[] | string | Record<string, string>>(input: () => TInput) => void;
|
|
10
14
|
}
|
|
11
15
|
export type NgtsTextureLoader = typeof _injectTexture;
|
|
16
|
+
/**
|
|
17
|
+
* @deprecated Use textureResource instead. Will be removed in v5.0.0
|
|
18
|
+
* @since v4.0.0
|
|
19
|
+
*/
|
|
12
20
|
export declare const injectTexture: NgtsTextureLoader;
|
|
13
21
|
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { NgtLoaderResults } from 'angular-three';
|
|
3
|
+
import * as THREE from 'three';
|
|
4
|
+
export declare function textureResource<TUrl extends string[] | string | Record<string, string>>(input: () => TUrl, { onLoad, injector, }?: {
|
|
5
|
+
onLoad?: (result: NgtLoaderResults<TUrl, THREE.Texture>) => void;
|
|
6
|
+
injector?: Injector;
|
|
7
|
+
}): import("@angular/core").ResourceRef<NgtLoaderResults<TUrl, THREE.Texture> | undefined>;
|
|
8
|
+
export declare namespace textureResource {
|
|
9
|
+
var preload: <TUrl extends string[] | string | Record<string, string>>(input: TUrl) => void;
|
|
10
|
+
}
|
|
@@ -4,10 +4,10 @@ import * as THREE from 'three';
|
|
|
4
4
|
import CustomShaderMaterial from 'three-custom-shader-material/vanilla';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class NgtsCustomShaderMaterial {
|
|
7
|
-
baseMaterial: import("@angular/core").InputSignal<THREE.Material |
|
|
7
|
+
baseMaterial: import("@angular/core").InputSignal<typeof THREE.Material | THREE.Material | ElementRef<THREE.Material>>;
|
|
8
8
|
attach: import("@angular/core").InputSignal<NgtAttachable>;
|
|
9
9
|
options: import("@angular/core").InputSignal<Omit<any, "baseMaterial">>;
|
|
10
|
-
parameters: import("@angular/core").Signal<Omit<Omit<any, "baseMaterial">, "
|
|
10
|
+
parameters: import("@angular/core").Signal<Omit<Omit<any, "baseMaterial">, "uniforms" | "vertexShader" | "fragmentShader" | "cacheKey">>;
|
|
11
11
|
private base;
|
|
12
12
|
private fragmentShader;
|
|
13
13
|
private vertexShader;
|
|
@@ -36,7 +36,7 @@ export interface NgtsMeshPortalMaterialOptions extends Partial<NgtThreeElements[
|
|
|
36
36
|
export declare class NgtsMeshPortalMaterial {
|
|
37
37
|
attach: import("@angular/core").InputSignal<NgtAttachable>;
|
|
38
38
|
options: import("@angular/core").InputSignalWithTransform<NgtsMeshPortalMaterialOptions, "" | Partial<NgtsMeshPortalMaterialOptions>>;
|
|
39
|
-
protected parameters: import("@angular/core").Signal<Omit<NgtsMeshPortalMaterialOptions, "resolution" | "
|
|
39
|
+
protected parameters: import("@angular/core").Signal<Omit<NgtsMeshPortalMaterialOptions, "resolution" | "events" | "blur" | "worldUnits" | "eventPriority" | "renderPriority">>;
|
|
40
40
|
protected blur: import("@angular/core").Signal<number>;
|
|
41
41
|
protected eventPriority: import("@angular/core").Signal<number>;
|
|
42
42
|
protected renderPriority: import("@angular/core").Signal<number>;
|
|
@@ -20,7 +20,7 @@ export declare class NgtsMeshRefractionMaterial {
|
|
|
20
20
|
envMap: import("@angular/core").InputSignal<THREE.Texture | THREE.CubeTexture>;
|
|
21
21
|
attach: import("@angular/core").InputSignal<NgtAttachable>;
|
|
22
22
|
options: import("@angular/core").InputSignalWithTransform<NgtsMeshRefractionMaterialOptions, "" | Partial<NgtsMeshRefractionMaterialOptions>>;
|
|
23
|
-
protected parameters: import("@angular/core").Signal<Omit<NgtsMeshRefractionMaterialOptions, "
|
|
23
|
+
protected parameters: import("@angular/core").Signal<Omit<NgtsMeshRefractionMaterialOptions, "fastChroma" | "aberrationStrength">>;
|
|
24
24
|
private fastChroma;
|
|
25
25
|
protected aberrationStrength: import("@angular/core").Signal<number>;
|
|
26
26
|
materialRef: import("@angular/core").Signal<ElementRef<THREE.ShaderMaterial & {
|
|
@@ -29,7 +29,7 @@ export type NgtsMeshTransmissionMaterialOptions = Partial<NgtThreeElements['ngt-
|
|
|
29
29
|
export declare class NgtsMeshTransmissionMaterial {
|
|
30
30
|
attach: import("@angular/core").InputSignal<NgtAttachable>;
|
|
31
31
|
options: import("@angular/core").InputSignalWithTransform<NgtsMeshTransmissionMaterialOptions, "" | Partial<NgtsMeshTransmissionMaterialOptions>>;
|
|
32
|
-
protected parameters: import("@angular/core").Signal<Omit<NgtsMeshTransmissionMaterialOptions, "
|
|
32
|
+
protected parameters: import("@angular/core").Signal<Omit<NgtsMeshTransmissionMaterialOptions, "side" | "thickness" | "anisotropy" | "transmission" | "buffer" | "anisotropicBlur" | "samples" | "transmissionSampler" | "backside" | "backsideThickness" | "backsideEnvMapIntensity" | "resolution" | "backsideResolution" | "background">>;
|
|
33
33
|
private resolution;
|
|
34
34
|
private backsideResolution;
|
|
35
35
|
private samples;
|
package/misc/lib/animations.d.ts
CHANGED
|
@@ -38,7 +38,12 @@ export type NgtsAnimation<TAnimation extends NgtsAnimationClip = NgtsAnimationCl
|
|
|
38
38
|
/**
|
|
39
39
|
* Use afterNextRender
|
|
40
40
|
*/
|
|
41
|
-
export declare function
|
|
41
|
+
export declare function animations<TAnimation extends NgtsAnimationClip>(animationsFactory: () => NgtsAnimation<TAnimation> | undefined | null, object: ElementRef<THREE.Object3D> | THREE.Object3D | (() => ElementRef<THREE.Object3D> | THREE.Object3D | undefined | null), { injector }?: {
|
|
42
42
|
injector?: Injector;
|
|
43
43
|
}): NgtsAnimationApi<TAnimation>;
|
|
44
|
+
/**
|
|
45
|
+
* @deprecated use animations instead. Will be removed in v5.0.0
|
|
46
|
+
* @since v4.0.0
|
|
47
|
+
*/
|
|
48
|
+
export declare const injectAnimations: typeof animations;
|
|
44
49
|
export {};
|
package/misc/lib/decal.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export interface NgtsDecalOptions extends Partial<NgtThreeElements['ngt-mesh']>
|
|
|
11
11
|
export declare class NgtsDecal {
|
|
12
12
|
mesh: import("@angular/core").InputSignal<THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap> | ElementRef<THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>> | null | undefined>;
|
|
13
13
|
options: import("@angular/core").InputSignalWithTransform<NgtsDecalOptions, "" | Partial<NgtsDecalOptions>>;
|
|
14
|
-
protected parameters: import("@angular/core").Signal<Omit<NgtsDecalOptions, "
|
|
14
|
+
protected parameters: import("@angular/core").Signal<Omit<NgtsDecalOptions, "debug" | "scale" | "map" | "position" | "rotation" | "depthTest" | "polygonOffsetFactor">>;
|
|
15
15
|
meshRef: import("@angular/core").Signal<ElementRef<THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>>;
|
|
16
16
|
private helperRef;
|
|
17
17
|
protected map: import("@angular/core").Signal<THREE.Texture | null | undefined>;
|
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
2
|
import * as THREE from 'three';
|
|
3
|
-
export declare function
|
|
3
|
+
export declare function depthBuffer(params?: () => {
|
|
4
4
|
size?: number;
|
|
5
5
|
frames?: number;
|
|
6
6
|
}, { injector }?: {
|
|
7
7
|
injector?: Injector;
|
|
8
8
|
}): THREE.DepthTexture | null;
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated use depthBuffer instead. Will be removed in v5.0.0
|
|
11
|
+
* @since v4.0.0
|
|
12
|
+
*/
|
|
13
|
+
export declare const injectDepthBuffer: typeof depthBuffer;
|
package/misc/lib/fbo.d.ts
CHANGED
|
@@ -24,9 +24,14 @@ export interface NgtsFBOParams {
|
|
|
24
24
|
height?: number;
|
|
25
25
|
settings?: FBOSettings;
|
|
26
26
|
}
|
|
27
|
-
export declare function
|
|
27
|
+
export declare function fbo(params?: () => NgtsFBOParams, { injector }?: {
|
|
28
28
|
injector?: Injector;
|
|
29
29
|
}): THREE.WebGLRenderTarget<THREE.Texture>;
|
|
30
|
+
/**
|
|
31
|
+
* @deprecated use fbo instead. Will be removed in v5.0.0
|
|
32
|
+
* @since v4.0.0
|
|
33
|
+
*/
|
|
34
|
+
export declare const injectFBO: typeof fbo;
|
|
30
35
|
export declare class NgtsFBO {
|
|
31
36
|
fbo: import("@angular/core").InputSignal<{
|
|
32
37
|
width: NgtsFBOParams["width"];
|
|
@@ -36,7 +41,7 @@ export declare class NgtsFBO {
|
|
|
36
41
|
private viewContainerRef;
|
|
37
42
|
constructor();
|
|
38
43
|
static ngTemplateContextGuard(_: NgtsFBO, ctx: unknown): ctx is {
|
|
39
|
-
$implicit: ReturnType<typeof
|
|
44
|
+
$implicit: ReturnType<typeof fbo>;
|
|
40
45
|
};
|
|
41
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsFBO, never>;
|
|
42
47
|
static ɵdir: i0.ɵɵDirectiveDeclaration<NgtsFBO, "ng-template[fbo]", never, { "fbo": { "alias": "fbo"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
package/misc/lib/intersect.d.ts
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
import { ElementRef, Injector, WritableSignal } from '@angular/core';
|
|
2
2
|
import * as THREE from 'three';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare function
|
|
4
|
+
export declare function intersect<TObject extends THREE.Object3D>(object: () => ElementRef<TObject> | TObject | undefined | null, { injector, source }?: {
|
|
5
5
|
injector?: Injector;
|
|
6
6
|
source?: WritableSignal<boolean>;
|
|
7
7
|
}): import("@angular/core").Signal<boolean>;
|
|
8
|
+
/**
|
|
9
|
+
* @deprecated Use `intersect` instead. Will be removed in v5.0.0
|
|
10
|
+
* @since v4.0.0
|
|
11
|
+
*/
|
|
12
|
+
export declare const injectIntersect: typeof intersect;
|
|
8
13
|
export declare class NgtsIntersect {
|
|
9
14
|
intersect: import("@angular/core").ModelSignal<boolean>;
|
|
10
15
|
constructor();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "angular-three-soba",
|
|
3
|
-
"version": "4.0.0-next.
|
|
3
|
+
"version": "4.0.0-next.98",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -43,10 +43,6 @@
|
|
|
43
43
|
"types": "./controls/index.d.ts",
|
|
44
44
|
"default": "./fesm2022/angular-three-soba-controls.mjs"
|
|
45
45
|
},
|
|
46
|
-
"./gizmos": {
|
|
47
|
-
"types": "./gizmos/index.d.ts",
|
|
48
|
-
"default": "./fesm2022/angular-three-soba-gizmos.mjs"
|
|
49
|
-
},
|
|
50
46
|
"./loaders": {
|
|
51
47
|
"types": "./loaders/index.d.ts",
|
|
52
48
|
"default": "./fesm2022/angular-three-soba-loaders.mjs"
|
|
@@ -55,6 +51,10 @@
|
|
|
55
51
|
"types": "./materials/index.d.ts",
|
|
56
52
|
"default": "./fesm2022/angular-three-soba-materials.mjs"
|
|
57
53
|
},
|
|
54
|
+
"./gizmos": {
|
|
55
|
+
"types": "./gizmos/index.d.ts",
|
|
56
|
+
"default": "./fesm2022/angular-three-soba-gizmos.mjs"
|
|
57
|
+
},
|
|
58
58
|
"./misc": {
|
|
59
59
|
"types": "./misc/index.d.ts",
|
|
60
60
|
"default": "./fesm2022/angular-three-soba-misc.mjs"
|
|
@@ -29,7 +29,7 @@ export type NgtsBVHOptions = Partial<NgtThreeElements['ngt-group']> & {
|
|
|
29
29
|
};
|
|
30
30
|
export declare class NgtsBVH {
|
|
31
31
|
options: import("@angular/core").InputSignalWithTransform<NgtsBVHOptions, "" | Partial<NgtsBVHOptions>>;
|
|
32
|
-
protected parameters: import("@angular/core").Signal<Omit<NgtsBVHOptions, "enabled" | "firstHitOnly" | "strategy" | "verbose" | "setBoundingBox" | "maxDepth" | "maxLeafTris"
|
|
32
|
+
protected parameters: import("@angular/core").Signal<Omit<NgtsBVHOptions, "indirect" | "enabled" | "firstHitOnly" | "strategy" | "verbose" | "setBoundingBox" | "maxDepth" | "maxLeafTris">>;
|
|
33
33
|
groupRef: import("@angular/core").Signal<ElementRef<THREE.Group<THREE.Object3DEventMap>>>;
|
|
34
34
|
private store;
|
|
35
35
|
private enabled;
|
|
@@ -19,7 +19,7 @@ export interface NgtsInstancesOptions extends Partial<NgtThreeElements['ngt-inst
|
|
|
19
19
|
export declare class NgtsInstances {
|
|
20
20
|
protected readonly DynamicDrawUsage: 35048;
|
|
21
21
|
options: import("@angular/core").InputSignalWithTransform<NgtsInstancesOptions, "" | Partial<NgtsInstancesOptions>>;
|
|
22
|
-
protected parameters: import("@angular/core").Signal<Omit<NgtsInstancesOptions, "
|
|
22
|
+
protected parameters: import("@angular/core").Signal<Omit<NgtsInstancesOptions, "limit" | "range" | "frames">>;
|
|
23
23
|
instancedMeshRef: import("@angular/core").Signal<ElementRef<THREE.InstancedMesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.InstancedMeshEventMap>>>;
|
|
24
24
|
private limit;
|
|
25
25
|
protected buffers: import("@angular/core").Signal<{
|
|
@@ -29,7 +29,7 @@ export interface NgtsPointsInstancesOptions extends Partial<NgtThreeElements['ng
|
|
|
29
29
|
}
|
|
30
30
|
export declare class NgtsPointsInstances {
|
|
31
31
|
options: import("@angular/core").InputSignalWithTransform<NgtsPointsInstancesOptions, "" | Partial<NgtsPointsInstancesOptions>>;
|
|
32
|
-
parameters: import("@angular/core").Signal<Omit<NgtsPointsInstancesOptions, "
|
|
32
|
+
parameters: import("@angular/core").Signal<Omit<NgtsPointsInstancesOptions, "limit" | "range">>;
|
|
33
33
|
pointsRef: import("@angular/core").Signal<ElementRef<THREE.Points<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>>;
|
|
34
34
|
private limit;
|
|
35
35
|
buffers: import("@angular/core").Signal<{
|
|
@@ -31,12 +31,19 @@ export declare class NgtsSegments {
|
|
|
31
31
|
protected geometry: LineSegmentsGeometry;
|
|
32
32
|
private resolution;
|
|
33
33
|
protected materialParameters: import("@angular/core").Signal<{
|
|
34
|
-
|
|
35
|
-
visible?: boolean | undefined | undefined;
|
|
36
|
-
userData?: Record<string, any> | undefined;
|
|
34
|
+
alphaToCoverage?: boolean | undefined | undefined;
|
|
37
35
|
color?: number | undefined | undefined;
|
|
36
|
+
dashed?: boolean | undefined | undefined;
|
|
37
|
+
dashScale?: number | undefined | undefined;
|
|
38
|
+
dashSize?: number | undefined | undefined;
|
|
39
|
+
dashOffset?: number | undefined | undefined;
|
|
40
|
+
gapSize?: number | undefined | undefined;
|
|
41
|
+
linewidth: number;
|
|
42
|
+
resolution: THREE.Vector2;
|
|
43
|
+
wireframe?: boolean | undefined | undefined;
|
|
44
|
+
worldUnits?: boolean | undefined | undefined;
|
|
38
45
|
alphaHash?: boolean | undefined | undefined;
|
|
39
|
-
|
|
46
|
+
alphaTest?: number | undefined | undefined;
|
|
40
47
|
blendAlpha?: number | undefined | undefined;
|
|
41
48
|
blendColor?: THREE.ColorRepresentation | undefined;
|
|
42
49
|
blendDst?: THREE.BlendingDstFactor | undefined;
|
|
@@ -44,7 +51,7 @@ export declare class NgtsSegments {
|
|
|
44
51
|
blendEquation?: THREE.BlendingEquation | undefined;
|
|
45
52
|
blendEquationAlpha?: number | undefined | undefined;
|
|
46
53
|
blending?: THREE.Blending | undefined;
|
|
47
|
-
blendSrc?: 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 |
|
|
54
|
+
blendSrc?: 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 211 | 212 | 213 | 214 | 210 | undefined;
|
|
48
55
|
blendSrcAlpha?: number | undefined | undefined;
|
|
49
56
|
clipIntersection?: boolean | undefined | undefined;
|
|
50
57
|
clippingPlanes?: THREE.Plane[] | undefined | undefined;
|
|
@@ -54,14 +61,7 @@ export declare class NgtsSegments {
|
|
|
54
61
|
depthFunc?: THREE.DepthModes | undefined;
|
|
55
62
|
depthTest?: boolean | undefined | undefined;
|
|
56
63
|
depthWrite?: boolean | undefined | undefined;
|
|
57
|
-
|
|
58
|
-
stencilFunc?: THREE.StencilFunc | undefined;
|
|
59
|
-
stencilRef?: number | undefined | undefined;
|
|
60
|
-
stencilWriteMask?: number | undefined | undefined;
|
|
61
|
-
stencilFuncMask?: number | undefined | undefined;
|
|
62
|
-
stencilFail?: THREE.StencilOp | undefined;
|
|
63
|
-
stencilZFail?: THREE.StencilOp | undefined;
|
|
64
|
-
stencilZPass?: THREE.StencilOp | undefined;
|
|
64
|
+
name?: string | undefined | undefined;
|
|
65
65
|
opacity?: number | undefined | undefined;
|
|
66
66
|
polygonOffset?: boolean | undefined | undefined;
|
|
67
67
|
polygonOffsetFactor?: number | undefined | undefined;
|
|
@@ -75,17 +75,17 @@ export declare class NgtsSegments {
|
|
|
75
75
|
toneMapped?: boolean | undefined | undefined;
|
|
76
76
|
transparent?: boolean | undefined | undefined;
|
|
77
77
|
vertexColors: boolean;
|
|
78
|
-
|
|
79
|
-
dashed?: boolean | undefined | undefined;
|
|
80
|
-
dashScale?: number | undefined | undefined;
|
|
81
|
-
dashSize?: number | undefined | undefined;
|
|
82
|
-
dashOffset?: number | undefined | undefined;
|
|
83
|
-
gapSize?: number | undefined | undefined;
|
|
84
|
-
linewidth: number;
|
|
85
|
-
resolution: THREE.Vector2;
|
|
86
|
-
wireframe?: boolean | undefined | undefined;
|
|
87
|
-
worldUnits?: boolean | undefined | undefined;
|
|
78
|
+
visible?: boolean | undefined | undefined;
|
|
88
79
|
format?: THREE.PixelFormat | undefined;
|
|
80
|
+
stencilWrite?: boolean | undefined | undefined;
|
|
81
|
+
stencilFunc?: THREE.StencilFunc | undefined;
|
|
82
|
+
stencilRef?: number | undefined | undefined;
|
|
83
|
+
stencilWriteMask?: number | undefined | undefined;
|
|
84
|
+
stencilFuncMask?: number | undefined | undefined;
|
|
85
|
+
stencilFail?: THREE.StencilOp | undefined;
|
|
86
|
+
stencilZFail?: THREE.StencilOp | undefined;
|
|
87
|
+
stencilZPass?: THREE.StencilOp | undefined;
|
|
88
|
+
userData?: Record<string, any> | undefined;
|
|
89
89
|
}>;
|
|
90
90
|
private positions;
|
|
91
91
|
private colors;
|
package/staging/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export * from './lib/caustics';
|
|
|
7
7
|
export * from './lib/center';
|
|
8
8
|
export * from './lib/contact-shadows';
|
|
9
9
|
export * from './lib/environment/environment';
|
|
10
|
+
export * from './lib/environment/environment-resource';
|
|
10
11
|
export * from './lib/environment/inject-environment';
|
|
11
12
|
export * from './lib/float';
|
|
12
13
|
export * from './lib/lightformer';
|
|
@@ -30,7 +30,7 @@ export declare class NgtsAccumulativeShadows {
|
|
|
30
30
|
protected readonly nullTraversal: () => null;
|
|
31
31
|
protected readonly Math: Math;
|
|
32
32
|
options: import("@angular/core").InputSignalWithTransform<NgtsAccumulativeShadowsOptions, "" | Partial<NgtsAccumulativeShadowsOptions>>;
|
|
33
|
-
parameters: import("@angular/core").Signal<Omit<NgtsAccumulativeShadowsOptions, "scale" | "
|
|
33
|
+
parameters: import("@angular/core").Signal<Omit<NgtsAccumulativeShadowsOptions, "scale" | "frames" | "blend" | "limit" | "temporal" | "opacity" | "alphaTest" | "color" | "colorBlend" | "resolution" | "toneMapped">>;
|
|
34
34
|
lightsRef: import("@angular/core").Signal<ElementRef<THREE.Group<THREE.Object3DEventMap>>>;
|
|
35
35
|
planeRef: import("@angular/core").Signal<ElementRef<THREE.Mesh<THREE.PlaneGeometry, THREE.ShaderMaterial & {
|
|
36
36
|
map: THREE.Texture | null;
|
|
@@ -32,7 +32,7 @@ export declare class NgtsCaustics {
|
|
|
32
32
|
protected readonly OneFactor: 201;
|
|
33
33
|
protected readonly SrcAlphaFactor: 204;
|
|
34
34
|
options: import("@angular/core").InputSignalWithTransform<NgtsCausticsOptions, "" | Partial<NgtsCausticsOptions>>;
|
|
35
|
-
protected parameters: import("@angular/core").Signal<Omit<NgtsCausticsOptions, "
|
|
35
|
+
protected parameters: import("@angular/core").Signal<Omit<NgtsCausticsOptions, "intensity" | "frames" | "color" | "resolution" | "debug" | "causticsOnly" | "backside" | "ior" | "backsideIOR" | "worldRadius" | "lightSource">>;
|
|
36
36
|
protected debug: import("@angular/core").Signal<boolean>;
|
|
37
37
|
protected color: import("@angular/core").Signal<THREE.ColorRepresentation>;
|
|
38
38
|
private resolution;
|
|
@@ -19,7 +19,7 @@ export interface NgtsContactShadowsOptions extends Partial<Omit<NgtThreeElements
|
|
|
19
19
|
export declare class NgtsContactShadows {
|
|
20
20
|
protected readonly Math: Math;
|
|
21
21
|
options: import("@angular/core").InputSignalWithTransform<NgtsContactShadowsOptions, "" | Partial<NgtsContactShadowsOptions>>;
|
|
22
|
-
protected parameters: import("@angular/core").Signal<Omit<NgtsContactShadowsOptions, "scale" | "renderOrder" | "
|
|
22
|
+
protected parameters: import("@angular/core").Signal<Omit<NgtsContactShadowsOptions, "scale" | "renderOrder" | "width" | "height" | "frames" | "opacity" | "color" | "resolution" | "near" | "far" | "blur" | "smooth" | "depthWrite">>;
|
|
23
23
|
contactShadowsRef: import("@angular/core").Signal<ElementRef<THREE.Group<THREE.Object3DEventMap>>>;
|
|
24
24
|
private shadowsCameraRef;
|
|
25
25
|
private store;
|