[SOLVED] Scrollview problem

So I have the scrollview set up properly and it is working, just not the way I want. What it does is it moves the content down with the scrollbar. What I want however, is for the content to move up, like how scrolling works on the internet. I don’t understand why Unity changed the scroll direction to opposite of the way it’s always been done, but how can I change the scroll direction?

Any help would be greatly appreciated!

– Chris

I created a scrollview and for me, when the vertical scrollbar moves down the content moves up. So when the scrollbar is all the way down, I see the bottom of the content.

Try creating a new scene and simply do Right-click (in Hierarchy) > UI > Scroll View and compare your implementation to that. I would guess the issue is simply something being a child of the wrong object.

1 Like

https://docs.unity3d.com/Manual/script-Scrollbar.html
Look at the direction in the text/image.
I think that’s what you want.

Thanks for the help! I did that and found it to work, so I just copied it from the test scene to my current scene and it worked. I ended up with the same setup I had before, but this time it works. All I figure is I changed something the first time that messed it up.

That doesn’t change the scroll direction, it changes the way the scroller in the scrollbar is moved, but the way the content moves remains the same.

– Chris

Ah okay… Glad ya got it working, anyways =)

1 Like