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

public void OnDrag(EventSystems.PointerEventData eventData);

Description

Handling for when the content is dragged.

using UnityEngine;
using System.Collections;
using UnityEngine.EventSystems; // Required when using event data

public class ExampleClass : MonoBehaviour, IDragHandler // required interface when using the OnDrag method. { //Do this while the user is dragging this UI Element. public void OnDrag(PointerEventData data) { Debug.Log("Currently dragging " + this.name); } }