tweakpane / use-tweaks

🎛️ Tweak React components with Tweakpane
https://codesandbox.io/s/use-tweaks-example-58e02
MIT License
768 stars 23 forks source link

Special treatment for arrays #17

Closed gsimone closed 3 years ago

gsimone commented 4 years ago

Right now tweakpane makes selects from an object like

{
   options: { a: 0, b: 0, c: 0 }
}

But I would like an api like this for useTweaks for simple cases

useTweaks({
   option: ["a", "b", "c"]
})

that would convert it to tweakpane's format.

Keep in mind that the value set by tweakpane is the key, not the value