I was working on a Unity 2D game project on OS X 10.10 and I cannot drag a file or folder, it will show this error.
No Drag&Drop has been setup. Please UnityEditor.DockArea:OnGUI()
I tried:
Assets
Reimport All
But it doesn't seem to work, how to fix it?
Unity uses NSPasteboard (the general OSX clipboard manager) to store data for Drag & Drop, so any process that controls / modifies the clipboard can be messy with Drag & Drop.
, Chrome, , - . google chrome, Unity, google chrome.
: , , ,
Unity pboard Unity.
, .
, Unity pboard , Unity, .
Sinyo, script, , . [ Mac] Unity, pboard, Unity.
#!/bin/sh osascript -e 'quit app "Unity"' pid=$(ps -fe | grep 'pboard' | grep -v grep | awk '{print $2}') if [[ -n $pid ]]; then kill $pid else echo "Does not exist" fi osascript -e 'launch the application "Unity"'
, , , . " Drag & Drop" , , . , . , DragAndDrop.SetGenericData() mouseDown. , MouseDrag , DragAndDrop ( DragAndDrop.GetGenericData()). null, MouseDrag DragAndDrop.StartDrag(). . , - .
DragAndDrop.SetGenericData()
DragAndDrop.GetGenericData()
DragAndDrop.StartDrag()
Based on @ user3130047 answer, this is another version. Mac only.
ps aux | grep pboard | grep -v grep | awk '{print $2}' | xargs kill -9 | launchctl start com.apple.pboard
It.But this can lead to your other open copy of applications and pasting not working. Therefore, you need to restart them.
This is the easiest way to accomplish the best answer:
killall -HUP pboard
(from a terminal or similar, obviously)
Source: https://habr.com/ru/post/1605982/More articles:How can I create my own url like ws: //echo.websocket.org? - javascriptGenerating XSD constraints in a schema generated from Java JAXB annotated classes - javaDoes IOS support NSURLSession HTTP 100-continue? - httpAndroid data.getData () returns null from CameraActivity for some phones - androidClosing the listening jack after the plug () - c ++Passing content through a form? - javascriptMake pdb work with docker - dockerhttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1605985/mutable-borrow-seems-to-outlive-its-scope&usg=ALkJrhhawMvhkk68zlWNfOFZH1YERWERLAFailed to install Oracle Developer Tools for Visual Studio - installationMiller-Rabin test: impossible result - javaAll Articles