Skip to content

Commit

Permalink
Merge pull request #82 from Grizmu/master
Browse files Browse the repository at this point in the history
Fixed Scene View selection not working with some prefabs
  • Loading branch information
arimger authored Jul 29, 2023
2 parents b92221b + 80b7798 commit 454c045
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Editor Toolbox/Editor/ToolboxEditorSceneView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ private static List<GameObject> GetObjectsUnderCursor()
{
hitObjectsArray = hitObjects.ToArray();

var go = HandleUtility.PickGameObject(mousePosition, true, hitObjectsArray);
var go = HandleUtility.PickGameObject(mousePosition, false, hitObjectsArray);
if (go == null)
{
break;
Expand Down

0 comments on commit 454c045

Please sign in to comment.