shop-components 0.4.29 → 0.4.31
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/dist/dev/playground/index-view-capture.d.ts +0 -0
- package/dist/dev/src/amr.d.ts +2 -0
- package/dist/dev/src/scene.d.ts +3 -0
- package/dist/shop-components.cjs +23 -23
- package/dist/shop-components.mjs +1383 -1295
- package/package.json +1 -1
|
File without changes
|
package/dist/dev/src/amr.d.ts
CHANGED
|
@@ -82,6 +82,7 @@ export declare class Amr extends Object3D {
|
|
|
82
82
|
private _shapeKeyTimer;
|
|
83
83
|
private _shapeKeyCache;
|
|
84
84
|
private _shapekeyRules;
|
|
85
|
+
shapeKeyDirty: boolean;
|
|
85
86
|
private _materialsCache;
|
|
86
87
|
opacityCache: undefined | number;
|
|
87
88
|
actions: string[];
|
|
@@ -201,4 +202,5 @@ export declare class Amr extends Object3D {
|
|
|
201
202
|
pauseAction(name: string): void;
|
|
202
203
|
stopAction(name: string, fadeOut?: number): Promise<void>;
|
|
203
204
|
stopAllActions(fadeOut?: number): Promise<void>;
|
|
205
|
+
playVideos(): void;
|
|
204
206
|
}
|
package/dist/dev/src/scene.d.ts
CHANGED
|
@@ -108,6 +108,7 @@ export declare class Scene3D {
|
|
|
108
108
|
private _lastTarget;
|
|
109
109
|
get usePathTracing(): boolean;
|
|
110
110
|
private _clearAmrContent;
|
|
111
|
+
private _invalidateMorphGeometries;
|
|
111
112
|
private _shadowMode;
|
|
112
113
|
get shadowMode(): boolean;
|
|
113
114
|
set shadowMode(use: boolean);
|
|
@@ -179,6 +180,7 @@ export interface TriViewCaptureView {
|
|
|
179
180
|
plane: TriViewCapturePlane;
|
|
180
181
|
mode?: 'orthographic' | 'perspective';
|
|
181
182
|
fov?: number;
|
|
183
|
+
useFitDirection?: boolean;
|
|
182
184
|
}
|
|
183
185
|
export interface TriViewCaptureOptions {
|
|
184
186
|
size?: TriViewCaptureSize;
|
|
@@ -223,6 +225,7 @@ export declare class TriViewCapture {
|
|
|
223
225
|
private computeBounds;
|
|
224
226
|
private configureCamera;
|
|
225
227
|
private getPerspectiveDirection;
|
|
228
|
+
private getPerspectiveTargetZOffset;
|
|
226
229
|
private storeRendererState;
|
|
227
230
|
private applyRendererState;
|
|
228
231
|
private restoreRendererState;
|