Delegate DropZone.TryGetDroppablesFromUnityObjectsHandler
Delegate used to find any droppable object(s) that can be dropped on the target using the current drag and drop objects data.
Namespace: Unity.AppUI.UI
Assembly: Unity.AppUI.dll
Syntax
public delegate bool DropZone.TryGetDroppablesFromUnityObjectsHandler(Object[] objects, out List<object> droppables)
Parameters
Type | Name | Description |
---|---|---|
Object[] | objects | The objects data from the current drag and drop operation. |
List<object> | droppables | The droppable object(s) found. |
Returns
Type | Description |
---|---|
bool | True if the target accepts the drag, false otherwise. |