Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

MovementType

enumeration

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual

Descripción

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.