Unity scrollview无法滚动到结尾

时间:2017-12-08 16:24:22

标签: unity3d unity3d-2dtools

我有一个scrollview.Horizo​​ntal和垂直滚动条被删除,因为它很丑,我有空间限制。

当我将项目填充到滚动视图的内容中时,如图所示 enter image description here

我无法滚动。视图正在移动,但不会滚动。 当我滚动时,只需滚动到某个程度并滚动回原始位置。

可能出现什么问题?

enter image description here

2 个答案:

答案 0 :(得分:0)

  1. 检查是否在“滚动矩形”组件上启用了“垂直”复选框。
  2. 添加ContentSizeFitter后,在内容对象上,需要选择“最小大小”或“首选大小”以使滚动视图内容自动调整大小。不受限制的选项不会驱动高度,因此您的滚动视图不会滚动。

答案 1 :(得分:0)

确保Height对象中的Content参数不等于零:

enter image description here

按播放时会发生什么:

enter image description here

现在让我们将Height设置为大于零的值:

enter image description here

这是我们这次按下播放时得到的内容:

enter image description here

(出现滚动条!)

信用:Unity scrollview can't scroll to the end