shop-components 0.1.31 → 0.1.33
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/device-viewer/scene.d.ts +4 -0
- package/dist/shop-components.mjs +758 -742
- package/dist/shop-components.umd.js +61 -61
- package/package.json +1 -1
|
@@ -36,6 +36,8 @@ export declare class Logo {
|
|
|
36
36
|
name: string;
|
|
37
37
|
imageUrl?: string;
|
|
38
38
|
target: Mesh;
|
|
39
|
+
private _timer;
|
|
40
|
+
private _offscreen;
|
|
39
41
|
get imageSize(): {
|
|
40
42
|
width: number;
|
|
41
43
|
height: number;
|
|
@@ -49,6 +51,7 @@ export declare class Logo {
|
|
|
49
51
|
clear(): void;
|
|
50
52
|
change(url?: string, scale?: Vector2, offset?: Vector2): void;
|
|
51
53
|
reset(): void;
|
|
54
|
+
dispose(): void;
|
|
52
55
|
}
|
|
53
56
|
export declare class Skin {
|
|
54
57
|
private _props;
|
|
@@ -72,6 +75,7 @@ export declare class Scene3D {
|
|
|
72
75
|
props: SceneProps;
|
|
73
76
|
stats: Stats;
|
|
74
77
|
scene: Scene;
|
|
78
|
+
overlayScene: Scene;
|
|
75
79
|
renderer: WebGLRenderer;
|
|
76
80
|
private css2dRenderer;
|
|
77
81
|
pathTracer: WebGLPathTracer;
|