I tried calling this code on journal OnOpen() but it still behaves the same way, I guess something overrides the code?
Code: Select all
{
Scrollbar scrollBar;
void Awake()
{
scrollBar = this.gameObject.GetComponent<Scrollbar>();
}
public void ScrollTop()
{
scrollBar.value = 1;
}
}