Skip to content

Instantly share code, notes, and snippets.

@Moe-Baker
Created May 16, 2019 14:23
Show Gist options
  • Save Moe-Baker/e4b584036898405a0429538df2834f15 to your computer and use it in GitHub Desktop.
Save Moe-Baker/e4b584036898405a0429538df2834f15 to your computer and use it in GitHub Desktop.
public Scrollbar scrollbar;
void Start()
{
scrollbar.onValueChanged.AddListener(onValueChanged);
}
void onValueChanged(float value)
{
Debug.Log("New Value is " + value)!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment