Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

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

ScrollRect.normalizedPosition

Switch to Manual
public var normalizedPosition: Vector2;

Description

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

#pragma strict
// Required when Using UI elements.
public var myScrollRect;
public var myPosition = new Vector2(0.5, 0.5);
public function Start() {
	//Change the current scroll position.
	myScrollRect.normalizedPosition = myPosition;
}