Skip to content

Commit 454c045

Browse files
authored
Merge pull request #82 from Grizmu/master
Fixed Scene View selection not working with some prefabs
2 parents b92221b + 80b7798 commit 454c045

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/Editor Toolbox/Editor/ToolboxEditorSceneView.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ private static List<GameObject> GetObjectsUnderCursor()
2525
{
2626
hitObjectsArray = hitObjects.ToArray();
2727

28-
var go = HandleUtility.PickGameObject(mousePosition, true, hitObjectsArray);
28+
var go = HandleUtility.PickGameObject(mousePosition, false, hitObjectsArray);
2929
if (go == null)
3030
{
3131
break;

0 commit comments

Comments
 (0)