zakeke-configurator-react 0.1.323 → 0.1.325

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.
@@ -156,6 +156,9 @@ export declare class ZakekeEnvironment {
156
156
  */
157
157
  boot: (parameters: BootParameters | null) => Promise<void>;
158
158
  private buildDeepARSceneGLBUrl;
159
+ stopAllAnimations: () => void;
160
+ hasAnimations: () => boolean;
161
+ playAnimations: () => void;
159
162
  loadSceneFromGlbUrl: (glbUrl: string, sceneConfig: Zakeke.SceneConfig) => Promise<void>;
160
163
  appendViewer: (container: HTMLElement) => void;
161
164
  setHighlightSettings: (settings: {
@@ -163,6 +163,9 @@ export interface Zakeke {
163
163
  zoomIn: () => void;
164
164
  zoomOut: () => void;
165
165
  updateView: (adjustCamera?: boolean) => void;
166
+ stopAllAnimations: () => void;
167
+ hasAnimations: () => boolean;
168
+ playAnimations: () => void;
166
169
  setHighlightSettings: (settings: {
167
170
  color: string;
168
171
  size: number;