@spatialwalk/avatarkit 1.0.0-beta.97 → 1.0.0-beta.99
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 +19 -3
- package/dist/{StreamingAudioPlayer-DgV2nt4w.js → StreamingAudioPlayer-CLmftu1c.js} +6 -1
- package/dist/{avatar_core_wasm-9834c91c.wasm → avatar_core_wasm-6656456a.wasm} +0 -0
- package/dist/{avatar_core_wasm-BY3MuXDA.js → avatar_core_wasm-Dci9E9jF.js} +2 -2
- package/dist/core/AvatarController.d.ts +2 -0
- package/dist/core/AvatarView.d.ts +4 -4
- package/dist/{index-DtnIjVSC.js → index-CnV_uOSq.js} +135 -97
- package/dist/index.js +1 -1
- package/dist/types/character-settings.d.ts +6 -0
- package/package.json +1 -1
|
@@ -31,6 +31,8 @@ export declare class AvatarController {
|
|
|
31
31
|
private lastSyncLogTime;
|
|
32
32
|
private lastOutOfBoundsState;
|
|
33
33
|
private isFallbackMode;
|
|
34
|
+
private frameStarvationEvents;
|
|
35
|
+
private isFrameStarved;
|
|
34
36
|
private playbackStuckCheckState;
|
|
35
37
|
private readonly MAX_AUDIO_TIME_ZERO_COUNT;
|
|
36
38
|
private readonly MAX_AUDIO_TIME_STUCK_COUNT;
|
|
@@ -107,17 +107,17 @@ export declare class AvatarView {
|
|
|
107
107
|
*
|
|
108
108
|
* @example
|
|
109
109
|
* // Get current transform
|
|
110
|
-
* const current = avatarView.
|
|
110
|
+
* const current = avatarView.avatarTransform
|
|
111
111
|
*
|
|
112
112
|
* // Set transform
|
|
113
|
-
* avatarView.
|
|
113
|
+
* avatarView.avatarTransform = { x: 0.5, y: 0, scale: 2.0 }
|
|
114
114
|
*/
|
|
115
|
-
get
|
|
115
|
+
get avatarTransform(): {
|
|
116
116
|
x: number;
|
|
117
117
|
y: number;
|
|
118
118
|
scale: number;
|
|
119
119
|
};
|
|
120
|
-
set
|
|
120
|
+
set avatarTransform(value: {
|
|
121
121
|
x: number;
|
|
122
122
|
y: number;
|
|
123
123
|
scale: number;
|