shop-components 0.4.6 → 0.4.7
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 +5 -1
- package/dist/shop-components.cjs +21 -21
- package/dist/shop-components.mjs +662 -629
- package/package.json +1 -1
package/dist/dev/src/amr.d.ts
CHANGED
|
@@ -129,11 +129,15 @@ export declare class Amr extends Object3D {
|
|
|
129
129
|
destroy(): void;
|
|
130
130
|
private _currentAction;
|
|
131
131
|
private _pendingFinishedCallback;
|
|
132
|
-
playAction(name: string,
|
|
132
|
+
playAction(name: string, options?: {
|
|
133
|
+
reset?: boolean;
|
|
134
|
+
loop?: boolean;
|
|
133
135
|
timeScale?: number;
|
|
134
136
|
fadeIn?: number;
|
|
135
137
|
fadeOut?: number;
|
|
136
138
|
clampWhenFinished?: boolean;
|
|
137
139
|
}): Promise<void>;
|
|
138
140
|
pauseAction(name: string): void;
|
|
141
|
+
stopAction(name: string, fadeOut?: number): Promise<void>;
|
|
142
|
+
stopAllActions(fadeOut?: number): Promise<void>;
|
|
139
143
|
}
|