UIScrollViewがTopからではなくセンタリングされる場合、UIScrollViewのスクロール位置をresetさせるメソッドを実行する必要がある。
public GameObject ScrollView;
void Start () {
ScrollView.GetComponentInChildren<UIScrollView>().ResetPosition();
}
マネージャークラスなどのStartメソッドで実行してあげれば良いと思う。
Go to list of users who liked
More than 5 years have passed since last update.
UIScrollViewがTopからではなくセンタリングされる場合、UIScrollViewのスクロール位置をresetさせるメソッドを実行する必要がある。
public GameObject ScrollView;
void Start () {
ScrollView.GetComponentInChildren<UIScrollView>().ResetPosition();
}
マネージャークラスなどのStartメソッドで実行してあげれば良いと思う。
Register as a new user and use Qiita more conveniently
Go to list of users who liked