fake-bpy-module 20241208__py3-none-any.whl → 20241209__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bpy/ops/action/__init__.pyi +38 -138
- bpy/ops/anim/__init__.pyi +61 -179
- bpy/ops/armature/__init__.pyi +48 -147
- bpy/ops/asset/__init__.pyi +16 -71
- bpy/ops/boid/__init__.pyi +8 -41
- bpy/ops/brush/__init__.pyi +13 -39
- bpy/ops/buttons/__init__.pyi +6 -29
- bpy/ops/cachefile/__init__.pyi +5 -19
- bpy/ops/camera/__init__.pyi +2 -5
- bpy/ops/clip/__init__.pyi +92 -290
- bpy/ops/cloth/__init__.pyi +1 -3
- bpy/ops/collection/__init__.pyi +9 -25
- bpy/ops/console/__init__.pyi +21 -79
- bpy/ops/constraint/__init__.pyi +18 -45
- bpy/ops/curve/__init__.pyi +51 -180
- bpy/ops/curves/__init__.pyi +28 -100
- bpy/ops/cycles/__init__.pyi +3 -9
- bpy/ops/dpaint/__init__.pyi +5 -19
- bpy/ops/ed/__init__.pyi +12 -53
- bpy/ops/export_anim/__init__.pyi +1 -3
- bpy/ops/export_scene/__init__.pyi +2 -5
- bpy/ops/extensions/__init__.pyi +34 -110
- bpy/ops/file/__init__.pyi +40 -167
- bpy/ops/fluid/__init__.pyi +14 -77
- bpy/ops/font/__init__.pyi +23 -85
- bpy/ops/geometry/__init__.pyi +10 -27
- bpy/ops/gizmogroup/__init__.pyi +2 -9
- bpy/ops/gpencil/__init__.pyi +8 -32
- bpy/ops/graph/__init__.pyi +65 -184
- bpy/ops/grease_pencil/__init__.pyi +108 -290
- bpy/ops/image/__init__.pyi +49 -154
- bpy/ops/import_anim/__init__.pyi +1 -3
- bpy/ops/import_curve/__init__.pyi +1 -3
- bpy/ops/import_scene/__init__.pyi +2 -4
- bpy/ops/info/__init__.pyi +7 -29
- bpy/ops/lattice/__init__.pyi +8 -29
- bpy/ops/marker/__init__.pyi +11 -31
- bpy/ops/mask/__init__.pyi +39 -132
- bpy/ops/material/__init__.pyi +3 -19
- bpy/ops/mball/__init__.pyi +8 -19
- bpy/ops/mesh/__init__.pyi +164 -401
- bpy/ops/nla/__init__.pyi +39 -147
- bpy/ops/node/__init__.pyi +115 -390
- bpy/ops/object/__init__.pyi +237 -630
- bpy/ops/outliner/__init__.pyi +71 -263
- bpy/ops/paint/__init__.pyi +54 -140
- bpy/ops/paintcurve/__init__.pyi +8 -33
- bpy/ops/palette/__init__.pyi +7 -27
- bpy/ops/particle/__init__.pyi +36 -134
- bpy/ops/pose/__init__.pyi +51 -169
- bpy/ops/poselib/__init__.pyi +9 -33
- bpy/ops/preferences/__init__.pyi +35 -94
- bpy/ops/ptcache/__init__.pyi +7 -33
- bpy/ops/render/__init__.pyi +13 -37
- bpy/ops/rigidbody/__init__.pyi +13 -45
- bpy/ops/scene/__init__.pyi +37 -121
- bpy/ops/screen/__init__.pyi +39 -137
- bpy/ops/script/__init__.pyi +3 -11
- bpy/ops/sculpt/__init__.pyi +37 -94
- bpy/ops/sculpt_curves/__init__.pyi +4 -10
- bpy/ops/sequencer/__init__.pyi +89 -284
- bpy/ops/sound/__init__.pyi +7 -23
- bpy/ops/spreadsheet/__init__.pyi +4 -15
- bpy/ops/surface/__init__.pyi +6 -13
- bpy/ops/text/__init__.pyi +43 -175
- bpy/ops/text_editor/__init__.pyi +1 -3
- bpy/ops/texture/__init__.pyi +4 -21
- bpy/ops/transform/__init__.pyi +27 -61
- bpy/ops/ui/__init__.pyi +34 -117
- bpy/ops/uilist/__init__.pyi +3 -7
- bpy/ops/uv/__init__.pyi +49 -134
- bpy/ops/view2d/__init__.pyi +14 -39
- bpy/ops/view3d/__init__.pyi +67 -232
- bpy/ops/wm/__init__.pyi +114 -298
- bpy/ops/workspace/__init__.pyi +7 -33
- bpy/ops/world/__init__.pyi +2 -11
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +80 -80
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
bpy/ops/outliner/__init__.pyi
CHANGED
|
@@ -1,19 +1,17 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.types
|
|
5
4
|
import bpy.typing
|
|
6
5
|
|
|
7
6
|
def action_set(
|
|
8
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
9
7
|
execution_context: int | str | None = None,
|
|
10
8
|
undo: bool | None = None,
|
|
9
|
+
/,
|
|
11
10
|
*,
|
|
12
11
|
action: str | None = "",
|
|
13
12
|
):
|
|
14
13
|
"""Change the active action used
|
|
15
14
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
17
15
|
:type execution_context: int | str | None
|
|
18
16
|
:type undo: bool | None
|
|
19
17
|
:param action: Action
|
|
@@ -21,9 +19,9 @@ def action_set(
|
|
|
21
19
|
"""
|
|
22
20
|
|
|
23
21
|
def animdata_operation(
|
|
24
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
25
22
|
execution_context: int | str | None = None,
|
|
26
23
|
undo: bool | None = None,
|
|
24
|
+
/,
|
|
27
25
|
*,
|
|
28
26
|
type: typing.Literal[
|
|
29
27
|
"CLEAR_ANIMDATA", "SET_ACT", "CLEAR_ACT", "REFRESH_DRIVERS", "CLEAR_DRIVERS"
|
|
@@ -32,7 +30,6 @@ def animdata_operation(
|
|
|
32
30
|
):
|
|
33
31
|
"""Undocumented, consider contributing.
|
|
34
32
|
|
|
35
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
36
33
|
:type execution_context: int | str | None
|
|
37
34
|
:type undo: bool | None
|
|
38
35
|
:param type: Animation Operation
|
|
@@ -54,28 +51,22 @@ def animdata_operation(
|
|
|
54
51
|
:type type: typing.Literal['CLEAR_ANIMDATA','SET_ACT','CLEAR_ACT','REFRESH_DRIVERS','CLEAR_DRIVERS'] | None
|
|
55
52
|
"""
|
|
56
53
|
|
|
57
|
-
def clear_filter(
|
|
58
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
59
|
-
execution_context: int | str | None = None,
|
|
60
|
-
undo: bool | None = None,
|
|
61
|
-
):
|
|
54
|
+
def clear_filter(execution_context: int | str | None = None, undo: bool | None = None):
|
|
62
55
|
"""Clear the search filter
|
|
63
56
|
|
|
64
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
65
57
|
:type execution_context: int | str | None
|
|
66
58
|
:type undo: bool | None
|
|
67
59
|
"""
|
|
68
60
|
|
|
69
61
|
def collection_color_tag_set(
|
|
70
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
71
62
|
execution_context: int | str | None = None,
|
|
72
63
|
undo: bool | None = None,
|
|
64
|
+
/,
|
|
73
65
|
*,
|
|
74
66
|
color: bpy.typing.CollectionColorItems | None = "NONE",
|
|
75
67
|
):
|
|
76
68
|
"""Set a color tag for the selected collections
|
|
77
69
|
|
|
78
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
79
70
|
:type execution_context: int | str | None
|
|
80
71
|
:type undo: bool | None
|
|
81
72
|
:param color: Color Tag
|
|
@@ -83,219 +74,167 @@ def collection_color_tag_set(
|
|
|
83
74
|
"""
|
|
84
75
|
|
|
85
76
|
def collection_disable(
|
|
86
|
-
|
|
87
|
-
execution_context: int | str | None = None,
|
|
88
|
-
undo: bool | None = None,
|
|
77
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
89
78
|
):
|
|
90
79
|
"""Disable viewport display in the view layers
|
|
91
80
|
|
|
92
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
93
81
|
:type execution_context: int | str | None
|
|
94
82
|
:type undo: bool | None
|
|
95
83
|
"""
|
|
96
84
|
|
|
97
85
|
def collection_disable_render(
|
|
98
|
-
|
|
99
|
-
execution_context: int | str | None = None,
|
|
100
|
-
undo: bool | None = None,
|
|
86
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
101
87
|
):
|
|
102
88
|
"""Do not render this collection
|
|
103
89
|
|
|
104
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
105
90
|
:type execution_context: int | str | None
|
|
106
91
|
:type undo: bool | None
|
|
107
92
|
"""
|
|
108
93
|
|
|
109
94
|
def collection_drop(
|
|
110
|
-
|
|
111
|
-
execution_context: int | str | None = None,
|
|
112
|
-
undo: bool | None = None,
|
|
95
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
113
96
|
):
|
|
114
97
|
"""Drag to move to collection in Outliner
|
|
115
98
|
|
|
116
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
117
99
|
:type execution_context: int | str | None
|
|
118
100
|
:type undo: bool | None
|
|
119
101
|
"""
|
|
120
102
|
|
|
121
103
|
def collection_duplicate(
|
|
122
|
-
|
|
123
|
-
execution_context: int | str | None = None,
|
|
124
|
-
undo: bool | None = None,
|
|
104
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
125
105
|
):
|
|
126
106
|
"""Recursively duplicate the collection, all its children, objects and object data
|
|
127
107
|
|
|
128
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
129
108
|
:type execution_context: int | str | None
|
|
130
109
|
:type undo: bool | None
|
|
131
110
|
"""
|
|
132
111
|
|
|
133
112
|
def collection_duplicate_linked(
|
|
134
|
-
|
|
135
|
-
execution_context: int | str | None = None,
|
|
136
|
-
undo: bool | None = None,
|
|
113
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
137
114
|
):
|
|
138
115
|
"""Recursively duplicate the collection, all its children and objects, with linked object data
|
|
139
116
|
|
|
140
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
141
117
|
:type execution_context: int | str | None
|
|
142
118
|
:type undo: bool | None
|
|
143
119
|
"""
|
|
144
120
|
|
|
145
121
|
def collection_enable(
|
|
146
|
-
|
|
147
|
-
execution_context: int | str | None = None,
|
|
148
|
-
undo: bool | None = None,
|
|
122
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
149
123
|
):
|
|
150
124
|
"""Enable viewport display in the view layers
|
|
151
125
|
|
|
152
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
153
126
|
:type execution_context: int | str | None
|
|
154
127
|
:type undo: bool | None
|
|
155
128
|
"""
|
|
156
129
|
|
|
157
130
|
def collection_enable_render(
|
|
158
|
-
|
|
159
|
-
execution_context: int | str | None = None,
|
|
160
|
-
undo: bool | None = None,
|
|
131
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
161
132
|
):
|
|
162
133
|
"""Render the collection
|
|
163
134
|
|
|
164
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
165
135
|
:type execution_context: int | str | None
|
|
166
136
|
:type undo: bool | None
|
|
167
137
|
"""
|
|
168
138
|
|
|
169
139
|
def collection_exclude_clear(
|
|
170
|
-
|
|
171
|
-
execution_context: int | str | None = None,
|
|
172
|
-
undo: bool | None = None,
|
|
140
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
173
141
|
):
|
|
174
142
|
"""Include collection in the active view layer
|
|
175
143
|
|
|
176
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
177
144
|
:type execution_context: int | str | None
|
|
178
145
|
:type undo: bool | None
|
|
179
146
|
"""
|
|
180
147
|
|
|
181
148
|
def collection_exclude_set(
|
|
182
|
-
|
|
183
|
-
execution_context: int | str | None = None,
|
|
184
|
-
undo: bool | None = None,
|
|
149
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
185
150
|
):
|
|
186
151
|
"""Exclude collection from the active view layer
|
|
187
152
|
|
|
188
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
189
153
|
:type execution_context: int | str | None
|
|
190
154
|
:type undo: bool | None
|
|
191
155
|
"""
|
|
192
156
|
|
|
193
157
|
def collection_hide(
|
|
194
|
-
|
|
195
|
-
execution_context: int | str | None = None,
|
|
196
|
-
undo: bool | None = None,
|
|
158
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
197
159
|
):
|
|
198
160
|
"""Hide the collection in this view layer
|
|
199
161
|
|
|
200
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
201
162
|
:type execution_context: int | str | None
|
|
202
163
|
:type undo: bool | None
|
|
203
164
|
"""
|
|
204
165
|
|
|
205
166
|
def collection_hide_inside(
|
|
206
|
-
|
|
207
|
-
execution_context: int | str | None = None,
|
|
208
|
-
undo: bool | None = None,
|
|
167
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
209
168
|
):
|
|
210
169
|
"""Hide all the objects and collections inside the collection
|
|
211
170
|
|
|
212
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
213
171
|
:type execution_context: int | str | None
|
|
214
172
|
:type undo: bool | None
|
|
215
173
|
"""
|
|
216
174
|
|
|
217
175
|
def collection_hierarchy_delete(
|
|
218
|
-
|
|
219
|
-
execution_context: int | str | None = None,
|
|
220
|
-
undo: bool | None = None,
|
|
176
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
221
177
|
):
|
|
222
178
|
"""Delete selected collection hierarchies
|
|
223
179
|
|
|
224
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
225
180
|
:type execution_context: int | str | None
|
|
226
181
|
:type undo: bool | None
|
|
227
182
|
"""
|
|
228
183
|
|
|
229
184
|
def collection_holdout_clear(
|
|
230
|
-
|
|
231
|
-
execution_context: int | str | None = None,
|
|
232
|
-
undo: bool | None = None,
|
|
185
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
233
186
|
):
|
|
234
187
|
"""Clear masking of collection in the active view layer
|
|
235
188
|
|
|
236
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
237
189
|
:type execution_context: int | str | None
|
|
238
190
|
:type undo: bool | None
|
|
239
191
|
"""
|
|
240
192
|
|
|
241
193
|
def collection_holdout_set(
|
|
242
|
-
|
|
243
|
-
execution_context: int | str | None = None,
|
|
244
|
-
undo: bool | None = None,
|
|
194
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
245
195
|
):
|
|
246
196
|
"""Mask collection in the active view layer
|
|
247
197
|
|
|
248
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
249
198
|
:type execution_context: int | str | None
|
|
250
199
|
:type undo: bool | None
|
|
251
200
|
"""
|
|
252
201
|
|
|
253
202
|
def collection_indirect_only_clear(
|
|
254
|
-
|
|
255
|
-
execution_context: int | str | None = None,
|
|
256
|
-
undo: bool | None = None,
|
|
203
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
257
204
|
):
|
|
258
205
|
"""Clear collection contributing only indirectly in the view layer
|
|
259
206
|
|
|
260
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
261
207
|
:type execution_context: int | str | None
|
|
262
208
|
:type undo: bool | None
|
|
263
209
|
"""
|
|
264
210
|
|
|
265
211
|
def collection_indirect_only_set(
|
|
266
|
-
|
|
267
|
-
execution_context: int | str | None = None,
|
|
268
|
-
undo: bool | None = None,
|
|
212
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
269
213
|
):
|
|
270
214
|
"""Set collection to only contribute indirectly (through shadows and reflections) in the view layer
|
|
271
215
|
|
|
272
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
273
216
|
:type execution_context: int | str | None
|
|
274
217
|
:type undo: bool | None
|
|
275
218
|
"""
|
|
276
219
|
|
|
277
220
|
def collection_instance(
|
|
278
|
-
|
|
279
|
-
execution_context: int | str | None = None,
|
|
280
|
-
undo: bool | None = None,
|
|
221
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
281
222
|
):
|
|
282
223
|
"""Instance selected collections to active scene
|
|
283
224
|
|
|
284
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
285
225
|
:type execution_context: int | str | None
|
|
286
226
|
:type undo: bool | None
|
|
287
227
|
"""
|
|
288
228
|
|
|
289
229
|
def collection_isolate(
|
|
290
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
291
230
|
execution_context: int | str | None = None,
|
|
292
231
|
undo: bool | None = None,
|
|
232
|
+
/,
|
|
293
233
|
*,
|
|
294
234
|
extend: bool | None = False,
|
|
295
235
|
):
|
|
296
236
|
"""Hide all but this collection and its parents
|
|
297
237
|
|
|
298
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
299
238
|
:type execution_context: int | str | None
|
|
300
239
|
:type undo: bool | None
|
|
301
240
|
:param extend: Extend, Extend current visible collections
|
|
@@ -303,27 +242,23 @@ def collection_isolate(
|
|
|
303
242
|
"""
|
|
304
243
|
|
|
305
244
|
def collection_link(
|
|
306
|
-
|
|
307
|
-
execution_context: int | str | None = None,
|
|
308
|
-
undo: bool | None = None,
|
|
245
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
309
246
|
):
|
|
310
247
|
"""Link selected collections to active scene
|
|
311
248
|
|
|
312
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
313
249
|
:type execution_context: int | str | None
|
|
314
250
|
:type undo: bool | None
|
|
315
251
|
"""
|
|
316
252
|
|
|
317
253
|
def collection_new(
|
|
318
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
319
254
|
execution_context: int | str | None = None,
|
|
320
255
|
undo: bool | None = None,
|
|
256
|
+
/,
|
|
321
257
|
*,
|
|
322
258
|
nested: bool | None = True,
|
|
323
259
|
):
|
|
324
260
|
"""Add a new collection inside selected collection
|
|
325
261
|
|
|
326
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
327
262
|
:type execution_context: int | str | None
|
|
328
263
|
:type undo: bool | None
|
|
329
264
|
:param nested: Nested, Add as child of selected collection
|
|
@@ -331,63 +266,50 @@ def collection_new(
|
|
|
331
266
|
"""
|
|
332
267
|
|
|
333
268
|
def collection_objects_deselect(
|
|
334
|
-
|
|
335
|
-
execution_context: int | str | None = None,
|
|
336
|
-
undo: bool | None = None,
|
|
269
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
337
270
|
):
|
|
338
271
|
"""Deselect objects in collection
|
|
339
272
|
|
|
340
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
341
273
|
:type execution_context: int | str | None
|
|
342
274
|
:type undo: bool | None
|
|
343
275
|
"""
|
|
344
276
|
|
|
345
277
|
def collection_objects_select(
|
|
346
|
-
|
|
347
|
-
execution_context: int | str | None = None,
|
|
348
|
-
undo: bool | None = None,
|
|
278
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
349
279
|
):
|
|
350
280
|
"""Select objects in collection
|
|
351
281
|
|
|
352
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
353
282
|
:type execution_context: int | str | None
|
|
354
283
|
:type undo: bool | None
|
|
355
284
|
"""
|
|
356
285
|
|
|
357
286
|
def collection_show(
|
|
358
|
-
|
|
359
|
-
execution_context: int | str | None = None,
|
|
360
|
-
undo: bool | None = None,
|
|
287
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
361
288
|
):
|
|
362
289
|
"""Show the collection in this view layer
|
|
363
290
|
|
|
364
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
365
291
|
:type execution_context: int | str | None
|
|
366
292
|
:type undo: bool | None
|
|
367
293
|
"""
|
|
368
294
|
|
|
369
295
|
def collection_show_inside(
|
|
370
|
-
|
|
371
|
-
execution_context: int | str | None = None,
|
|
372
|
-
undo: bool | None = None,
|
|
296
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
373
297
|
):
|
|
374
298
|
"""Show all the objects and collections inside the collection
|
|
375
299
|
|
|
376
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
377
300
|
:type execution_context: int | str | None
|
|
378
301
|
:type undo: bool | None
|
|
379
302
|
"""
|
|
380
303
|
|
|
381
304
|
def constraint_operation(
|
|
382
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
383
305
|
execution_context: int | str | None = None,
|
|
384
306
|
undo: bool | None = None,
|
|
307
|
+
/,
|
|
385
308
|
*,
|
|
386
309
|
type: typing.Literal["ENABLE", "DISABLE", "DELETE"] | None = "ENABLE",
|
|
387
310
|
):
|
|
388
311
|
"""Undocumented, consider contributing.
|
|
389
312
|
|
|
390
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
391
313
|
:type execution_context: int | str | None
|
|
392
314
|
:type undo: bool | None
|
|
393
315
|
:param type: Constraint Operation
|
|
@@ -395,15 +317,14 @@ def constraint_operation(
|
|
|
395
317
|
"""
|
|
396
318
|
|
|
397
319
|
def data_operation(
|
|
398
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
399
320
|
execution_context: int | str | None = None,
|
|
400
321
|
undo: bool | None = None,
|
|
322
|
+
/,
|
|
401
323
|
*,
|
|
402
324
|
type: str | None = "DEFAULT",
|
|
403
325
|
):
|
|
404
326
|
"""Undocumented, consider contributing.
|
|
405
327
|
|
|
406
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
407
328
|
:type execution_context: int | str | None
|
|
408
329
|
:type undo: bool | None
|
|
409
330
|
:param type: Data Operation
|
|
@@ -411,27 +332,23 @@ def data_operation(
|
|
|
411
332
|
"""
|
|
412
333
|
|
|
413
334
|
def datastack_drop(
|
|
414
|
-
|
|
415
|
-
execution_context: int | str | None = None,
|
|
416
|
-
undo: bool | None = None,
|
|
335
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
417
336
|
):
|
|
418
337
|
"""Copy or reorder modifiers, constraints, and effects
|
|
419
338
|
|
|
420
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
421
339
|
:type execution_context: int | str | None
|
|
422
340
|
:type undo: bool | None
|
|
423
341
|
"""
|
|
424
342
|
|
|
425
343
|
def delete(
|
|
426
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
427
344
|
execution_context: int | str | None = None,
|
|
428
345
|
undo: bool | None = None,
|
|
346
|
+
/,
|
|
429
347
|
*,
|
|
430
348
|
hierarchy: bool | None = False,
|
|
431
349
|
):
|
|
432
350
|
"""Delete selected objects and collections
|
|
433
351
|
|
|
434
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
435
352
|
:type execution_context: int | str | None
|
|
436
353
|
:type undo: bool | None
|
|
437
354
|
:param hierarchy: Hierarchy, Delete child objects and collections
|
|
@@ -439,93 +356,66 @@ def delete(
|
|
|
439
356
|
"""
|
|
440
357
|
|
|
441
358
|
def drivers_add_selected(
|
|
442
|
-
|
|
443
|
-
execution_context: int | str | None = None,
|
|
444
|
-
undo: bool | None = None,
|
|
359
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
445
360
|
):
|
|
446
361
|
"""Add drivers to selected items
|
|
447
362
|
|
|
448
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
449
363
|
:type execution_context: int | str | None
|
|
450
364
|
:type undo: bool | None
|
|
451
365
|
"""
|
|
452
366
|
|
|
453
367
|
def drivers_delete_selected(
|
|
454
|
-
|
|
455
|
-
execution_context: int | str | None = None,
|
|
456
|
-
undo: bool | None = None,
|
|
368
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
457
369
|
):
|
|
458
370
|
"""Delete drivers assigned to selected items
|
|
459
371
|
|
|
460
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
461
372
|
:type execution_context: int | str | None
|
|
462
373
|
:type undo: bool | None
|
|
463
374
|
"""
|
|
464
375
|
|
|
465
376
|
def expanded_toggle(
|
|
466
|
-
|
|
467
|
-
execution_context: int | str | None = None,
|
|
468
|
-
undo: bool | None = None,
|
|
377
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
469
378
|
):
|
|
470
379
|
"""Expand/Collapse all items
|
|
471
380
|
|
|
472
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
473
381
|
:type execution_context: int | str | None
|
|
474
382
|
:type undo: bool | None
|
|
475
383
|
"""
|
|
476
384
|
|
|
477
|
-
def hide(
|
|
478
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
479
|
-
execution_context: int | str | None = None,
|
|
480
|
-
undo: bool | None = None,
|
|
481
|
-
):
|
|
385
|
+
def hide(execution_context: int | str | None = None, undo: bool | None = None):
|
|
482
386
|
"""Hide selected objects and collections
|
|
483
387
|
|
|
484
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
485
388
|
:type execution_context: int | str | None
|
|
486
389
|
:type undo: bool | None
|
|
487
390
|
"""
|
|
488
391
|
|
|
489
392
|
def highlight_update(
|
|
490
|
-
|
|
491
|
-
execution_context: int | str | None = None,
|
|
492
|
-
undo: bool | None = None,
|
|
393
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
493
394
|
):
|
|
494
395
|
"""Update the item highlight based on the current mouse position
|
|
495
396
|
|
|
496
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
497
397
|
:type execution_context: int | str | None
|
|
498
398
|
:type undo: bool | None
|
|
499
399
|
"""
|
|
500
400
|
|
|
501
|
-
def id_copy(
|
|
502
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
503
|
-
execution_context: int | str | None = None,
|
|
504
|
-
undo: bool | None = None,
|
|
505
|
-
):
|
|
401
|
+
def id_copy(execution_context: int | str | None = None, undo: bool | None = None):
|
|
506
402
|
"""Copy the selected data-blocks to the internal clipboard
|
|
507
403
|
|
|
508
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
509
404
|
:type execution_context: int | str | None
|
|
510
405
|
:type undo: bool | None
|
|
511
406
|
"""
|
|
512
407
|
|
|
513
|
-
def id_delete(
|
|
514
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
515
|
-
execution_context: int | str | None = None,
|
|
516
|
-
undo: bool | None = None,
|
|
517
|
-
):
|
|
408
|
+
def id_delete(execution_context: int | str | None = None, undo: bool | None = None):
|
|
518
409
|
"""Delete the ID under cursor
|
|
519
410
|
|
|
520
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
521
411
|
:type execution_context: int | str | None
|
|
522
412
|
:type undo: bool | None
|
|
523
413
|
"""
|
|
524
414
|
|
|
525
415
|
def id_operation(
|
|
526
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
527
416
|
execution_context: int | str | None = None,
|
|
528
417
|
undo: bool | None = None,
|
|
418
|
+
/,
|
|
529
419
|
*,
|
|
530
420
|
type: typing.Literal[
|
|
531
421
|
"UNLINK",
|
|
@@ -544,7 +434,6 @@ def id_operation(
|
|
|
544
434
|
):
|
|
545
435
|
"""General data-block management operations
|
|
546
436
|
|
|
547
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
548
437
|
:type execution_context: int | str | None
|
|
549
438
|
:type undo: bool | None
|
|
550
439
|
:param type: ID Data Operation
|
|
@@ -584,22 +473,17 @@ def id_operation(
|
|
|
584
473
|
:type type: typing.Literal['UNLINK','LOCAL','SINGLE','DELETE','REMAP','COPY','PASTE','ADD_FAKE','CLEAR_FAKE','RENAME','SELECT_LINKED'] | None
|
|
585
474
|
"""
|
|
586
475
|
|
|
587
|
-
def id_paste(
|
|
588
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
589
|
-
execution_context: int | str | None = None,
|
|
590
|
-
undo: bool | None = None,
|
|
591
|
-
):
|
|
476
|
+
def id_paste(execution_context: int | str | None = None, undo: bool | None = None):
|
|
592
477
|
"""Paste data-blocks from the internal clipboard
|
|
593
478
|
|
|
594
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
595
479
|
:type execution_context: int | str | None
|
|
596
480
|
:type undo: bool | None
|
|
597
481
|
"""
|
|
598
482
|
|
|
599
483
|
def id_remap(
|
|
600
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
601
484
|
execution_context: int | str | None = None,
|
|
602
485
|
undo: bool | None = None,
|
|
486
|
+
/,
|
|
603
487
|
*,
|
|
604
488
|
id_type: bpy.typing.IdTypeItems | None = "OBJECT",
|
|
605
489
|
old_id: str | None = "",
|
|
@@ -607,7 +491,6 @@ def id_remap(
|
|
|
607
491
|
):
|
|
608
492
|
"""Undocumented, consider contributing.
|
|
609
493
|
|
|
610
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
611
494
|
:type execution_context: int | str | None
|
|
612
495
|
:type undo: bool | None
|
|
613
496
|
:param id_type: ID Type
|
|
@@ -619,9 +502,9 @@ def id_remap(
|
|
|
619
502
|
"""
|
|
620
503
|
|
|
621
504
|
def item_activate(
|
|
622
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
623
505
|
execution_context: int | str | None = None,
|
|
624
506
|
undo: bool | None = None,
|
|
507
|
+
/,
|
|
625
508
|
*,
|
|
626
509
|
extend: bool | None = False,
|
|
627
510
|
extend_range: bool | None = False,
|
|
@@ -630,7 +513,6 @@ def item_activate(
|
|
|
630
513
|
):
|
|
631
514
|
"""Handle mouse clicks to select and activate items
|
|
632
515
|
|
|
633
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
634
516
|
:type execution_context: int | str | None
|
|
635
517
|
:type undo: bool | None
|
|
636
518
|
:param extend: Extend, Extend selection for activation
|
|
@@ -644,27 +526,23 @@ def item_activate(
|
|
|
644
526
|
"""
|
|
645
527
|
|
|
646
528
|
def item_drag_drop(
|
|
647
|
-
|
|
648
|
-
execution_context: int | str | None = None,
|
|
649
|
-
undo: bool | None = None,
|
|
529
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
650
530
|
):
|
|
651
531
|
"""Drag and drop element to another place
|
|
652
532
|
|
|
653
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
654
533
|
:type execution_context: int | str | None
|
|
655
534
|
:type undo: bool | None
|
|
656
535
|
"""
|
|
657
536
|
|
|
658
537
|
def item_openclose(
|
|
659
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
660
538
|
execution_context: int | str | None = None,
|
|
661
539
|
undo: bool | None = None,
|
|
540
|
+
/,
|
|
662
541
|
*,
|
|
663
542
|
all: bool | None = False,
|
|
664
543
|
):
|
|
665
544
|
"""Toggle whether item under cursor is enabled or closed
|
|
666
545
|
|
|
667
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
668
546
|
:type execution_context: int | str | None
|
|
669
547
|
:type undo: bool | None
|
|
670
548
|
:param all: All, Close or open all items
|
|
@@ -672,15 +550,14 @@ def item_openclose(
|
|
|
672
550
|
"""
|
|
673
551
|
|
|
674
552
|
def item_rename(
|
|
675
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
676
553
|
execution_context: int | str | None = None,
|
|
677
554
|
undo: bool | None = None,
|
|
555
|
+
/,
|
|
678
556
|
*,
|
|
679
557
|
use_active: bool | None = False,
|
|
680
558
|
):
|
|
681
559
|
"""Rename the active element
|
|
682
560
|
|
|
683
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
684
561
|
:type execution_context: int | str | None
|
|
685
562
|
:type undo: bool | None
|
|
686
563
|
:param use_active: Use Active, Rename the active item, rather than the one the mouse is over
|
|
@@ -688,39 +565,32 @@ def item_rename(
|
|
|
688
565
|
"""
|
|
689
566
|
|
|
690
567
|
def keyingset_add_selected(
|
|
691
|
-
|
|
692
|
-
execution_context: int | str | None = None,
|
|
693
|
-
undo: bool | None = None,
|
|
568
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
694
569
|
):
|
|
695
570
|
"""Add selected items (blue-gray rows) to active Keying Set
|
|
696
571
|
|
|
697
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
698
572
|
:type execution_context: int | str | None
|
|
699
573
|
:type undo: bool | None
|
|
700
574
|
"""
|
|
701
575
|
|
|
702
576
|
def keyingset_remove_selected(
|
|
703
|
-
|
|
704
|
-
execution_context: int | str | None = None,
|
|
705
|
-
undo: bool | None = None,
|
|
577
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
706
578
|
):
|
|
707
579
|
"""Remove selected items (blue-gray rows) from active Keying Set
|
|
708
580
|
|
|
709
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
710
581
|
:type execution_context: int | str | None
|
|
711
582
|
:type undo: bool | None
|
|
712
583
|
"""
|
|
713
584
|
|
|
714
585
|
def lib_operation(
|
|
715
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
716
586
|
execution_context: int | str | None = None,
|
|
717
587
|
undo: bool | None = None,
|
|
588
|
+
/,
|
|
718
589
|
*,
|
|
719
590
|
type: typing.Literal["DELETE", "RELOCATE", "RELOAD"] | None = "DELETE",
|
|
720
591
|
):
|
|
721
592
|
"""Undocumented, consider contributing.
|
|
722
593
|
|
|
723
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
724
594
|
:type execution_context: int | str | None
|
|
725
595
|
:type undo: bool | None
|
|
726
596
|
:param type: Library Operation
|
|
@@ -736,22 +606,17 @@ def lib_operation(
|
|
|
736
606
|
:type type: typing.Literal['DELETE','RELOCATE','RELOAD'] | None
|
|
737
607
|
"""
|
|
738
608
|
|
|
739
|
-
def lib_relocate(
|
|
740
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
741
|
-
execution_context: int | str | None = None,
|
|
742
|
-
undo: bool | None = None,
|
|
743
|
-
):
|
|
609
|
+
def lib_relocate(execution_context: int | str | None = None, undo: bool | None = None):
|
|
744
610
|
"""Relocate the library under cursor
|
|
745
611
|
|
|
746
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
747
612
|
:type execution_context: int | str | None
|
|
748
613
|
:type undo: bool | None
|
|
749
614
|
"""
|
|
750
615
|
|
|
751
616
|
def liboverride_operation(
|
|
752
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
753
617
|
execution_context: int | str | None = None,
|
|
754
618
|
undo: bool | None = None,
|
|
619
|
+
/,
|
|
755
620
|
*,
|
|
756
621
|
type: typing.Literal[
|
|
757
622
|
"OVERRIDE_LIBRARY_CREATE_HIERARCHY",
|
|
@@ -764,7 +629,6 @@ def liboverride_operation(
|
|
|
764
629
|
):
|
|
765
630
|
"""Create, reset or clear library override hierarchies
|
|
766
631
|
|
|
767
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
768
632
|
:type execution_context: int | str | None
|
|
769
633
|
:type undo: bool | None
|
|
770
634
|
:param type: Library Override Operation
|
|
@@ -792,9 +656,9 @@ def liboverride_operation(
|
|
|
792
656
|
"""
|
|
793
657
|
|
|
794
658
|
def liboverride_troubleshoot_operation(
|
|
795
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
796
659
|
execution_context: int | str | None = None,
|
|
797
660
|
undo: bool | None = None,
|
|
661
|
+
/,
|
|
798
662
|
*,
|
|
799
663
|
type: typing.Literal[
|
|
800
664
|
"OVERRIDE_LIBRARY_RESYNC_HIERARCHY",
|
|
@@ -807,7 +671,6 @@ def liboverride_troubleshoot_operation(
|
|
|
807
671
|
):
|
|
808
672
|
"""Advanced operations over library override to help fix broken hierarchies
|
|
809
673
|
|
|
810
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
811
674
|
:type execution_context: int | str | None
|
|
812
675
|
:type undo: bool | None
|
|
813
676
|
:param type: Library Override Troubleshoot Operation
|
|
@@ -834,28 +697,22 @@ def liboverride_troubleshoot_operation(
|
|
|
834
697
|
:type selection_set: typing.Literal['SELECTED','CONTENT','SELECTED_AND_CONTENT'] | None
|
|
835
698
|
"""
|
|
836
699
|
|
|
837
|
-
def material_drop(
|
|
838
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
839
|
-
execution_context: int | str | None = None,
|
|
840
|
-
undo: bool | None = None,
|
|
841
|
-
):
|
|
700
|
+
def material_drop(execution_context: int | str | None = None, undo: bool | None = None):
|
|
842
701
|
"""Drag material to object in Outliner
|
|
843
702
|
|
|
844
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
845
703
|
:type execution_context: int | str | None
|
|
846
704
|
:type undo: bool | None
|
|
847
705
|
"""
|
|
848
706
|
|
|
849
707
|
def modifier_operation(
|
|
850
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
851
708
|
execution_context: int | str | None = None,
|
|
852
709
|
undo: bool | None = None,
|
|
710
|
+
/,
|
|
853
711
|
*,
|
|
854
712
|
type: typing.Literal["APPLY", "DELETE", "TOGVIS", "TOGREN"] | None = "APPLY",
|
|
855
713
|
):
|
|
856
714
|
"""Undocumented, consider contributing.
|
|
857
715
|
|
|
858
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
859
716
|
:type execution_context: int | str | None
|
|
860
717
|
:type undo: bool | None
|
|
861
718
|
:param type: Modifier Operation
|
|
@@ -863,16 +720,15 @@ def modifier_operation(
|
|
|
863
720
|
"""
|
|
864
721
|
|
|
865
722
|
def object_operation(
|
|
866
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
867
723
|
execution_context: int | str | None = None,
|
|
868
724
|
undo: bool | None = None,
|
|
725
|
+
/,
|
|
869
726
|
*,
|
|
870
727
|
type: typing.Literal["SELECT", "DESELECT", "SELECT_HIERARCHY", "REMAP", "RENAME"]
|
|
871
728
|
| None = "SELECT",
|
|
872
729
|
):
|
|
873
730
|
"""Undocumented, consider contributing.
|
|
874
731
|
|
|
875
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
876
732
|
:type execution_context: int | str | None
|
|
877
733
|
:type undo: bool | None
|
|
878
734
|
:param type: Object Operation
|
|
@@ -894,34 +750,26 @@ def object_operation(
|
|
|
894
750
|
:type type: typing.Literal['SELECT','DESELECT','SELECT_HIERARCHY','REMAP','RENAME'] | None
|
|
895
751
|
"""
|
|
896
752
|
|
|
897
|
-
def operation(
|
|
898
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
899
|
-
execution_context: int | str | None = None,
|
|
900
|
-
undo: bool | None = None,
|
|
901
|
-
):
|
|
753
|
+
def operation(execution_context: int | str | None = None, undo: bool | None = None):
|
|
902
754
|
"""Context menu for item operations
|
|
903
755
|
|
|
904
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
905
756
|
:type execution_context: int | str | None
|
|
906
757
|
:type undo: bool | None
|
|
907
758
|
"""
|
|
908
759
|
|
|
909
760
|
def orphans_manage(
|
|
910
|
-
|
|
911
|
-
execution_context: int | str | None = None,
|
|
912
|
-
undo: bool | None = None,
|
|
761
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
913
762
|
):
|
|
914
763
|
"""Open a window to manage unused data
|
|
915
764
|
|
|
916
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
917
765
|
:type execution_context: int | str | None
|
|
918
766
|
:type undo: bool | None
|
|
919
767
|
"""
|
|
920
768
|
|
|
921
769
|
def orphans_purge(
|
|
922
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
923
770
|
execution_context: int | str | None = None,
|
|
924
771
|
undo: bool | None = None,
|
|
772
|
+
/,
|
|
925
773
|
*,
|
|
926
774
|
do_local_ids: bool | None = True,
|
|
927
775
|
do_linked_ids: bool | None = True,
|
|
@@ -929,7 +777,6 @@ def orphans_purge(
|
|
|
929
777
|
):
|
|
930
778
|
"""Clear all orphaned data-blocks without any users from the file
|
|
931
779
|
|
|
932
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
933
780
|
:type execution_context: int | str | None
|
|
934
781
|
:type undo: bool | None
|
|
935
782
|
:param do_local_ids: Local Data-blocks, Include unused local data-blocks into deletion
|
|
@@ -940,52 +787,36 @@ def orphans_purge(
|
|
|
940
787
|
:type do_recursive: bool | None
|
|
941
788
|
"""
|
|
942
789
|
|
|
943
|
-
def parent_clear(
|
|
944
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
945
|
-
execution_context: int | str | None = None,
|
|
946
|
-
undo: bool | None = None,
|
|
947
|
-
):
|
|
790
|
+
def parent_clear(execution_context: int | str | None = None, undo: bool | None = None):
|
|
948
791
|
"""Drag to clear parent in Outliner
|
|
949
792
|
|
|
950
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
951
793
|
:type execution_context: int | str | None
|
|
952
794
|
:type undo: bool | None
|
|
953
795
|
"""
|
|
954
796
|
|
|
955
|
-
def parent_drop(
|
|
956
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
957
|
-
execution_context: int | str | None = None,
|
|
958
|
-
undo: bool | None = None,
|
|
959
|
-
):
|
|
797
|
+
def parent_drop(execution_context: int | str | None = None, undo: bool | None = None):
|
|
960
798
|
"""Drag to parent in Outliner
|
|
961
799
|
|
|
962
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
963
800
|
:type execution_context: int | str | None
|
|
964
801
|
:type undo: bool | None
|
|
965
802
|
"""
|
|
966
803
|
|
|
967
|
-
def scene_drop(
|
|
968
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
969
|
-
execution_context: int | str | None = None,
|
|
970
|
-
undo: bool | None = None,
|
|
971
|
-
):
|
|
804
|
+
def scene_drop(execution_context: int | str | None = None, undo: bool | None = None):
|
|
972
805
|
"""Drag object to scene in Outliner
|
|
973
806
|
|
|
974
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
975
807
|
:type execution_context: int | str | None
|
|
976
808
|
:type undo: bool | None
|
|
977
809
|
"""
|
|
978
810
|
|
|
979
811
|
def scene_operation(
|
|
980
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
981
812
|
execution_context: int | str | None = None,
|
|
982
813
|
undo: bool | None = None,
|
|
814
|
+
/,
|
|
983
815
|
*,
|
|
984
816
|
type: typing.Literal["DELETE"] | None = "DELETE",
|
|
985
817
|
):
|
|
986
818
|
"""Context menu for scene operations
|
|
987
819
|
|
|
988
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
989
820
|
:type execution_context: int | str | None
|
|
990
821
|
:type undo: bool | None
|
|
991
822
|
:param type: Scene Operation
|
|
@@ -993,15 +824,14 @@ def scene_operation(
|
|
|
993
824
|
"""
|
|
994
825
|
|
|
995
826
|
def scroll_page(
|
|
996
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
997
827
|
execution_context: int | str | None = None,
|
|
998
828
|
undo: bool | None = None,
|
|
829
|
+
/,
|
|
999
830
|
*,
|
|
1000
831
|
up: bool | None = False,
|
|
1001
832
|
):
|
|
1002
833
|
"""Scroll page up or down
|
|
1003
834
|
|
|
1004
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1005
835
|
:type execution_context: int | str | None
|
|
1006
836
|
:type undo: bool | None
|
|
1007
837
|
:param up: Up, Scroll up one page
|
|
@@ -1009,15 +839,14 @@ def scroll_page(
|
|
|
1009
839
|
"""
|
|
1010
840
|
|
|
1011
841
|
def select_all(
|
|
1012
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1013
842
|
execution_context: int | str | None = None,
|
|
1014
843
|
undo: bool | None = None,
|
|
844
|
+
/,
|
|
1015
845
|
*,
|
|
1016
846
|
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
|
|
1017
847
|
):
|
|
1018
848
|
"""Toggle the Outliner selection of items
|
|
1019
849
|
|
|
1020
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1021
850
|
:type execution_context: int | str | None
|
|
1022
851
|
:type undo: bool | None
|
|
1023
852
|
:param action: Action, Selection action to execute
|
|
@@ -1037,9 +866,9 @@ def select_all(
|
|
|
1037
866
|
"""
|
|
1038
867
|
|
|
1039
868
|
def select_box(
|
|
1040
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1041
869
|
execution_context: int | str | None = None,
|
|
1042
870
|
undo: bool | None = None,
|
|
871
|
+
/,
|
|
1043
872
|
*,
|
|
1044
873
|
tweak: bool | None = False,
|
|
1045
874
|
xmin: int | None = 0,
|
|
@@ -1051,7 +880,6 @@ def select_box(
|
|
|
1051
880
|
):
|
|
1052
881
|
"""Use box selection to select tree elements
|
|
1053
882
|
|
|
1054
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1055
883
|
:type execution_context: int | str | None
|
|
1056
884
|
:type undo: bool | None
|
|
1057
885
|
:param tweak: Tweak, Tweak gesture from empty space for box selection
|
|
@@ -1080,9 +908,9 @@ def select_box(
|
|
|
1080
908
|
"""
|
|
1081
909
|
|
|
1082
910
|
def select_walk(
|
|
1083
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1084
911
|
execution_context: int | str | None = None,
|
|
1085
912
|
undo: bool | None = None,
|
|
913
|
+
/,
|
|
1086
914
|
*,
|
|
1087
915
|
direction: typing.Literal["UP", "DOWN", "LEFT", "RIGHT"] | None = "UP",
|
|
1088
916
|
extend: bool | None = False,
|
|
@@ -1090,7 +918,6 @@ def select_walk(
|
|
|
1090
918
|
):
|
|
1091
919
|
"""Use walk navigation to select tree elements
|
|
1092
920
|
|
|
1093
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1094
921
|
:type execution_context: int | str | None
|
|
1095
922
|
:type undo: bool | None
|
|
1096
923
|
:param direction: Walk Direction, Select/Deselect element in this direction
|
|
@@ -1101,66 +928,47 @@ def select_walk(
|
|
|
1101
928
|
:type toggle_all: bool | None
|
|
1102
929
|
"""
|
|
1103
930
|
|
|
1104
|
-
def show_active(
|
|
1105
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1106
|
-
execution_context: int | str | None = None,
|
|
1107
|
-
undo: bool | None = None,
|
|
1108
|
-
):
|
|
931
|
+
def show_active(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1109
932
|
"""Open up the tree and adjust the view so that the active object is shown centered
|
|
1110
933
|
|
|
1111
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1112
934
|
:type execution_context: int | str | None
|
|
1113
935
|
:type undo: bool | None
|
|
1114
936
|
"""
|
|
1115
937
|
|
|
1116
938
|
def show_hierarchy(
|
|
1117
|
-
|
|
1118
|
-
execution_context: int | str | None = None,
|
|
1119
|
-
undo: bool | None = None,
|
|
939
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1120
940
|
):
|
|
1121
941
|
"""Open all object entries and close all others
|
|
1122
942
|
|
|
1123
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1124
943
|
:type execution_context: int | str | None
|
|
1125
944
|
:type undo: bool | None
|
|
1126
945
|
"""
|
|
1127
946
|
|
|
1128
947
|
def show_one_level(
|
|
1129
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1130
948
|
execution_context: int | str | None = None,
|
|
1131
949
|
undo: bool | None = None,
|
|
950
|
+
/,
|
|
1132
951
|
*,
|
|
1133
952
|
open: bool | None = True,
|
|
1134
953
|
):
|
|
1135
954
|
"""Expand/collapse all entries by one level
|
|
1136
955
|
|
|
1137
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1138
956
|
:type execution_context: int | str | None
|
|
1139
957
|
:type undo: bool | None
|
|
1140
958
|
:param open: Open, Expand all entries one level deep
|
|
1141
959
|
:type open: bool | None
|
|
1142
960
|
"""
|
|
1143
961
|
|
|
1144
|
-
def start_filter(
|
|
1145
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1146
|
-
execution_context: int | str | None = None,
|
|
1147
|
-
undo: bool | None = None,
|
|
1148
|
-
):
|
|
962
|
+
def start_filter(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1149
963
|
"""Start entering filter text
|
|
1150
964
|
|
|
1151
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1152
965
|
:type execution_context: int | str | None
|
|
1153
966
|
:type undo: bool | None
|
|
1154
967
|
"""
|
|
1155
968
|
|
|
1156
|
-
def unhide_all(
|
|
1157
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1158
|
-
execution_context: int | str | None = None,
|
|
1159
|
-
undo: bool | None = None,
|
|
1160
|
-
):
|
|
969
|
+
def unhide_all(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1161
970
|
"""Unhide all objects and collections
|
|
1162
971
|
|
|
1163
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1164
972
|
:type execution_context: int | str | None
|
|
1165
973
|
:type undo: bool | None
|
|
1166
974
|
"""
|