16
16

More than 5 years have passed since last update.

NGUIのUIScrollViewがずれる

Last updated at Posted at 2014-05-23

UIScrollViewがTopからではなくセンタリングされる場合、UIScrollViewのスクロール位置をresetさせるメソッドを実行する必要がある。

public GameObject ScrollView;

void Start () {
    ScrollView.GetComponentInChildren<UIScrollView>().ResetPosition();
}

マネージャークラスなどのStartメソッドで実行してあげれば良いと思う。

16
16
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
16