Legacy Documentation: Version 2017.2 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

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

DragAndDrop.visualMode

public static DragAndDropVisualMode visualMode;

Description

The visual indication of the drag.

Default is DragAndDropVisualMode.Link.

    function OnGUI ()
    {
        var 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(); } }

Did you find this page useful? Please give it a rating: