v4.3.6

elebumm/RedditVideoMakerBotv4.3.6Feb 13, 2026by juliangarnier

AI Summary

A maintenance release that fixes an auto layout synchronization issue affecting scroll-driven animations.

Key Highlights

  • Fix for auto layout synchronization with onScroll
  • Enables proper control of layout animations

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,
  })
});
```