File: selecting.rst

package info (click to toggle)
blender-doc 4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 253,604 kB
  • sloc: python: 13,030; javascript: 322; makefile: 113; sh: 107
file content (296 lines) | stat: -rw-r--r-- 8,070 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296

*********
Selecting
*********

Selection determines which elements will be the target of our actions.
Selections work on the current scene visible objects.
Blender has advanced selection methods. Both in *Object Mode* and in *Edit Mode*.


.. _object-active:

Selections and the Active Object
================================

Blender distinguishes between two different states of selection:

.. figure:: /images/scene-layout_object_selecting_color.png

   Active object in yellow, selected object in orange, and unselected object in black.

In *Object Mode* the last (de)selected item is called the "Active Object"
and is outlined in yellow (the others are orange).
There is at most one active object at any time.

Many actions in Blender use the active object as a reference (for example linking operations).
If you already have a selection and need to make a different object the active one,
simply reselect it with :kbd:`Shift-LMB`.

All other selected objects are just selected. You can select any number of objects.
In order to change a property or to perform an operation on all selected objects (bones, and sequencer strips)
hold :kbd:`Alt`, while confirming.


.. _object-select-menu:

Select Menu
===========

.. _bpy.ops.object.select_all:

All
---

.. reference::

   :Mode:      All Modes
   :Menu:      :menuselection:`Select --> All`
   :Shortcut:  :kbd:`A`

Select all selectable objects.


None
----

.. reference::

   :Mode:      All Modes
   :Menu:      :menuselection:`Select --> None`
   :Shortcut:  :kbd:`Alt-A`

Deselect all objects, but the active object stays the same.


Invert
------

.. reference::

   :Mode:      All Modes
   :Menu:      :menuselection:`Select --> Invert`
   :Shortcut:  :kbd:`Ctrl-I`

Toggle the selection state of all visible objects.


Box Select
----------

.. reference::

   :Mode:      All Modes
   :Menu:      :menuselection:`Select --> Box Select`
   :Shortcut:  :kbd:`B`

Interactive :ref:`box selection <tool-select-box>`.


Circle Select
-------------

.. reference::

   :Mode:      All Modes
   :Menu:      :menuselection:`Select --> Circle Select`
   :Shortcut:  :kbd:`C`

Interactive :ref:`circle selection <tool-select-circle>`.


Lasso Select
------------

.. reference::

   :Mode:      All modes
   :Menu:      :menuselection:`Select --> Lasso Select`
   :Shortcut:  :kbd:`Ctrl-Alt-LMB`

See :ref:`tool-select-lasso`.


.. _bpy.ops.object.select_camera:

Select Active Camera
--------------------

.. reference::

   :Mode:      Object Mode
   :Menu:      :menuselection:`Select --> Select Active Camera`

Selects the active camera, this is especially handy in complex scene.


.. _bpy.ops.object.select_mirror:

Select Mirror
-------------

.. reference::

   :Mode:      All Modes
   :Menu:      :menuselection:`Select --> Select Mirror`

Select the Mirror objects of the selected object,
based on their names, e.g. "sword.L" and "sword.R".


.. _bpy.ops.object.select_random:

Select Random
-------------

.. reference::

   :Mode:      Object Mode
   :Menu:      :menuselection:`Select --> Select Random`

Randomly selects unselected objects based on percentage probability.
The percentage can be modified in the *Adjust Last Operation* panel.
It is important to note that the percentage is the likelihood of
an unselected object being selected and not the percentage amount of objects
that will be selected.


.. _bpy.ops.object.select_more:
.. _bpy.ops.object.select_less:
.. _bpy.ops.object.select_hierarchy:

Select More/Less
----------------

.. reference::

   :Mode:      Object Mode
   :Menu:      :menuselection:`Select --> More/Less`
   :Shortcut:  :kbd:`Ctrl-NumpadPlus`, :kbd:`Ctrl-NumpadMinus`

Their purpose, based on the hierarchical.

More
   Expand the selection to the immediate parent and children of the selected objects.
Less
   Contrast the selection, deselect objects at the boundaries of parent/child relationships.
Parent
   Deselects the currently selected objects and selects their immediate parents.
Child
   Deselects the currently selected objects and selects their immediate children.
Extend Parent
   Extends the selection to the immediate parents of the currently selected objects.
Extend Child
   Extends the selection to the immediate children of the currently selected objects.


.. _bpy.ops.object.select_by_type:

Select All by Type
------------------

.. reference::

   :Mode:      Object Mode
   :Menu:      :menuselection:`Select --> Select All by Type`

With this tool, it becomes possible to select objects of a certain type in one go.
For a description of all object types see :doc:`Object Types </scene_layout/object/types>`.


.. _bpy.ops.object.select_grouped:

Select Grouped
--------------

.. reference::

   :Mode:      Object Mode
   :Menu:      :menuselection:`Select --> Select Grouped`
   :Shortcut:  :kbd:`Shift-G`

There are two ways to organize the objects in relation to one another.
The first one is *parenting*, and the second is simple *grouping*.
These relationships to an artist's advantage by selecting members of respective families or groups.
*Select Grouped* uses the active object as a basis to select all others.

Children
   Selects all hierarchical descendants of the active object.
Immediate Children
   Selects all direct children of the active object.
Parent
   Selects the parent of this object if it has one.
Siblings
   Select objects that have the same parent as the active object.
   This can also be used to select all root level objects (objects with no parents).
Type
   Select objects that are the same type as the active one.
Collection
   Select all objects that are in the same collection as the active one.
   If the active object belongs to more than one collection,
   a list will pop up so that you can choose which collection to select.
Object Hooks
   Every hook that belongs to the active object.
Pass
   Select objects assigned to the same :doc:`Render Pass </render/layers/passes>`.
Color
   Select objects with same :ref:`Object Color <bpy.types.Object.color>`.
Keying Set
   Select objects included in the active :doc:`Keying Set </animation/keyframes/keying_sets>`.
Light Type
   Select matching light types.


.. _bpy.ops.object.select_linked:

Select Linked
-------------

.. reference::

   :Mode:      Object Mode
   :Menu:      :menuselection:`Select --> Select Linked`
   :Shortcut:  :kbd:`Shift-L`

Selects all objects which share a common data-block with the active object.
*Select Linked* uses the active object as a basis to select all others.

Object Data
   Selects every object that is linked to the same Object Data, i.e.
   the data-block that specifies the type (mesh, curve, etc.) and the build
   (constitutive elements like vertices, control vertices, and where they are in space) of the object.
Material
   Selects every object that is linked to the same material data-block.
Instanced Collection
   Select every object that is linked to the instanced collection.
Texture
   Selects every object that is linked to the same texture data-block.
Particle System
   Selects all objects that use the same *Particle System*.
Library
   Selects all objects that are in the same :doc:`Library </files/linked_libraries/index>`.
Library (Object Data)
   Selects all objects that are in the same :doc:`Library </files/linked_libraries/index>`
   and limited to *Object Data*.


.. _bpy.ops.object.select_pattern:

Select Pattern
--------------

.. reference::

   :Mode:      Object Mode
   :Menu:      :menuselection:`Select --> Select Pattern...`

Selects all elements whose name matches a given pattern.
Supported wild-cards: ``*`` matches everything, ``?`` matches any single character,
``[abc]`` matches characters in ``abc``, and ``[!abc]`` match any character not in ``abc``.
As an example ``*house*`` matches any name that contains ``house``,
while ``floor*`` matches any name starting with ``floor``.

Case Sensitive
   The matching can be chosen to be case sensitive or not.
Extend
   When *Extend* checkbox is checked the selection is extended instead of generating a new one.