v4.3.6

HumanAIGC/EMOv4.3.6Feb 13, 2026by juliangarnier

AI Summary

This release addresses a synchronization issue in the Auto Layout feature, specifically fixing how layout animations interact with scroll events to enable more granular control.

Key Highlights

  • Fixed Auto Layout sync with `onScroll`
  • Enables controlling layout animations via `layout.animate()`
  • Supports `autoplay: onScroll({ sync: true })` syntax

New Features

  • Enables granular control over layout animations using `onScroll` sync

Full Release Notes

## Bug Fixes
- **Auto Layout**
  - Fix auto layout not properly synced with onScroll, allowing controlling layout animations like this:
```js
layout.animate({
  autoplay: onScroll({
    sync: true,
  })
});
```