public static Action AddDropHandler(HierarchyDropHandler handler)
 {
     return(AddDropHandler(kHierarchyDropDstId, handler));
 }
 public static void RemoveDropHandler(HierarchyDropHandler handler)
 {
     RemoveDropHandler(DragAndDropWindowTarget.hierarchy, handler);
 }
示例#3
0
 public static Action AddDropHandler(HierarchyDropHandler handler, bool isDefault = false)
 {
     return(AddDropHandler(kHierarchyDropDstId, handler, isDefault));
 }