Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


visualMode

The visual indication of the drag.
Read time 1 minuteLast updated 7 days ago

Definition

  • Type: Property
  • Namespace: UnityEditor
  • Assembly: UnityEditor
public static DragAndDropVisualMode visualMode { get; set; }

Remarks

Examples

using UnityEngine;using UnityEditor;public class Example : MonoBehaviour{ void OnGUI() { EventType eventType = Event.current.type; if (eventType == EventType.DragUpdated || eventType == EventType.DragPerform) { // Show a copy icon on the drag DragAndDrop.visualMode = DragAndDropVisualMode.Copy; if (eventType == EventType.DragPerform) { DragAndDrop.AcceptDrag(); } Event.current.Use(); } }}