pmndrs / leva

🌋 React-first components GUI

Home Page:https://leva.pmnd.rs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

help in using setter function with folder

rrrepos opened this issue · comments

commented

Hello:

I am using a folder as below:

const r1 = useControls({Blue: folder({
        x: {value: ring1json.position[0], min: -3, max: 3, step:0.1},
        y: {value: ring1json.position[1], min: 0.08, max: 2, step: 0.2},
        z: {value: ring1json.position[2], min: -3, max: 3, step: 0.1},
        move: {value: true}
    })});

I need to disable x, y, z when move is set to false. So I assume I need to use the set function for r1 and update the disable attribute of x, y and z. However, when I am trying to add the set function I get an "object is not iterable error"

I have tried

const [{r1}, setR1] = ...

const[r1, setR1] = ....

What is the correct syntax to get the set function? Thanks