Skip to content

Commit 04dde25

Browse files
committed
Fixed Scene View selection not working with some prefabs.
1 parent 4b1e6af commit 04dde25

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Assets/Editor Toolbox/Editor/ToolboxEditorSceneView.cs

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

27-
GameObject go = HandleUtility.PickGameObject(Event.current.mousePosition, true, hitObjectsArray);
27+
GameObject go = HandleUtility.PickGameObject(Event.current.mousePosition, false, hitObjectsArray);
2828
if (go == null)
2929
{
3030
break;

0 commit comments

Comments
 (0)