v4.3.6
remotion-dev/remotionv4.3.6Feb 13, 2026by juliangarnier
AI Summary
This release fixes a critical bug in the Auto Layout component where layout animations were not properly syncing with scroll events.
Key Highlights
- Fixed Auto Layout not properly synced with onScroll.
- Enabled controlling layout animations via scroll events.
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,
})
});
```