Version: Unity 6 Preview (6000.0)
Language : English
Select a GameObject that overlaps with other GameObjects
Position GameObjects

Scene picking controls

You can toggle the sceneA Scene contains the environments and menus of your game. Think of each unique Scene file as a unique level. In each Scene, you place your environments, obstacles, and decorations, essentially designing and building your game in pieces. More info
See in Glossary
picking status of a GameObjectThe fundamental object in Unity scenes, which can represent characters, props, scenery, cameras, waypoints, and more. A GameObject’s functionality is defined by the Components attached to it. More info
See in Glossary
to choose which GameObjects are selectable in the Scene viewAn interactive view into the world you are creating. You use the Scene View to select and position scenery, characters, cameras, lights, and all other types of Game Object. More info
See in Glossary
. By default, all GameObjects are pickable, which means you can select them in the Scene view. You can disable the pickability of a GameObject to prevent that GameObject from being added to selections in the Scene view. For example, if you are working in a large scene with many GameObjecets, you can temporarily block specific GameObjects from being selected to prevent them from being edited accidentally.

A GameObject that has its scene picking disabled is still rendered in the Scene view, but you cannot select or modify it in the Scene view. The pickability state persists only in the Editor and only for the user in the project where the pickability was set. Changing the pickability state of a GameObject is not recorded as a modification to the scene.

Scene picking controls are similar to the Scene visibility controls.

Toggle the pickability of a GameObject

Control scene picking status for individual GameObjects from the Hierarchy window.

Every GameObject has a Scene pickability icon/toggle
Every GameObject has a Scene pickability icon/toggle

To toggle the scene picking status of a GameObject:

  • Select a GameObject’s pickability icon in the Hierarchy window to toggle between enabling and disabling picking the GameObject and its children. Toggling pickability for a GameObject and its children affects all child GameObjects, from the target GameObject to the bottom of the hierarchy.

  • Select a GameObject in the Scene view, and press L to toggle the pickability of the GameObject and its children.

  • Hold Alt (macOS: Option) and select a GameObject’s pickability icon in the Hierarchy window to toggle between enabling and disabling picking the GameObject only. Toggling pickability for a single GameObject does not affect its children. They retain whatever pickability status they had previously.

Pickability icons

You can toggle pickability for a whole branch of GameObjects or a single GameObject, so you can have GameObjects that are selectable but have children or parents that you cannot select. To help you track what is pickable or not, the pickability icon changes to show the status of each GameObject.

Any scene picking changes you make in the Hierarchy window are persistent. Scene picking changes are reapplied whenever you use Select All, Deselect All, or close and re-open the Scene.

Unity only selects pickable items when you draw a selection bounding box in the Scene view
Unity only selects pickable items when you draw a selection bounding box in the Scene view
Screenshot annotation Pickability icon Description
A You can pick the GameObject, but you cannot pick some of its children.
B You cannot pick the GameObject, but you can pick some of its children.
C You cannot pick the GameObject nor its children.
D You can pick the GameObject and its children. This icon only appears when you hover over the GameObject.

Additional resources

Select a GameObject that overlaps with other GameObjects
Position GameObjects