angular-three-soba 3.2.2 → 3.2.4
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-controls.mjs +21 -22
- package/fesm2022/angular-three-soba-controls.mjs.map +1 -1
- package/fesm2022/angular-three-soba-staging.mjs +2 -1
- package/fesm2022/angular-three-soba-staging.mjs.map +1 -1
- package/package.json +9 -9
- package/staging/lib/lightformer.d.ts +1 -1
- package/staging/lib/spot-light.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "angular-three-soba",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -47,26 +47,26 @@
|
|
|
47
47
|
"types": "./index.d.ts",
|
|
48
48
|
"default": "./fesm2022/angular-three-soba.mjs"
|
|
49
49
|
},
|
|
50
|
+
"./abstractions": {
|
|
51
|
+
"types": "./abstractions/index.d.ts",
|
|
52
|
+
"default": "./fesm2022/angular-three-soba-abstractions.mjs"
|
|
53
|
+
},
|
|
50
54
|
"./cameras": {
|
|
51
55
|
"types": "./cameras/index.d.ts",
|
|
52
56
|
"default": "./fesm2022/angular-three-soba-cameras.mjs"
|
|
53
57
|
},
|
|
54
|
-
"./controls": {
|
|
55
|
-
"types": "./controls/index.d.ts",
|
|
56
|
-
"default": "./fesm2022/angular-three-soba-controls.mjs"
|
|
57
|
-
},
|
|
58
58
|
"./gizmos": {
|
|
59
59
|
"types": "./gizmos/index.d.ts",
|
|
60
60
|
"default": "./fesm2022/angular-three-soba-gizmos.mjs"
|
|
61
61
|
},
|
|
62
|
-
"./abstractions": {
|
|
63
|
-
"types": "./abstractions/index.d.ts",
|
|
64
|
-
"default": "./fesm2022/angular-three-soba-abstractions.mjs"
|
|
65
|
-
},
|
|
66
62
|
"./materials": {
|
|
67
63
|
"types": "./materials/index.d.ts",
|
|
68
64
|
"default": "./fesm2022/angular-three-soba-materials.mjs"
|
|
69
65
|
},
|
|
66
|
+
"./controls": {
|
|
67
|
+
"types": "./controls/index.d.ts",
|
|
68
|
+
"default": "./fesm2022/angular-three-soba-controls.mjs"
|
|
69
|
+
},
|
|
70
70
|
"./performances": {
|
|
71
71
|
"types": "./performances/index.d.ts",
|
|
72
72
|
"default": "./fesm2022/angular-three-soba-performances.mjs"
|
|
@@ -293,7 +293,7 @@ export declare class NgtsLightformer {
|
|
|
293
293
|
layers: import("angular-three").NgtLayers;
|
|
294
294
|
dispose: (() => void) | null;
|
|
295
295
|
raycast: import("three").Object3D["raycast"] | null;
|
|
296
|
-
}, "scale">> & NgtsLightformerOptions, "scale" | "
|
|
296
|
+
}, "scale">> & NgtsLightformerOptions, "scale" | "target" | "color" | "toneMapped" | "map" | "intensity" | "form">>;
|
|
297
297
|
private intensity;
|
|
298
298
|
private color;
|
|
299
299
|
private target;
|
|
@@ -104,8 +104,8 @@ export declare class NgtsSpotLightShadow {
|
|
|
104
104
|
export declare class NgtsSpotLight {
|
|
105
105
|
protected readonly SpotLightHelper: typeof SpotLightHelper;
|
|
106
106
|
options: import("@angular/core").InputSignalWithTransform<NgtsSpotLightOptions, "" | Partial<NgtsSpotLightOptions>>;
|
|
107
|
-
parameters: import("@angular/core").Signal<Omit<NgtsSpotLightOptions, "
|
|
108
|
-
volumetricOptions: import("@angular/core").Signal<Pick<NgtsSpotLightOptions, "
|
|
107
|
+
parameters: import("@angular/core").Signal<Omit<NgtsSpotLightOptions, "distance" | "opacity" | "color" | "debug" | "depthBuffer" | "angle" | "attenuation" | "anglePower" | "radiusTop" | "radiusBottom" | "volumetric">>;
|
|
108
|
+
volumetricOptions: import("@angular/core").Signal<Pick<NgtsSpotLightOptions, "distance" | "opacity" | "color" | "debug" | "depthBuffer" | "angle" | "attenuation" | "anglePower" | "radiusTop" | "radiusBottom">>;
|
|
109
109
|
spotLight: import("@angular/core").Signal<ElementRef<SpotLight>>;
|
|
110
110
|
debug: import("@angular/core").Signal<boolean | undefined>;
|
|
111
111
|
angle: import("@angular/core").Signal<number | undefined>;
|