Hello.
I made a scrollbar and added this script:
public class ScrollBar : MonoBehaviour
{
void OnValueChanged(float value)
{
print("Value: " + value);
}
}
Now I try to stuff the above function into the scrollbars event list. But it does not show up at all.
I tried it with public, too…didn’t work. I selected the right gameObject and the right script but there only pop up static methods.
What to do here?
Thanks.