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.vertical

Switch to Manual
public var vertical: bool;

Description

Should vertical scrolling be enabled?

#pragma strict
// Required when Using UI elements.
public var myScrollRect;
public function Start() {
	// Is Vertical scrolling enabled?
	if (myScrollRect.vertical == true) {
		Debug.Log("Vertical Scrolling is Enabled!");
	}
}