Hi, I am making a ui layout in unity webgl and when i scroll page in unity editor with mouse scroll it works good, but when build on browser it is scrolling very fast. How to do it slow scrolling… Thanks
you could add a control variable so that when compiled under webgl it will auto apply a dampener by multiplying by a number < 1
Should i multiply dampener with ScrollSensitivity ?
well it depends what code you have - but you can just in your code do an if webgl make less by x % etc and slow it down - or even speed it up depending on what you needed
Ok, thanks you.