Legacy Documentation: Version 5.6 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

ScrollRect.normalizedPosition

public Vector2 normalizedPosition;

Description

The scroll position as a Vector2 between (0,0) and (1,1) with (0,0) being the lower left corner.

using UnityEngine;
using System.Collections;
using UnityEngine.UI;  // Required when Using UI elements.

public class ExampleClass : MonoBehaviour { public ScrollRect myScrollRect; public Vector2 myPosition = new Vector2(0.5, 0.5);

public void Start() { //Change the current scroll position. myScrollRect.normalizedPosition = myPosition; } }