@spatialwalk/avatarkit 1.0.0-beta.83 → 1.0.0-beta.84
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/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.0-beta.84] - 2026-03-03
|
|
9
|
+
|
|
10
|
+
### 🐛 Bugfixes
|
|
11
|
+
- **End-Transition Continuity** - Fixed the visual jump after conversation end transition by resetting idle frame cursor when returning to `Idle` state
|
|
12
|
+
|
|
8
13
|
## [1.0.0-beta.83] - 2026-03-03
|
|
9
14
|
|
|
10
15
|
### 🐛 Bugfixes
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var __defProp = Object.defineProperty;
|
|
2
2
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3
3
|
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
4
|
-
import { A as APP_CONFIG, l as logger, e as errorToMessage, a as logEvent } from "./index-
|
|
4
|
+
import { A as APP_CONFIG, l as logger, e as errorToMessage, a as logEvent } from "./index-BNATNpKA.js";
|
|
5
5
|
class StreamingAudioPlayer {
|
|
6
6
|
// Mark if AudioContext is being resumed, avoid concurrent resume requests
|
|
7
7
|
constructor(options) {
|
|
@@ -9491,7 +9491,7 @@ const _AnimationPlayer = class _AnimationPlayer {
|
|
|
9491
9491
|
if (this.streamingPlayer) {
|
|
9492
9492
|
return;
|
|
9493
9493
|
}
|
|
9494
|
-
const { StreamingAudioPlayer } = await import("./StreamingAudioPlayer-
|
|
9494
|
+
const { StreamingAudioPlayer } = await import("./StreamingAudioPlayer-CCQgsR1j.js");
|
|
9495
9495
|
const { AvatarSDK: AvatarSDK2 } = await Promise.resolve().then(() => AvatarSDK$1);
|
|
9496
9496
|
const audioFormat = AvatarSDK2.getAudioFormat();
|
|
9497
9497
|
this.streamingPlayer = new StreamingAudioPlayer({
|
|
@@ -11220,7 +11220,7 @@ class AvatarSDK {
|
|
|
11220
11220
|
}
|
|
11221
11221
|
__publicField(AvatarSDK, "_isInitialized", false);
|
|
11222
11222
|
__publicField(AvatarSDK, "_configuration", null);
|
|
11223
|
-
__publicField(AvatarSDK, "_version", "1.0.0-beta.
|
|
11223
|
+
__publicField(AvatarSDK, "_version", "1.0.0-beta.84");
|
|
11224
11224
|
__publicField(AvatarSDK, "_avatarCore", null);
|
|
11225
11225
|
__publicField(AvatarSDK, "_dynamicSdkConfig", null);
|
|
11226
11226
|
const AvatarSDK$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -16806,6 +16806,7 @@ class AvatarView {
|
|
|
16806
16806
|
this.endTransitionFrames = [];
|
|
16807
16807
|
this.isConversationActive = false;
|
|
16808
16808
|
this.currentPlayingFrame = null;
|
|
16809
|
+
this.idleCurrentFrameIndex = 0;
|
|
16809
16810
|
}
|
|
16810
16811
|
}
|
|
16811
16812
|
/**
|
package/dist/index.js
CHANGED
package/package.json
CHANGED