@sage-rsc/talking-head-react 1.0.77 → 1.0.79

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sage-rsc/talking-head-react",
3
- "version": "1.0.77",
3
+ "version": "1.0.79",
4
4
  "description": "A reusable React component for 3D talking avatars with lip-sync and text-to-speech",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",
@@ -349,7 +349,8 @@ class TalkingHead {
349
349
  this.posePropNames = [...names];
350
350
 
351
351
  // Use "side" as the first pose, weight on left leg
352
- this.poseName = "side"; // First pose
352
+ // Note: This will be overridden by gender-specific selection when avatar loads
353
+ this.poseName = "side"; // First pose (default, will be gender-adjusted on avatar load)
353
354
  this.poseWeightOnLeft = true; // Initial weight on left leg
354
355
  this.gesture = null; // Values that override pose properties
355
356
  this.poseCurrentTemplate = this.poseTemplates[this.poseName];