Legacy Documentation: Version 5.4
LanguageEnglish
  • C#
  • JS

Script language

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

MovementType

enumeration

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

A setting for which behavior to use when content moves beyond the confines of its container.

#pragma strict
// Required when Using UI elements.
public var myScrollRect;
public var newScrollBar;
//Called when a button is pressed
if (option == 0) {
	myScrollRect.movementType = ScrollRect.MovementType.Clamped;
}
elseif (option == 1) {
	myScrollRect.movementType = ScrollRect.MovementType.Elastic;
}
elseif (option == 2) {
	myScrollRect.movementType = ScrollRect.MovementType.Unrestricted;
}
using UnityEngine;
using System.Collections;
using UnityEngine.UI;  // Required when Using UI elements.

public class ExampleClass : MonoBehaviour { public ScrollRect myScrollRect; public Scrollbar newScrollBar;

//Called when a button is pressed public void Example (int option) { if (option == 0) { myScrollRect.movementType = ScrollRect.MovementType.Clamped; } else if (option == 1) { myScrollRect.movementType = ScrollRect.MovementType.Elastic; } else if (option == 2) { myScrollRect.movementType = ScrollRect.MovementType.Unrestricted; } } }

Variables

UnrestrictedUnrestricted movement. The content can move forever.
ElasticElastic movement. The content is allowed to temporarily move beyond the container, but is pulled back elastically.
ClampedClamped movement. The content can not be moved beyond its container.