I’ve got a class with some values that are being held.
I’ve got a UI which is a series of floatfields and checkboxes. I can initiate the UI controls getting the value from the class, but how do I make the changecommand work to be able to set the value of the UI control back to the class?
Below is wrong but that’s what I’m expecting it to be… (from a maxscript background)
chk_aaFilterOn = cmds.checkBox( label=‘AA Filter’, value=lowSettings.aaFilterOn changeCommand=(lowSettings.aaFilterOn = value))
And what’s the same thing for floatfields?
Thanks
Dave