You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fields that are created are named after property. Can i set them to a custom string?
I want to have string variable for different languages. I also need english string to be capitalized, Enabled, Bias, Intensity... without changing property names.
The text was updated successfully, but these errors were encountered:
Hmm, perhaps I'm misunderstanding the question, but appears to work for me on the latest dat.gui (0.7.9). Here's a JSFiddle example where I've renamed the gui params to Foo, Bar, Baz.
const saoFolder = gui.addFolder('SAO'); saoFolder.add(saoParams, 'enabled'); saoFolder.add(saoParams, 'bias', -2, 2); saoFolder.add(saoParams, 'intensity', 0, 1.0);
Fields that are created are named after property. Can i set them to a custom string?
I want to have string variable for different languages. I also need english string to be capitalized, Enabled, Bias, Intensity... without changing property names.
The text was updated successfully, but these errors were encountered: