If I have a UI control like the image above, it is not friendly on mobile. Therefore, how can I call the related function on the other method? I want to create a slide button to call it.
Thanks
If I have a UI control like the image above, it is not friendly on mobile. Therefore, how can I call the related function on the other method? I want to create a slide button to call it.
Thanks
My problem also.
Can you please explain this sentence in more detail? I’m not sure it’s clear what you are looking for.
I mean, I mean how can I do this style
In this case I would not use dat.gui
at all and develop a custom UI. The idea of using something like dat.gui
is to use it out-of-the-box without performing modifications.
It’s possible to apply styles to its elements though: Styling Dat.GUI (Layer Example).
But I perfectly agree with @Mugen87
Such as:
gui.add( params, 'maxScale', 1, 30 ).name( 'Decal Size' ).onChange( updateDecalSize );
By using CSS is just change the UI style. What I want to do is for mobile-friendly usage.