This version of Unity is unsupported.

DragAndDrop

class in UnityEditor

Description

Editor drag & drop operations.

Static Properties

activeControlIDGet or set ID of currently active drag and drop control.
objectReferencesReferences to objects being dragged.
pathsThe file names being dragged.
visualModeThe visual indication of the drag.

Static Methods

AcceptDragAccept a drag operation.
AddDropHandlerAllow override of the default behavior for the corresponding window. Multiple handlers can be registered on the same window. If a handler returns DragAndDropVisualMode.None the system will check the next handler. Any other results (DragAndDropVisualMode.Rejected or others DragAndDropVisualMode) means this handler has processed the drop event and no other handler will be called. The last handler is the default Unity handler.
GetGenericDataGet data associated with current drag and drop operation.
HasHandlerCheck if the handler is already registered for the destination window ID.
PrepareStartDragClears drag & drop data.
RemoveDropHandlerUnregister a specific Drop Handler from a Window Drop Target.
SetGenericDataSet data associated with current drag and drop operation.
StartDragStart a drag operation.

Delegates

HierarchyDropHandlerHandler for the Hierarchy.
InspectorDropHandlerHandler for the Inspector.
ProjectBrowserDropHandlerHandler for the Project.
SceneDropHandlerHandler for the Scene.