angular-three-soba 3.2.1 → 3.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.
- package/abstractions/lib/catmull-rom-line.d.ts +219 -219
- package/abstractions/lib/edges.d.ts +245 -245
- package/abstractions/lib/grid.d.ts +42 -42
- package/abstractions/lib/line.d.ts +1 -1
- package/abstractions/lib/text-3d.d.ts +42 -42
- package/package.json +5 -5
|
@@ -4,27 +4,15 @@ import { Mesh, PlaneGeometry, Vector3 } from 'three';
|
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class NgtsGrid {
|
|
6
6
|
options: import("@angular/core").InputSignalWithTransform<Partial<{
|
|
7
|
-
name?: string | undefined;
|
|
8
|
-
visible?: boolean | undefined;
|
|
9
|
-
userData?: Record<string, any> | undefined;
|
|
10
7
|
addEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
11
8
|
removeEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
12
9
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
13
10
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
14
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
15
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
16
|
-
readonly isMesh?: true | undefined;
|
|
17
|
-
readonly type?: string | undefined;
|
|
18
|
-
morphTargetInfluences?: number[] | undefined;
|
|
19
|
-
morphTargetDictionary?: {
|
|
20
|
-
[key: string]: number;
|
|
21
|
-
} | undefined;
|
|
22
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
23
|
-
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
24
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
25
11
|
readonly isObject3D?: true | undefined;
|
|
26
12
|
readonly id?: number | undefined;
|
|
27
13
|
uuid?: string | undefined;
|
|
14
|
+
name?: string | undefined;
|
|
15
|
+
readonly type?: string | undefined;
|
|
28
16
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
29
17
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
30
18
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -33,11 +21,13 @@ export declare class NgtsGrid {
|
|
|
33
21
|
matrixAutoUpdate?: boolean | undefined;
|
|
34
22
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
35
23
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
24
|
+
visible?: boolean | undefined;
|
|
36
25
|
castShadow?: boolean | undefined;
|
|
37
26
|
receiveShadow?: boolean | undefined;
|
|
38
27
|
frustumCulled?: boolean | undefined;
|
|
39
28
|
renderOrder?: number | undefined;
|
|
40
29
|
animations?: import("three").AnimationClip[] | undefined;
|
|
30
|
+
userData?: Record<string, any> | undefined;
|
|
41
31
|
customDepthMaterial?: import("three").Material | undefined;
|
|
42
32
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
43
33
|
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
@@ -83,10 +73,20 @@ export declare class NgtsGrid {
|
|
|
83
73
|
updateMatrix?: (() => void) | undefined;
|
|
84
74
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
85
75
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
76
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
86
77
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
87
78
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
88
79
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>) => boolean) | undefined;
|
|
89
80
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
81
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
82
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
83
|
+
readonly isMesh?: true | undefined;
|
|
84
|
+
morphTargetInfluences?: number[] | undefined;
|
|
85
|
+
morphTargetDictionary?: {
|
|
86
|
+
[key: string]: number;
|
|
87
|
+
} | undefined;
|
|
88
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
89
|
+
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
90
90
|
position: import("angular-three").NgtVector3;
|
|
91
91
|
up: import("angular-three").NgtVector3;
|
|
92
92
|
scale: import("angular-three").NgtVector3;
|
|
@@ -99,27 +99,15 @@ export declare class NgtsGrid {
|
|
|
99
99
|
}> & GridMaterialOptions & {
|
|
100
100
|
planeArgs: ConstructorParameters<typeof PlaneGeometry>;
|
|
101
101
|
}, "" | Partial<Partial<{
|
|
102
|
-
name?: string | undefined;
|
|
103
|
-
visible?: boolean | undefined;
|
|
104
|
-
userData?: Record<string, any> | undefined;
|
|
105
102
|
addEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
106
103
|
removeEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
107
104
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
108
105
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
109
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
110
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
111
|
-
readonly isMesh?: true | undefined;
|
|
112
|
-
readonly type?: string | undefined;
|
|
113
|
-
morphTargetInfluences?: number[] | undefined;
|
|
114
|
-
morphTargetDictionary?: {
|
|
115
|
-
[key: string]: number;
|
|
116
|
-
} | undefined;
|
|
117
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
118
|
-
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
119
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
120
106
|
readonly isObject3D?: true | undefined;
|
|
121
107
|
readonly id?: number | undefined;
|
|
122
108
|
uuid?: string | undefined;
|
|
109
|
+
name?: string | undefined;
|
|
110
|
+
readonly type?: string | undefined;
|
|
123
111
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
124
112
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
125
113
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -128,11 +116,13 @@ export declare class NgtsGrid {
|
|
|
128
116
|
matrixAutoUpdate?: boolean | undefined;
|
|
129
117
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
130
118
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
119
|
+
visible?: boolean | undefined;
|
|
131
120
|
castShadow?: boolean | undefined;
|
|
132
121
|
receiveShadow?: boolean | undefined;
|
|
133
122
|
frustumCulled?: boolean | undefined;
|
|
134
123
|
renderOrder?: number | undefined;
|
|
135
124
|
animations?: import("three").AnimationClip[] | undefined;
|
|
125
|
+
userData?: Record<string, any> | undefined;
|
|
136
126
|
customDepthMaterial?: import("three").Material | undefined;
|
|
137
127
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
138
128
|
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
@@ -178,10 +168,20 @@ export declare class NgtsGrid {
|
|
|
178
168
|
updateMatrix?: (() => void) | undefined;
|
|
179
169
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
180
170
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
171
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
181
172
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
182
173
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
183
174
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>) => boolean) | undefined;
|
|
184
175
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
176
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
177
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
178
|
+
readonly isMesh?: true | undefined;
|
|
179
|
+
morphTargetInfluences?: number[] | undefined;
|
|
180
|
+
morphTargetDictionary?: {
|
|
181
|
+
[key: string]: number;
|
|
182
|
+
} | undefined;
|
|
183
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
184
|
+
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
185
185
|
position: import("angular-three").NgtVector3;
|
|
186
186
|
up: import("angular-three").NgtVector3;
|
|
187
187
|
scale: import("angular-three").NgtVector3;
|
|
@@ -195,27 +195,15 @@ export declare class NgtsGrid {
|
|
|
195
195
|
planeArgs: ConstructorParameters<typeof PlaneGeometry>;
|
|
196
196
|
}>>;
|
|
197
197
|
parameters: import("@angular/core").Signal<Omit<Partial<{
|
|
198
|
-
name?: string | undefined;
|
|
199
|
-
visible?: boolean | undefined;
|
|
200
|
-
userData?: Record<string, any> | undefined;
|
|
201
198
|
addEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
202
199
|
removeEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
203
200
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
204
201
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
205
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
206
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
207
|
-
readonly isMesh?: true | undefined;
|
|
208
|
-
readonly type?: string | undefined;
|
|
209
|
-
morphTargetInfluences?: number[] | undefined;
|
|
210
|
-
morphTargetDictionary?: {
|
|
211
|
-
[key: string]: number;
|
|
212
|
-
} | undefined;
|
|
213
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
214
|
-
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
215
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
216
202
|
readonly isObject3D?: true | undefined;
|
|
217
203
|
readonly id?: number | undefined;
|
|
218
204
|
uuid?: string | undefined;
|
|
205
|
+
name?: string | undefined;
|
|
206
|
+
readonly type?: string | undefined;
|
|
219
207
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
220
208
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
221
209
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -224,11 +212,13 @@ export declare class NgtsGrid {
|
|
|
224
212
|
matrixAutoUpdate?: boolean | undefined;
|
|
225
213
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
226
214
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
215
|
+
visible?: boolean | undefined;
|
|
227
216
|
castShadow?: boolean | undefined;
|
|
228
217
|
receiveShadow?: boolean | undefined;
|
|
229
218
|
frustumCulled?: boolean | undefined;
|
|
230
219
|
renderOrder?: number | undefined;
|
|
231
220
|
animations?: import("three").AnimationClip[] | undefined;
|
|
221
|
+
userData?: Record<string, any> | undefined;
|
|
232
222
|
customDepthMaterial?: import("three").Material | undefined;
|
|
233
223
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
234
224
|
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
@@ -274,10 +264,20 @@ export declare class NgtsGrid {
|
|
|
274
264
|
updateMatrix?: (() => void) | undefined;
|
|
275
265
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
276
266
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
267
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
277
268
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
278
269
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
279
270
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>) => boolean) | undefined;
|
|
280
271
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
272
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
273
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
274
|
+
readonly isMesh?: true | undefined;
|
|
275
|
+
morphTargetInfluences?: number[] | undefined;
|
|
276
|
+
morphTargetDictionary?: {
|
|
277
|
+
[key: string]: number;
|
|
278
|
+
} | undefined;
|
|
279
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
280
|
+
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
281
281
|
position: import("angular-three").NgtVector3;
|
|
282
282
|
up: import("angular-three").NgtVector3;
|
|
283
283
|
scale: import("angular-three").NgtVector3;
|
|
@@ -18,7 +18,7 @@ export type NgtsLineOptions = Omit<LineMaterialParameters, 'vertexColors' | 'col
|
|
|
18
18
|
export declare class NgtsLine {
|
|
19
19
|
points: import("@angular/core").InputSignal<(number | Vector3 | [number, number, number] | Vector2 | [number, number])[]>;
|
|
20
20
|
options: import("@angular/core").InputSignalWithTransform<NgtsLineOptions, "" | Partial<NgtsLineOptions>>;
|
|
21
|
-
parameters: import("@angular/core").Signal<Omit<NgtsLineOptions, "
|
|
21
|
+
parameters: import("@angular/core").Signal<Omit<NgtsLineOptions, "color" | "dashed" | "linewidth" | "vertexColors" | "lineWidth" | "segments">>;
|
|
22
22
|
lineRef: import("@angular/core").Signal<ElementRef<Line2 | LineSegments2> | undefined>;
|
|
23
23
|
private store;
|
|
24
24
|
private size;
|
|
@@ -12,27 +12,15 @@ export declare class NgtsText3D {
|
|
|
12
12
|
font: import("@angular/core").InputSignal<NgtsFontInput>;
|
|
13
13
|
text: import("@angular/core").InputSignal<string>;
|
|
14
14
|
options: import("@angular/core").InputSignalWithTransform<Partial<{
|
|
15
|
-
name?: string | undefined;
|
|
16
|
-
visible?: boolean | undefined;
|
|
17
|
-
userData?: Record<string, any> | undefined;
|
|
18
15
|
addEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
19
16
|
removeEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
20
17
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
21
18
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
22
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
23
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
24
|
-
readonly isMesh?: true | undefined;
|
|
25
|
-
readonly type?: string | undefined;
|
|
26
|
-
morphTargetInfluences?: number[] | undefined;
|
|
27
|
-
morphTargetDictionary?: {
|
|
28
|
-
[key: string]: number;
|
|
29
|
-
} | undefined;
|
|
30
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
31
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
32
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
33
19
|
readonly isObject3D?: true | undefined;
|
|
34
20
|
readonly id?: number | undefined;
|
|
35
21
|
uuid?: string | undefined;
|
|
22
|
+
name?: string | undefined;
|
|
23
|
+
readonly type?: string | undefined;
|
|
36
24
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
37
25
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
38
26
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -41,11 +29,13 @@ export declare class NgtsText3D {
|
|
|
41
29
|
matrixAutoUpdate?: boolean | undefined;
|
|
42
30
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
43
31
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
32
|
+
visible?: boolean | undefined;
|
|
44
33
|
castShadow?: boolean | undefined;
|
|
45
34
|
receiveShadow?: boolean | undefined;
|
|
46
35
|
frustumCulled?: boolean | undefined;
|
|
47
36
|
renderOrder?: number | undefined;
|
|
48
37
|
animations?: import("three").AnimationClip[] | undefined;
|
|
38
|
+
userData?: Record<string, any> | undefined;
|
|
49
39
|
customDepthMaterial?: import("three").Material | undefined;
|
|
50
40
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
51
41
|
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
@@ -91,10 +81,20 @@ export declare class NgtsText3D {
|
|
|
91
81
|
updateMatrix?: (() => void) | undefined;
|
|
92
82
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
93
83
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
84
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
94
85
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
95
86
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
96
87
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>) => boolean) | undefined;
|
|
97
88
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
89
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
90
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
91
|
+
readonly isMesh?: true | undefined;
|
|
92
|
+
morphTargetInfluences?: number[] | undefined;
|
|
93
|
+
morphTargetDictionary?: {
|
|
94
|
+
[key: string]: number;
|
|
95
|
+
} | undefined;
|
|
96
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
97
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
98
98
|
position: import("angular-three").NgtVector3;
|
|
99
99
|
up: import("angular-three").NgtVector3;
|
|
100
100
|
scale: import("angular-three").NgtVector3;
|
|
@@ -105,27 +105,15 @@ export declare class NgtsText3D {
|
|
|
105
105
|
dispose: (() => void) | null;
|
|
106
106
|
raycast: import("three").Object3D["raycast"] | null;
|
|
107
107
|
}> & NgtsText3DOptions, "" | Partial<Partial<{
|
|
108
|
-
name?: string | undefined;
|
|
109
|
-
visible?: boolean | undefined;
|
|
110
|
-
userData?: Record<string, any> | undefined;
|
|
111
108
|
addEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
112
109
|
removeEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
113
110
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
114
111
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
115
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
116
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
117
|
-
readonly isMesh?: true | undefined;
|
|
118
|
-
readonly type?: string | undefined;
|
|
119
|
-
morphTargetInfluences?: number[] | undefined;
|
|
120
|
-
morphTargetDictionary?: {
|
|
121
|
-
[key: string]: number;
|
|
122
|
-
} | undefined;
|
|
123
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
124
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
125
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
126
112
|
readonly isObject3D?: true | undefined;
|
|
127
113
|
readonly id?: number | undefined;
|
|
128
114
|
uuid?: string | undefined;
|
|
115
|
+
name?: string | undefined;
|
|
116
|
+
readonly type?: string | undefined;
|
|
129
117
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
130
118
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
131
119
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -134,11 +122,13 @@ export declare class NgtsText3D {
|
|
|
134
122
|
matrixAutoUpdate?: boolean | undefined;
|
|
135
123
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
136
124
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
125
|
+
visible?: boolean | undefined;
|
|
137
126
|
castShadow?: boolean | undefined;
|
|
138
127
|
receiveShadow?: boolean | undefined;
|
|
139
128
|
frustumCulled?: boolean | undefined;
|
|
140
129
|
renderOrder?: number | undefined;
|
|
141
130
|
animations?: import("three").AnimationClip[] | undefined;
|
|
131
|
+
userData?: Record<string, any> | undefined;
|
|
142
132
|
customDepthMaterial?: import("three").Material | undefined;
|
|
143
133
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
144
134
|
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
@@ -184,10 +174,20 @@ export declare class NgtsText3D {
|
|
|
184
174
|
updateMatrix?: (() => void) | undefined;
|
|
185
175
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
186
176
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
177
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
187
178
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
188
179
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
189
180
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>) => boolean) | undefined;
|
|
190
181
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
182
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
183
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
184
|
+
readonly isMesh?: true | undefined;
|
|
185
|
+
morphTargetInfluences?: number[] | undefined;
|
|
186
|
+
morphTargetDictionary?: {
|
|
187
|
+
[key: string]: number;
|
|
188
|
+
} | undefined;
|
|
189
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
190
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
191
191
|
position: import("angular-three").NgtVector3;
|
|
192
192
|
up: import("angular-three").NgtVector3;
|
|
193
193
|
scale: import("angular-three").NgtVector3;
|
|
@@ -199,27 +199,15 @@ export declare class NgtsText3D {
|
|
|
199
199
|
raycast: import("three").Object3D["raycast"] | null;
|
|
200
200
|
}> & NgtsText3DOptions>>;
|
|
201
201
|
protected parameters: import("@angular/core").Signal<Omit<Partial<{
|
|
202
|
-
name?: string | undefined;
|
|
203
|
-
visible?: boolean | undefined;
|
|
204
|
-
userData?: Record<string, any> | undefined;
|
|
205
202
|
addEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
206
203
|
removeEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
207
204
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
208
205
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
209
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
210
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
211
|
-
readonly isMesh?: true | undefined;
|
|
212
|
-
readonly type?: string | undefined;
|
|
213
|
-
morphTargetInfluences?: number[] | undefined;
|
|
214
|
-
morphTargetDictionary?: {
|
|
215
|
-
[key: string]: number;
|
|
216
|
-
} | undefined;
|
|
217
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
218
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
219
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
220
206
|
readonly isObject3D?: true | undefined;
|
|
221
207
|
readonly id?: number | undefined;
|
|
222
208
|
uuid?: string | undefined;
|
|
209
|
+
name?: string | undefined;
|
|
210
|
+
readonly type?: string | undefined;
|
|
223
211
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
224
212
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
225
213
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -228,11 +216,13 @@ export declare class NgtsText3D {
|
|
|
228
216
|
matrixAutoUpdate?: boolean | undefined;
|
|
229
217
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
230
218
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
219
|
+
visible?: boolean | undefined;
|
|
231
220
|
castShadow?: boolean | undefined;
|
|
232
221
|
receiveShadow?: boolean | undefined;
|
|
233
222
|
frustumCulled?: boolean | undefined;
|
|
234
223
|
renderOrder?: number | undefined;
|
|
235
224
|
animations?: import("three").AnimationClip[] | undefined;
|
|
225
|
+
userData?: Record<string, any> | undefined;
|
|
236
226
|
customDepthMaterial?: import("three").Material | undefined;
|
|
237
227
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
238
228
|
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
@@ -278,10 +268,20 @@ export declare class NgtsText3D {
|
|
|
278
268
|
updateMatrix?: (() => void) | undefined;
|
|
279
269
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
280
270
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
271
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
281
272
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
282
273
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
283
274
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>) => boolean) | undefined;
|
|
284
275
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
276
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
277
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
278
|
+
readonly isMesh?: true | undefined;
|
|
279
|
+
morphTargetInfluences?: number[] | undefined;
|
|
280
|
+
morphTargetDictionary?: {
|
|
281
|
+
[key: string]: number;
|
|
282
|
+
} | undefined;
|
|
283
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
284
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
285
285
|
position: import("angular-three").NgtVector3;
|
|
286
286
|
up: import("angular-three").NgtVector3;
|
|
287
287
|
scale: import("angular-three").NgtVector3;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "angular-three-soba",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -51,10 +51,6 @@
|
|
|
51
51
|
"types": "./cameras/index.d.ts",
|
|
52
52
|
"default": "./fesm2022/angular-three-soba-cameras.mjs"
|
|
53
53
|
},
|
|
54
|
-
"./abstractions": {
|
|
55
|
-
"types": "./abstractions/index.d.ts",
|
|
56
|
-
"default": "./fesm2022/angular-three-soba-abstractions.mjs"
|
|
57
|
-
},
|
|
58
54
|
"./controls": {
|
|
59
55
|
"types": "./controls/index.d.ts",
|
|
60
56
|
"default": "./fesm2022/angular-three-soba-controls.mjs"
|
|
@@ -63,6 +59,10 @@
|
|
|
63
59
|
"types": "./gizmos/index.d.ts",
|
|
64
60
|
"default": "./fesm2022/angular-three-soba-gizmos.mjs"
|
|
65
61
|
},
|
|
62
|
+
"./abstractions": {
|
|
63
|
+
"types": "./abstractions/index.d.ts",
|
|
64
|
+
"default": "./fesm2022/angular-three-soba-abstractions.mjs"
|
|
65
|
+
},
|
|
66
66
|
"./materials": {
|
|
67
67
|
"types": "./materials/index.d.ts",
|
|
68
68
|
"default": "./fesm2022/angular-three-soba-materials.mjs"
|