shop-components 0.4.5 → 0.4.6
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/src/amr.d.ts +3 -0
- package/dist/shop-components.cjs +50 -50
- package/dist/shop-components.mjs +15 -11
- package/package.json +1 -1
- package/dist/test.glb +0 -0
package/dist/dev/src/amr.d.ts
CHANGED
|
@@ -127,9 +127,12 @@ export declare class Amr extends Object3D {
|
|
|
127
127
|
generateSlot(m: Object3D, scene: Object3D): Slot | undefined;
|
|
128
128
|
clean(): void;
|
|
129
129
|
destroy(): void;
|
|
130
|
+
private _currentAction;
|
|
131
|
+
private _pendingFinishedCallback;
|
|
130
132
|
playAction(name: string, reset?: boolean, options?: {
|
|
131
133
|
timeScale?: number;
|
|
132
134
|
fadeIn?: number;
|
|
135
|
+
fadeOut?: number;
|
|
133
136
|
clampWhenFinished?: boolean;
|
|
134
137
|
}): Promise<void>;
|
|
135
138
|
pauseAction(name: string): void;
|