Releases: cocopon/tweakpane
Releases · cocopon/tweakpane
2.1.1
2.1.0
2.0.1
2.0.0
The second major version of Tweakpane! Lots of refactoring, mainly for the plugin system, and some breaking changes.
Summary
Migration from 1.x
count
option ofaddMonitor()
was removed:
UsebufferSize
instead.- The first argument of the event handler was changed:
// 1.x pane.addInput(params, 'key').on('click', (value) => { console.log(value); }); // 2.0.0 pane.addInput(params, 'key').on('click', (ev) => { console.log(ev.value); });
1.6.1
1.6.0
- Added support for Point/Vector 3D input 🌐 (#102)
- Added
lineCount
option to monitors - Improved initial color mode of color picker (#144)
- Refactored file size of the default theme
- Fixed duplicated change events for Color and Point2D (#120)
- Fixed a small layout issue in some environment
- Huge refactoring for preparing for plugin system (#78)