Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

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

DragAndDrop.visualMode

static var visualMode: DragAndDropVisualMode;
static DragAndDropVisualMode visualMode;
static visualMode as DragAndDropVisualMode

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(); } }