@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.
@@ -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.transform
110
+ * const current = avatarView.avatarTransform
111
111
  *
112
112
  * // Set transform
113
- * avatarView.transform = { x: 0.5, y: 0, scale: 2.0 }
113
+ * avatarView.avatarTransform = { x: 0.5, y: 0, scale: 2.0 }
114
114
  */
115
- get transform(): {
115
+ get avatarTransform(): {
116
116
  x: number;
117
117
  y: number;
118
118
  scale: number;
119
119
  };
120
- set transform(value: {
120
+ set avatarTransform(value: {
121
121
  x: number;
122
122
  y: number;
123
123
  scale: number;