angular-three-soba 4.2.1 → 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.
- package/fesm2022/angular-three-soba-abstractions.mjs +98 -98
- package/fesm2022/angular-three-soba-abstractions.mjs.map +1 -1
- package/fesm2022/angular-three-soba-cameras.mjs +26 -26
- package/fesm2022/angular-three-soba-cameras.mjs.map +1 -1
- package/fesm2022/angular-three-soba-controls.mjs +32 -32
- package/fesm2022/angular-three-soba-controls.mjs.map +1 -1
- package/fesm2022/angular-three-soba-gizmos.mjs +119 -119
- package/fesm2022/angular-three-soba-gizmos.mjs.map +1 -1
- package/fesm2022/angular-three-soba-loaders.mjs +6 -6
- package/fesm2022/angular-three-soba-loaders.mjs.map +1 -1
- package/fesm2022/angular-three-soba-materials.mjs +75 -75
- package/fesm2022/angular-three-soba-materials.mjs.map +1 -1
- package/fesm2022/angular-three-soba-misc.mjs +70 -70
- package/fesm2022/angular-three-soba-misc.mjs.map +1 -1
- package/fesm2022/angular-three-soba-performances.mjs +67 -67
- package/fesm2022/angular-three-soba-performances.mjs.map +1 -1
- package/fesm2022/angular-three-soba-staging.mjs +257 -257
- package/fesm2022/angular-three-soba-staging.mjs.map +1 -1
- package/fesm2022/angular-three-soba-stats.mjs +5 -5
- package/fesm2022/angular-three-soba-stats.mjs.map +1 -1
- package/package.json +3 -2
- package/types/angular-three-soba-misc.d.ts +6 -1
- package/types/angular-three-soba-staging.d.ts +1 -1
|
@@ -34,23 +34,23 @@ class NgtsCustomShaderMaterial {
|
|
|
34
34
|
/**
|
|
35
35
|
* The base Three.js material to extend. Can be a material instance, material class, or ElementRef to a material.
|
|
36
36
|
*/
|
|
37
|
-
this.baseMaterial = input.required(...(ngDevMode ? [{ debugName: "baseMaterial" }] : []));
|
|
37
|
+
this.baseMaterial = input.required(...(ngDevMode ? [{ debugName: "baseMaterial" }] : /* istanbul ignore next */ []));
|
|
38
38
|
/**
|
|
39
39
|
* How to attach the material to its parent object.
|
|
40
40
|
* @default 'material'
|
|
41
41
|
*/
|
|
42
|
-
this.attach = input('material', ...(ngDevMode ? [{ debugName: "attach" }] : []));
|
|
42
|
+
this.attach = input('material', ...(ngDevMode ? [{ debugName: "attach" }] : /* istanbul ignore next */ []));
|
|
43
43
|
/**
|
|
44
44
|
* Configuration options for the custom shader material including vertex/fragment shaders,
|
|
45
45
|
* uniforms, and cache key.
|
|
46
46
|
*/
|
|
47
|
-
this.options = input({}, ...(ngDevMode ? [{ debugName: "options" }] : []));
|
|
47
|
+
this.options = input({}, ...(ngDevMode ? [{ debugName: "options" }] : /* istanbul ignore next */ []));
|
|
48
48
|
/** Material parameters excluding shader-specific options. */
|
|
49
49
|
this.parameters = omit(this.options, ['fragmentShader', 'vertexShader', 'uniforms', 'cacheKey']);
|
|
50
50
|
this.base = computed(() => {
|
|
51
51
|
const baseMaterial = this.baseMaterial();
|
|
52
52
|
return is.ref(baseMaterial) ? baseMaterial.nativeElement : baseMaterial;
|
|
53
|
-
}, ...(ngDevMode ? [{ debugName: "base" }] : []));
|
|
53
|
+
}, ...(ngDevMode ? [{ debugName: "base" }] : /* istanbul ignore next */ []));
|
|
54
54
|
this.fragmentShader = pick(this.options, 'fragmentShader');
|
|
55
55
|
this.vertexShader = pick(this.options, 'vertexShader');
|
|
56
56
|
this.uniforms = pick(this.options, 'uniforms');
|
|
@@ -76,20 +76,20 @@ class NgtsCustomShaderMaterial {
|
|
|
76
76
|
uniforms,
|
|
77
77
|
cacheKey,
|
|
78
78
|
});
|
|
79
|
-
}, ...(ngDevMode ? [{ debugName: "material" }] : []));
|
|
79
|
+
}, ...(ngDevMode ? [{ debugName: "material" }] : /* istanbul ignore next */ []));
|
|
80
80
|
effect((onCleanup) => {
|
|
81
81
|
const material = this.material();
|
|
82
82
|
onCleanup(() => material.dispose());
|
|
83
83
|
});
|
|
84
84
|
}
|
|
85
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
86
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.
|
|
85
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: NgtsCustomShaderMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
86
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.9", type: NgtsCustomShaderMaterial, isStandalone: true, selector: "ngts-custom-shader-material", inputs: { baseMaterial: { classPropertyName: "baseMaterial", publicName: "baseMaterial", isSignal: true, isRequired: true, transformFunction: null }, attach: { classPropertyName: "attach", publicName: "attach", isSignal: true, isRequired: false, transformFunction: null }, options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
|
|
87
87
|
<ngt-primitive *args="[material()]" [attach]="attach()" [parameters]="parameters()">
|
|
88
88
|
<ng-content />
|
|
89
89
|
</ngt-primitive>
|
|
90
90
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgtArgs, selector: "ng-template[args]", inputs: ["args"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
91
91
|
}
|
|
92
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
92
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: NgtsCustomShaderMaterial, decorators: [{
|
|
93
93
|
type: Component,
|
|
94
94
|
args: [{
|
|
95
95
|
selector: 'ngts-custom-shader-material',
|
|
@@ -125,11 +125,11 @@ class NgtsMeshDistortMaterial {
|
|
|
125
125
|
* How to attach the material to its parent object.
|
|
126
126
|
* @default 'material'
|
|
127
127
|
*/
|
|
128
|
-
this.attach = input('material', ...(ngDevMode ? [{ debugName: "attach" }] : []));
|
|
128
|
+
this.attach = input('material', ...(ngDevMode ? [{ debugName: "attach" }] : /* istanbul ignore next */ []));
|
|
129
129
|
/**
|
|
130
130
|
* Configuration options for the distort material.
|
|
131
131
|
*/
|
|
132
|
-
this.options = input(defaultOptions$5, { ...(ngDevMode ? { debugName: "options" } : {}), transform: mergeInputs(defaultOptions$5) });
|
|
132
|
+
this.options = input(defaultOptions$5, { ...(ngDevMode ? { debugName: "options" } : /* istanbul ignore next */ {}), transform: mergeInputs(defaultOptions$5) });
|
|
133
133
|
/** Parameters excluding animation speed. */
|
|
134
134
|
this.parameters = omit(this.options, ['speed']);
|
|
135
135
|
/** The underlying MeshDistortMaterial instance. */
|
|
@@ -140,14 +140,14 @@ class NgtsMeshDistortMaterial {
|
|
|
140
140
|
this.material.time = clock.elapsedTime * this.speed();
|
|
141
141
|
});
|
|
142
142
|
}
|
|
143
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
144
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.
|
|
143
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: NgtsMeshDistortMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
144
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.9", type: NgtsMeshDistortMaterial, isStandalone: true, selector: "ngts-mesh-distort-material", inputs: { attach: { classPropertyName: "attach", publicName: "attach", isSignal: true, isRequired: false, transformFunction: null }, options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
|
|
145
145
|
<ngt-primitive *args="[material]" [attach]="attach()" [parameters]="parameters()">
|
|
146
146
|
<ng-content />
|
|
147
147
|
</ngt-primitive>
|
|
148
148
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgtArgs, selector: "ng-template[args]", inputs: ["args"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
149
149
|
}
|
|
150
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
150
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: NgtsMeshDistortMaterial, decorators: [{
|
|
151
151
|
type: Component,
|
|
152
152
|
args: [{
|
|
153
153
|
selector: 'ngts-mesh-distort-material',
|
|
@@ -172,15 +172,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.6", ngImpor
|
|
|
172
172
|
class ManagePortalScene {
|
|
173
173
|
constructor() {
|
|
174
174
|
/** Whether events should be enabled inside the portal. */
|
|
175
|
-
this.events = input(...(ngDevMode ? [undefined, { debugName: "events" }] : []));
|
|
175
|
+
this.events = input(...(ngDevMode ? [undefined, { debugName: "events" }] : /* istanbul ignore next */ []));
|
|
176
176
|
/** Reference to the root/world scene for blending. */
|
|
177
|
-
this.rootScene = input.required(...(ngDevMode ? [{ debugName: "rootScene" }] : []));
|
|
177
|
+
this.rootScene = input.required(...(ngDevMode ? [{ debugName: "rootScene" }] : /* istanbul ignore next */ []));
|
|
178
178
|
/** Reference to the portal material for accessing blend values. */
|
|
179
|
-
this.material = input.required(...(ngDevMode ? [{ debugName: "material" }] : []));
|
|
179
|
+
this.material = input.required(...(ngDevMode ? [{ debugName: "material" }] : /* istanbul ignore next */ []));
|
|
180
180
|
/** Render priority for the portal scene. */
|
|
181
|
-
this.priority = input.required(...(ngDevMode ? [{ debugName: "priority" }] : []));
|
|
181
|
+
this.priority = input.required(...(ngDevMode ? [{ debugName: "priority" }] : /* istanbul ignore next */ []));
|
|
182
182
|
/** Whether the portal uses world-space coordinates. */
|
|
183
|
-
this.worldUnits = input.required(...(ngDevMode ? [{ debugName: "worldUnits" }] : []));
|
|
183
|
+
this.worldUnits = input.required(...(ngDevMode ? [{ debugName: "worldUnits" }] : /* istanbul ignore next */ []));
|
|
184
184
|
const renderTextureStore = injectStore();
|
|
185
185
|
const buffer1 = fbo();
|
|
186
186
|
const buffer2 = fbo();
|
|
@@ -214,7 +214,7 @@ class ManagePortalScene {
|
|
|
214
214
|
}`,
|
|
215
215
|
}));
|
|
216
216
|
return [quad, blend];
|
|
217
|
-
}, ...(ngDevMode ? [{ debugName: "fullScreenQuad" }] : []));
|
|
217
|
+
}, ...(ngDevMode ? [{ debugName: "fullScreenQuad" }] : /* istanbul ignore next */ []));
|
|
218
218
|
effect(() => {
|
|
219
219
|
renderTextureStore.scene().matrixAutoUpdate = false;
|
|
220
220
|
});
|
|
@@ -271,10 +271,10 @@ class ManagePortalScene {
|
|
|
271
271
|
}
|
|
272
272
|
}, { priority: this.priority });
|
|
273
273
|
}
|
|
274
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
275
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "21.
|
|
274
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ManagePortalScene, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
275
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "21.2.9", type: ManagePortalScene, isStandalone: true, selector: "ngts-manage-portal-scene", inputs: { events: { classPropertyName: "events", publicName: "events", isSignal: true, isRequired: false, transformFunction: null }, rootScene: { classPropertyName: "rootScene", publicName: "rootScene", isSignal: true, isRequired: true, transformFunction: null }, material: { classPropertyName: "material", publicName: "material", isSignal: true, isRequired: true, transformFunction: null }, priority: { classPropertyName: "priority", publicName: "priority", isSignal: true, isRequired: true, transformFunction: null }, worldUnits: { classPropertyName: "worldUnits", publicName: "worldUnits", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0 }); }
|
|
276
276
|
}
|
|
277
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
277
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ManagePortalScene, decorators: [{
|
|
278
278
|
type: Directive,
|
|
279
279
|
args: [{ selector: 'ngts-manage-portal-scene' }]
|
|
280
280
|
}], ctorParameters: () => [], propDecorators: { events: [{ type: i0.Input, args: [{ isSignal: true, alias: "events", required: false }] }], rootScene: [{ type: i0.Input, args: [{ isSignal: true, alias: "rootScene", required: true }] }], material: [{ type: i0.Input, args: [{ isSignal: true, alias: "material", required: true }] }], priority: [{ type: i0.Input, args: [{ isSignal: true, alias: "priority", required: true }] }], worldUnits: [{ type: i0.Input, args: [{ isSignal: true, alias: "worldUnits", required: true }] }] } });
|
|
@@ -314,11 +314,11 @@ class NgtsMeshPortalMaterial {
|
|
|
314
314
|
* How to attach the material to its parent object.
|
|
315
315
|
* @default 'material'
|
|
316
316
|
*/
|
|
317
|
-
this.attach = input('material', ...(ngDevMode ? [{ debugName: "attach" }] : []));
|
|
317
|
+
this.attach = input('material', ...(ngDevMode ? [{ debugName: "attach" }] : /* istanbul ignore next */ []));
|
|
318
318
|
/**
|
|
319
319
|
* Configuration options for the portal material.
|
|
320
320
|
*/
|
|
321
|
-
this.options = input(defaultOptions$4, { ...(ngDevMode ? { debugName: "options" } : {}), transform: mergeInputs(defaultOptions$4) });
|
|
321
|
+
this.options = input(defaultOptions$4, { ...(ngDevMode ? { debugName: "options" } : /* istanbul ignore next */ {}), transform: mergeInputs(defaultOptions$4) });
|
|
322
322
|
this.parameters = omit(this.options, [
|
|
323
323
|
'blur',
|
|
324
324
|
'resolution',
|
|
@@ -341,11 +341,11 @@ class NgtsMeshPortalMaterial {
|
|
|
341
341
|
this.materialResolution = computed(() => [
|
|
342
342
|
this.store.size.width() * this.store.viewport.dpr(),
|
|
343
343
|
this.store.size.height() * this.store.viewport.dpr(),
|
|
344
|
-
], ...(ngDevMode ? [{ debugName: "materialResolution" }] : []));
|
|
344
|
+
], ...(ngDevMode ? [{ debugName: "materialResolution" }] : /* istanbul ignore next */ []));
|
|
345
345
|
this.resolution = pick(this.options, 'resolution');
|
|
346
|
-
this.parent = signal(null, ...(ngDevMode ? [{ debugName: "parent" }] : []));
|
|
346
|
+
this.parent = signal(null, ...(ngDevMode ? [{ debugName: "parent" }] : /* istanbul ignore next */ []));
|
|
347
347
|
this.visible = intersect(this.parent, { source: signal(true) });
|
|
348
|
-
this.renderTextureFrames = computed(() => (this.visible() ? Infinity : 0), ...(ngDevMode ? [{ debugName: "renderTextureFrames" }] : []));
|
|
348
|
+
this.renderTextureFrames = computed(() => (this.visible() ? Infinity : 0), ...(ngDevMode ? [{ debugName: "renderTextureFrames" }] : /* istanbul ignore next */ []));
|
|
349
349
|
this.renderTextureCompute = (...args) => {
|
|
350
350
|
const [parent, material] = [this.parent(), this.materialRef().nativeElement];
|
|
351
351
|
if (!parent)
|
|
@@ -364,7 +364,7 @@ class NgtsMeshPortalMaterial {
|
|
|
364
364
|
}
|
|
365
365
|
return;
|
|
366
366
|
};
|
|
367
|
-
this.priority = signal(0, ...(ngDevMode ? [{ debugName: "priority" }] : []));
|
|
367
|
+
this.priority = signal(0, ...(ngDevMode ? [{ debugName: "priority" }] : /* istanbul ignore next */ []));
|
|
368
368
|
extend({ MeshPortalMaterial });
|
|
369
369
|
effect(() => {
|
|
370
370
|
const material = this.materialRef().nativeElement;
|
|
@@ -406,8 +406,8 @@ class NgtsMeshPortalMaterial {
|
|
|
406
406
|
}
|
|
407
407
|
});
|
|
408
408
|
}
|
|
409
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
410
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "21.
|
|
409
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: NgtsMeshPortalMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
410
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "21.2.9", type: NgtsMeshPortalMaterial, isStandalone: true, selector: "ngts-mesh-portal-material", inputs: { attach: { classPropertyName: "attach", publicName: "attach", isSignal: true, isRequired: false, transformFunction: null }, options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: false, transformFunction: null } }, queries: [{ propertyName: "content", first: true, predicate: TemplateRef, descendants: true, isSignal: true }], viewQueries: [{ propertyName: "materialRef", first: true, predicate: ["material"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
411
411
|
<ngt-mesh-portal-material
|
|
412
412
|
#material
|
|
413
413
|
[attach]="attach()"
|
|
@@ -438,7 +438,7 @@ class NgtsMeshPortalMaterial {
|
|
|
438
438
|
</ngt-mesh-portal-material>
|
|
439
439
|
`, isInline: true, dependencies: [{ kind: "component", type: i1.NgtsRenderTextureImpl, selector: "ngts-render-texture", inputs: ["attach", "options"] }, { kind: "directive", type: i1.NgtsRenderTextureContent, selector: "ng-template[renderTextureContent]" }, { kind: "directive", type: ManagePortalScene, selector: "ngts-manage-portal-scene", inputs: ["events", "rootScene", "material", "priority", "worldUnits"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
440
440
|
}
|
|
441
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
441
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: NgtsMeshPortalMaterial, decorators: [{
|
|
442
442
|
type: Component,
|
|
443
443
|
args: [{
|
|
444
444
|
selector: 'ngts-mesh-portal-material',
|
|
@@ -520,11 +520,11 @@ class NgtsMeshReflectorMaterial {
|
|
|
520
520
|
* How to attach the material to its parent object.
|
|
521
521
|
* @default 'material'
|
|
522
522
|
*/
|
|
523
|
-
this.attach = input('material', ...(ngDevMode ? [{ debugName: "attach" }] : []));
|
|
523
|
+
this.attach = input('material', ...(ngDevMode ? [{ debugName: "attach" }] : /* istanbul ignore next */ []));
|
|
524
524
|
/**
|
|
525
525
|
* Configuration options for the reflector material.
|
|
526
526
|
*/
|
|
527
|
-
this.options = input(defaultOptions$3, { ...(ngDevMode ? { debugName: "options" } : {}), transform: mergeInputs(defaultOptions$3) });
|
|
527
|
+
this.options = input(defaultOptions$3, { ...(ngDevMode ? { debugName: "options" } : /* istanbul ignore next */ {}), transform: mergeInputs(defaultOptions$3) });
|
|
528
528
|
this.parameters = omit(this.options, [
|
|
529
529
|
'distortionMap',
|
|
530
530
|
'resolution',
|
|
@@ -542,7 +542,7 @@ class NgtsMeshReflectorMaterial {
|
|
|
542
542
|
]);
|
|
543
543
|
this.store = injectStore();
|
|
544
544
|
/** Reference to the underlying MeshReflectorMaterial element. */
|
|
545
|
-
this.materialRef = viewChild('material', ...(ngDevMode ? [{ debugName: "materialRef" }] : []));
|
|
545
|
+
this.materialRef = viewChild('material', ...(ngDevMode ? [{ debugName: "materialRef" }] : /* istanbul ignore next */ []));
|
|
546
546
|
this.reflectOptions = pick(this.options, [
|
|
547
547
|
'distortionMap',
|
|
548
548
|
'resolution',
|
|
@@ -562,10 +562,10 @@ class NgtsMeshReflectorMaterial {
|
|
|
562
562
|
this.normalizedBlur = computed(() => {
|
|
563
563
|
const blur = this.blur();
|
|
564
564
|
return Array.isArray(blur) ? blur : [blur, blur];
|
|
565
|
-
}, ...(ngDevMode ? [{ debugName: "normalizedBlur" }] : []));
|
|
566
|
-
this.hasBlur = computed(() => this.normalizedBlur()[0] + this.normalizedBlur()[1] > 0, ...(ngDevMode ? [{ debugName: "hasBlur" }] : []));
|
|
567
|
-
this.blurX = computed(() => this.normalizedBlur()[0], ...(ngDevMode ? [{ debugName: "blurX" }] : []));
|
|
568
|
-
this.blurY = computed(() => this.normalizedBlur()[1], ...(ngDevMode ? [{ debugName: "blurY" }] : []));
|
|
565
|
+
}, ...(ngDevMode ? [{ debugName: "normalizedBlur" }] : /* istanbul ignore next */ []));
|
|
566
|
+
this.hasBlur = computed(() => this.normalizedBlur()[0] + this.normalizedBlur()[1] > 0, ...(ngDevMode ? [{ debugName: "hasBlur" }] : /* istanbul ignore next */ []));
|
|
567
|
+
this.blurX = computed(() => this.normalizedBlur()[0], ...(ngDevMode ? [{ debugName: "blurX" }] : /* istanbul ignore next */ []));
|
|
568
|
+
this.blurY = computed(() => this.normalizedBlur()[1], ...(ngDevMode ? [{ debugName: "blurY" }] : /* istanbul ignore next */ []));
|
|
569
569
|
this.reflectorPlane = new THREE.Plane();
|
|
570
570
|
this.normal = new THREE.Vector3();
|
|
571
571
|
this.reflectorWorldPosition = new THREE.Vector3();
|
|
@@ -630,11 +630,11 @@ class NgtsMeshReflectorMaterial {
|
|
|
630
630
|
defines,
|
|
631
631
|
};
|
|
632
632
|
return { fbo1, fbo2, blurPass, reflectorParameters };
|
|
633
|
-
}, ...(ngDevMode ? [{ debugName: "reflectState" }] : []));
|
|
633
|
+
}, ...(ngDevMode ? [{ debugName: "reflectState" }] : /* istanbul ignore next */ []));
|
|
634
634
|
this.definesKey = computed(() => {
|
|
635
635
|
const defines = this.reflectState().reflectorParameters.defines;
|
|
636
636
|
return Object.entries(defines).reduce((acc, [key, value]) => (value != null ? `${acc} ${key}` : acc), '');
|
|
637
|
-
}, ...(ngDevMode ? [{ debugName: "definesKey" }] : []));
|
|
637
|
+
}, ...(ngDevMode ? [{ debugName: "definesKey" }] : /* istanbul ignore next */ []));
|
|
638
638
|
/** The computed MeshReflectorMaterial instance. Recreated when defines change. */
|
|
639
639
|
this.material = computed(() => {
|
|
640
640
|
const prevMaterial = untracked(this.materialRef)?.nativeElement;
|
|
@@ -646,7 +646,7 @@ class NgtsMeshReflectorMaterial {
|
|
|
646
646
|
// tracking defines key so that the material is recreated when the defines change
|
|
647
647
|
this.definesKey();
|
|
648
648
|
return new MeshReflectorMaterial();
|
|
649
|
-
}, ...(ngDevMode ? [{ debugName: "material" }] : []));
|
|
649
|
+
}, ...(ngDevMode ? [{ debugName: "material" }] : /* istanbul ignore next */ []));
|
|
650
650
|
effect(() => {
|
|
651
651
|
const material = this.materialRef()?.nativeElement;
|
|
652
652
|
if (!material)
|
|
@@ -755,14 +755,14 @@ class NgtsMeshReflectorMaterial {
|
|
|
755
755
|
projectionMatrix.elements[10] = this.clipPlane.z + 1.0;
|
|
756
756
|
projectionMatrix.elements[14] = this.clipPlane.w;
|
|
757
757
|
}
|
|
758
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
759
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "21.
|
|
758
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: NgtsMeshReflectorMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
759
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "21.2.9", type: NgtsMeshReflectorMaterial, isStandalone: true, selector: "ngts-mesh-reflector-material", inputs: { attach: { classPropertyName: "attach", publicName: "attach", isSignal: true, isRequired: false, transformFunction: null }, options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "materialRef", first: true, predicate: ["material"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
760
760
|
<ngt-primitive #material *args="[material()]" [attach]="attach()">
|
|
761
761
|
<ng-content />
|
|
762
762
|
</ngt-primitive>
|
|
763
763
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgtArgs, selector: "ng-template[args]", inputs: ["args"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
764
764
|
}
|
|
765
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
765
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: NgtsMeshReflectorMaterial, decorators: [{
|
|
766
766
|
type: Component,
|
|
767
767
|
args: [{
|
|
768
768
|
selector: 'ngts-mesh-reflector-material',
|
|
@@ -807,23 +807,23 @@ class NgtsMeshRefractionMaterial {
|
|
|
807
807
|
* Environment map texture for reflections and refractions.
|
|
808
808
|
* Required for the material to display properly.
|
|
809
809
|
*/
|
|
810
|
-
this.envMap = input.required(...(ngDevMode ? [{ debugName: "envMap" }] : []));
|
|
810
|
+
this.envMap = input.required(...(ngDevMode ? [{ debugName: "envMap" }] : /* istanbul ignore next */ []));
|
|
811
811
|
/**
|
|
812
812
|
* How to attach the material to its parent object.
|
|
813
813
|
* @default 'material'
|
|
814
814
|
*/
|
|
815
|
-
this.attach = input('material', ...(ngDevMode ? [{ debugName: "attach" }] : []));
|
|
815
|
+
this.attach = input('material', ...(ngDevMode ? [{ debugName: "attach" }] : /* istanbul ignore next */ []));
|
|
816
816
|
/**
|
|
817
817
|
* Configuration options for the refraction material.
|
|
818
818
|
*/
|
|
819
|
-
this.options = input(defaultOptions$2, { ...(ngDevMode ? { debugName: "options" } : {}), transform: mergeInputs(defaultOptions$2) });
|
|
819
|
+
this.options = input(defaultOptions$2, { ...(ngDevMode ? { debugName: "options" } : /* istanbul ignore next */ {}), transform: mergeInputs(defaultOptions$2) });
|
|
820
820
|
this.parameters = omit(this.options, ['fastChroma', 'aberrationStrength']);
|
|
821
821
|
this.fastChroma = pick(this.options, 'fastChroma');
|
|
822
822
|
this.aberrationStrength = pick(this.options, 'aberrationStrength');
|
|
823
823
|
/** Reference to the underlying MeshRefractionMaterial element. */
|
|
824
|
-
this.materialRef = viewChild('material', ...(ngDevMode ? [{ debugName: "materialRef" }] : []));
|
|
824
|
+
this.materialRef = viewChild('material', ...(ngDevMode ? [{ debugName: "materialRef" }] : /* istanbul ignore next */ []));
|
|
825
825
|
this.store = injectStore();
|
|
826
|
-
this.resolution = computed(() => [this.store.size.width(), this.store.size.height()], ...(ngDevMode ? [{ debugName: "resolution" }] : []));
|
|
826
|
+
this.resolution = computed(() => [this.store.size.width(), this.store.size.height()], ...(ngDevMode ? [{ debugName: "resolution" }] : /* istanbul ignore next */ []));
|
|
827
827
|
this.defines = computed(() => {
|
|
828
828
|
const _defines = {};
|
|
829
829
|
const [envMap, aberrationStrength, fastChroma] = [
|
|
@@ -853,10 +853,10 @@ class NgtsMeshRefractionMaterial {
|
|
|
853
853
|
if (fastChroma)
|
|
854
854
|
_defines['FAST_CHROMA'] = '';
|
|
855
855
|
return _defines;
|
|
856
|
-
}, ...(ngDevMode ? [{ debugName: "defines" }] : []));
|
|
856
|
+
}, ...(ngDevMode ? [{ debugName: "defines" }] : /* istanbul ignore next */ []));
|
|
857
857
|
this.defineKeys = computed(() => {
|
|
858
858
|
return Object.keys(this.defines()).join(' ');
|
|
859
|
-
}, ...(ngDevMode ? [{ debugName: "defineKeys" }] : []));
|
|
859
|
+
}, ...(ngDevMode ? [{ debugName: "defineKeys" }] : /* istanbul ignore next */ []));
|
|
860
860
|
this.material = computed(() => {
|
|
861
861
|
const prevMaterial = untracked(this.materialRef)?.nativeElement;
|
|
862
862
|
if (prevMaterial) {
|
|
@@ -867,7 +867,7 @@ class NgtsMeshRefractionMaterial {
|
|
|
867
867
|
// track by this.defineKeys
|
|
868
868
|
this.defineKeys();
|
|
869
869
|
return new MeshRefractionMaterial();
|
|
870
|
-
}, ...(ngDevMode ? [{ debugName: "material" }] : []));
|
|
870
|
+
}, ...(ngDevMode ? [{ debugName: "material" }] : /* istanbul ignore next */ []));
|
|
871
871
|
effect(() => {
|
|
872
872
|
const material = this.materialRef()?.nativeElement;
|
|
873
873
|
if (!material)
|
|
@@ -901,8 +901,8 @@ class NgtsMeshRefractionMaterial {
|
|
|
901
901
|
}
|
|
902
902
|
});
|
|
903
903
|
}
|
|
904
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
905
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "21.
|
|
904
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: NgtsMeshRefractionMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
905
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "21.2.9", type: NgtsMeshRefractionMaterial, isStandalone: true, selector: "ngts-mesh-refraction-material", inputs: { envMap: { classPropertyName: "envMap", publicName: "envMap", isSignal: true, isRequired: true, transformFunction: null }, attach: { classPropertyName: "attach", publicName: "attach", isSignal: true, isRequired: false, transformFunction: null }, options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "materialRef", first: true, predicate: ["material"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
906
906
|
<ngt-primitive
|
|
907
907
|
*args="[material()]"
|
|
908
908
|
#material
|
|
@@ -917,7 +917,7 @@ class NgtsMeshRefractionMaterial {
|
|
|
917
917
|
</ngt-primitive>
|
|
918
918
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgtArgs, selector: "ng-template[args]", inputs: ["args"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
919
919
|
}
|
|
920
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
920
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: NgtsMeshRefractionMaterial, decorators: [{
|
|
921
921
|
type: Component,
|
|
922
922
|
args: [{
|
|
923
923
|
selector: 'ngts-mesh-refraction-material',
|
|
@@ -977,11 +977,11 @@ class NgtsMeshTransmissionMaterial {
|
|
|
977
977
|
* How to attach the material to its parent object.
|
|
978
978
|
* @default 'material'
|
|
979
979
|
*/
|
|
980
|
-
this.attach = input('material', ...(ngDevMode ? [{ debugName: "attach" }] : []));
|
|
980
|
+
this.attach = input('material', ...(ngDevMode ? [{ debugName: "attach" }] : /* istanbul ignore next */ []));
|
|
981
981
|
/**
|
|
982
982
|
* Configuration options for the transmission material.
|
|
983
983
|
*/
|
|
984
|
-
this.options = input(defaultOptions$1, { ...(ngDevMode ? { debugName: "options" } : {}), transform: mergeInputs(defaultOptions$1) });
|
|
984
|
+
this.options = input(defaultOptions$1, { ...(ngDevMode ? { debugName: "options" } : /* istanbul ignore next */ {}), transform: mergeInputs(defaultOptions$1) });
|
|
985
985
|
this.parameters = omit(this.options, [
|
|
986
986
|
'buffer',
|
|
987
987
|
'transmissionSampler',
|
|
@@ -1013,12 +1013,12 @@ class NgtsMeshTransmissionMaterial {
|
|
|
1013
1013
|
this.thickness = pick(this.options, 'thickness');
|
|
1014
1014
|
this.side = pick(this.options, 'side');
|
|
1015
1015
|
/** Reference to the underlying MeshTransmissionMaterial element. */
|
|
1016
|
-
this.materialRef = viewChild('material', ...(ngDevMode ? [{ debugName: "materialRef" }] : []));
|
|
1017
|
-
this.backResolution = computed(() => this.backsideResolution() || this.resolution(), ...(ngDevMode ? [{ debugName: "backResolution" }] : []));
|
|
1016
|
+
this.materialRef = viewChild('material', ...(ngDevMode ? [{ debugName: "materialRef" }] : /* istanbul ignore next */ []));
|
|
1017
|
+
this.backResolution = computed(() => this.backsideResolution() || this.resolution(), ...(ngDevMode ? [{ debugName: "backResolution" }] : /* istanbul ignore next */ []));
|
|
1018
1018
|
this.fboBack = fbo(() => ({ width: this.backResolution() }));
|
|
1019
1019
|
this.fboMain = fbo(() => ({ width: this.resolution() }));
|
|
1020
|
-
this.bufferTexture = computed(() => this.buffer() || this.fboMain.texture, ...(ngDevMode ? [{ debugName: "bufferTexture" }] : []));
|
|
1021
|
-
this.anisotropicBlurOption = computed(() => this.anisotropicBlur() || this.anisotropy(), ...(ngDevMode ? [{ debugName: "anisotropicBlurOption" }] : []));
|
|
1020
|
+
this.bufferTexture = computed(() => this.buffer() || this.fboMain.texture, ...(ngDevMode ? [{ debugName: "bufferTexture" }] : /* istanbul ignore next */ []));
|
|
1021
|
+
this.anisotropicBlurOption = computed(() => this.anisotropicBlur() || this.anisotropy(), ...(ngDevMode ? [{ debugName: "anisotropicBlurOption" }] : /* istanbul ignore next */ []));
|
|
1022
1022
|
this.discardMaterial = new MeshDiscardMaterial();
|
|
1023
1023
|
this.material = computed(() => {
|
|
1024
1024
|
const previousMaterial = untracked(this.materialRef)?.nativeElement;
|
|
@@ -1029,7 +1029,7 @@ class NgtsMeshTransmissionMaterial {
|
|
|
1029
1029
|
}
|
|
1030
1030
|
const [samples, transmissionSampler] = [this.samples(), this.transmissionSampler()];
|
|
1031
1031
|
return new MeshTransmissionMaterial({ samples, transmissionSampler });
|
|
1032
|
-
}, ...(ngDevMode ? [{ debugName: "material" }] : []));
|
|
1032
|
+
}, ...(ngDevMode ? [{ debugName: "material" }] : /* istanbul ignore next */ []));
|
|
1033
1033
|
inject(DestroyRef).onDestroy(() => {
|
|
1034
1034
|
const material = this.materialRef()?.nativeElement;
|
|
1035
1035
|
if (material) {
|
|
@@ -1105,8 +1105,8 @@ class NgtsMeshTransmissionMaterial {
|
|
|
1105
1105
|
}
|
|
1106
1106
|
});
|
|
1107
1107
|
}
|
|
1108
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
1109
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "21.
|
|
1108
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: NgtsMeshTransmissionMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1109
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "21.2.9", type: NgtsMeshTransmissionMaterial, isStandalone: true, selector: "ngts-mesh-transmission-material", inputs: { attach: { classPropertyName: "attach", publicName: "attach", isSignal: true, isRequired: false, transformFunction: null }, options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "materialRef", first: true, predicate: ["material"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
1110
1110
|
<ngt-primitive
|
|
1111
1111
|
*args="[material()]"
|
|
1112
1112
|
#material
|
|
@@ -1123,7 +1123,7 @@ class NgtsMeshTransmissionMaterial {
|
|
|
1123
1123
|
</ngt-primitive>
|
|
1124
1124
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgtArgs, selector: "ng-template[args]", inputs: ["args"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1125
1125
|
}
|
|
1126
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
1126
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: NgtsMeshTransmissionMaterial, decorators: [{
|
|
1127
1127
|
type: Component,
|
|
1128
1128
|
args: [{
|
|
1129
1129
|
selector: 'ngts-mesh-transmission-material',
|
|
@@ -1170,11 +1170,11 @@ class NgtsMeshWobbleMaterial {
|
|
|
1170
1170
|
* How to attach the material to its parent object.
|
|
1171
1171
|
* @default 'material'
|
|
1172
1172
|
*/
|
|
1173
|
-
this.attach = input('material', ...(ngDevMode ? [{ debugName: "attach" }] : []));
|
|
1173
|
+
this.attach = input('material', ...(ngDevMode ? [{ debugName: "attach" }] : /* istanbul ignore next */ []));
|
|
1174
1174
|
/**
|
|
1175
1175
|
* Configuration options for the wobble material.
|
|
1176
1176
|
*/
|
|
1177
|
-
this.options = input(defaultOptions, { ...(ngDevMode ? { debugName: "options" } : {}), transform: mergeInputs(defaultOptions) });
|
|
1177
|
+
this.options = input(defaultOptions, { ...(ngDevMode ? { debugName: "options" } : /* istanbul ignore next */ {}), transform: mergeInputs(defaultOptions) });
|
|
1178
1178
|
/** Parameters excluding animation speed. */
|
|
1179
1179
|
this.parameters = omit(this.options, ['speed']);
|
|
1180
1180
|
/** The underlying MeshWobbleMaterial instance. */
|
|
@@ -1185,14 +1185,14 @@ class NgtsMeshWobbleMaterial {
|
|
|
1185
1185
|
material.time = clock.elapsedTime * this.options().speed;
|
|
1186
1186
|
});
|
|
1187
1187
|
}
|
|
1188
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
1189
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.
|
|
1188
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: NgtsMeshWobbleMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1189
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.9", type: NgtsMeshWobbleMaterial, isStandalone: true, selector: "ngts-mesh-wobble-material", inputs: { attach: { classPropertyName: "attach", publicName: "attach", isSignal: true, isRequired: false, transformFunction: null }, options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
|
|
1190
1190
|
<ngt-primitive *args="[material]" [parameters]="parameters()" [attach]="attach()">
|
|
1191
1191
|
<ng-content />
|
|
1192
1192
|
</ngt-primitive>
|
|
1193
1193
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgtArgs, selector: "ng-template[args]", inputs: ["args"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1194
1194
|
}
|
|
1195
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
1195
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: NgtsMeshWobbleMaterial, decorators: [{
|
|
1196
1196
|
type: Component,
|
|
1197
1197
|
args: [{
|
|
1198
1198
|
selector: 'ngts-mesh-wobble-material',
|
|
@@ -1228,23 +1228,23 @@ class NgtsPointMaterial {
|
|
|
1228
1228
|
* How to attach the material to its parent object.
|
|
1229
1229
|
* @default 'material'
|
|
1230
1230
|
*/
|
|
1231
|
-
this.attach = input('material', ...(ngDevMode ? [{ debugName: "attach" }] : []));
|
|
1231
|
+
this.attach = input('material', ...(ngDevMode ? [{ debugName: "attach" }] : /* istanbul ignore next */ []));
|
|
1232
1232
|
/**
|
|
1233
1233
|
* Configuration options for the point material following THREE.PointsMaterialParameters.
|
|
1234
1234
|
*/
|
|
1235
|
-
this.options = input({}, ...(ngDevMode ? [{ debugName: "options" }] : []));
|
|
1235
|
+
this.options = input({}, ...(ngDevMode ? [{ debugName: "options" }] : /* istanbul ignore next */ []));
|
|
1236
1236
|
/** The underlying PointMaterial instance. */
|
|
1237
1237
|
this.material = new PointMaterial(this.options());
|
|
1238
1238
|
inject(DestroyRef).onDestroy(() => this.material.dispose());
|
|
1239
1239
|
}
|
|
1240
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
1241
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.
|
|
1240
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: NgtsPointMaterial, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1241
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.9", type: NgtsPointMaterial, isStandalone: true, selector: "ngts-point-material", inputs: { attach: { classPropertyName: "attach", publicName: "attach", isSignal: true, isRequired: false, transformFunction: null }, options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
|
|
1242
1242
|
<ngt-primitive *args="[material]" [attach]="attach()" [parameters]="options()">
|
|
1243
1243
|
<ng-content />
|
|
1244
1244
|
</ngt-primitive>
|
|
1245
1245
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgtArgs, selector: "ng-template[args]", inputs: ["args"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1246
1246
|
}
|
|
1247
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
1247
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: NgtsPointMaterial, decorators: [{
|
|
1248
1248
|
type: Component,
|
|
1249
1249
|
args: [{
|
|
1250
1250
|
selector: 'ngts-point-material',
|