fake-bpy-module 20240507__py3-none-any.whl → 20240509__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 +152 -76
- bpy/ops/anim/__init__.pyi +212 -106
- bpy/ops/armature/__init__.pyi +192 -96
- bpy/ops/asset/__init__.pyi +64 -32
- bpy/ops/boid/__init__.pyi +32 -16
- bpy/ops/brush/__init__.pyi +36 -18
- bpy/ops/buttons/__init__.pyi +24 -12
- bpy/ops/cachefile/__init__.pyi +20 -10
- bpy/ops/camera/__init__.pyi +8 -4
- bpy/ops/clip/__init__.pyi +368 -184
- bpy/ops/cloth/__init__.pyi +4 -2
- bpy/ops/collection/__init__.pyi +36 -18
- bpy/ops/console/__init__.pyi +84 -42
- bpy/ops/constraint/__init__.pyi +72 -36
- bpy/ops/curve/__init__.pyi +204 -102
- bpy/ops/curves/__init__.pyi +108 -54
- bpy/ops/cycles/__init__.pyi +12 -6
- bpy/ops/dpaint/__init__.pyi +20 -10
- bpy/ops/ed/__init__.pyi +48 -24
- bpy/ops/export_anim/__init__.pyi +4 -2
- bpy/ops/export_mesh/__init__.pyi +4 -2
- bpy/ops/export_scene/__init__.pyi +14 -8
- bpy/ops/file/__init__.pyi +160 -80
- bpy/ops/fluid/__init__.pyi +56 -28
- bpy/ops/font/__init__.pyi +92 -46
- bpy/ops/geometry/__init__.pyi +40 -20
- bpy/ops/gizmogroup/__init__.pyi +8 -4
- bpy/ops/gpencil/__init__.pyi +600 -300
- bpy/ops/graph/__init__.pyi +260 -130
- bpy/ops/grease_pencil/__init__.pyi +268 -134
- bpy/ops/image/__init__.pyi +188 -94
- bpy/ops/import_anim/__init__.pyi +4 -2
- bpy/ops/import_curve/__init__.pyi +4 -2
- bpy/ops/import_mesh/__init__.pyi +4 -2
- bpy/ops/import_scene/__init__.pyi +12 -6
- bpy/ops/info/__init__.pyi +28 -14
- bpy/ops/lattice/__init__.pyi +32 -16
- bpy/ops/marker/__init__.pyi +44 -22
- bpy/ops/mask/__init__.pyi +156 -78
- bpy/ops/material/__init__.pyi +12 -6
- bpy/ops/mball/__init__.pyi +32 -16
- bpy/ops/mesh/__init__.pyi +652 -326
- bpy/ops/nla/__init__.pyi +158 -80
- bpy/ops/node/__init__.pyi +404 -202
- bpy/ops/object/__init__.pyi +1002 -490
- bpy/ops/outliner/__init__.pyi +276 -138
- bpy/ops/paint/__init__.pyi +212 -106
- bpy/ops/paintcurve/__init__.pyi +32 -16
- bpy/ops/palette/__init__.pyi +28 -14
- bpy/ops/particle/__init__.pyi +144 -72
- bpy/ops/pose/__init__.pyi +156 -78
- bpy/ops/poselib/__init__.pyi +36 -18
- bpy/ops/preferences/__init__.pyi +152 -76
- bpy/ops/ptcache/__init__.pyi +28 -14
- bpy/ops/render/__init__.pyi +48 -24
- bpy/ops/rigidbody/__init__.pyi +52 -26
- bpy/ops/scene/__init__.pyi +156 -78
- bpy/ops/screen/__init__.pyi +156 -78
- bpy/ops/script/__init__.pyi +12 -6
- bpy/ops/sculpt/__init__.pyi +134 -68
- bpy/ops/sculpt_curves/__init__.pyi +16 -8
- bpy/ops/sequencer/__init__.pyi +340 -170
- bpy/ops/sound/__init__.pyi +28 -14
- bpy/ops/spreadsheet/__init__.pyi +16 -8
- bpy/ops/surface/__init__.pyi +24 -12
- bpy/ops/text/__init__.pyi +172 -86
- bpy/ops/text_editor/__init__.pyi +4 -2
- bpy/ops/texture/__init__.pyi +16 -8
- bpy/ops/transform/__init__.pyi +108 -54
- bpy/ops/ui/__init__.pyi +132 -66
- bpy/ops/uilist/__init__.pyi +12 -6
- bpy/ops/uv/__init__.pyi +196 -98
- bpy/ops/view2d/__init__.pyi +56 -28
- bpy/ops/view3d/__init__.pyi +268 -134
- bpy/ops/wm/__init__.pyi +493 -224
- bpy/ops/workspace/__init__.pyi +28 -14
- bpy/ops/world/__init__.pyi +4 -2
- bpy/types/__init__.pyi +1250 -631
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/RECORD +83 -83
- mathutils/__init__.pyi +20 -0
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/top_level.txt +0 -0
bpy/ops/outliner/__init__.pyi
CHANGED
|
@@ -4,14 +4,16 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def action_set(
|
|
7
|
-
override_context: typing.Optional[
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
8
10
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
9
11
|
undo: typing.Optional[bool] = None,
|
|
10
12
|
action: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
11
13
|
):
|
|
12
14
|
"""Change the active action used
|
|
13
15
|
|
|
14
|
-
:type override_context: typing.Optional[typing.Union[
|
|
16
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
15
17
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
16
18
|
:type undo: typing.Optional[bool]
|
|
17
19
|
:param action: Action
|
|
@@ -21,14 +23,16 @@ def action_set(
|
|
|
21
23
|
...
|
|
22
24
|
|
|
23
25
|
def animdata_operation(
|
|
24
|
-
override_context: typing.Optional[
|
|
26
|
+
override_context: typing.Optional[
|
|
27
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
28
|
+
] = None,
|
|
25
29
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
26
30
|
undo: typing.Optional[bool] = None,
|
|
27
31
|
type: typing.Optional[typing.Any] = "CLEAR_ANIMDATA",
|
|
28
32
|
):
|
|
29
33
|
"""Undocumented, consider contributing.
|
|
30
34
|
|
|
31
|
-
:type override_context: typing.Optional[typing.Union[
|
|
35
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
32
36
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
33
37
|
:type undo: typing.Optional[bool]
|
|
34
38
|
:param type: Animation Operation
|
|
@@ -53,14 +57,16 @@ def animdata_operation(
|
|
|
53
57
|
...
|
|
54
58
|
|
|
55
59
|
def collection_color_tag_set(
|
|
56
|
-
override_context: typing.Optional[
|
|
60
|
+
override_context: typing.Optional[
|
|
61
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
62
|
+
] = None,
|
|
57
63
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
58
64
|
undo: typing.Optional[bool] = None,
|
|
59
65
|
color: typing.Optional[typing.Union[str, int]] = "NONE",
|
|
60
66
|
):
|
|
61
67
|
"""Set a color tag for the selected collections
|
|
62
68
|
|
|
63
|
-
:type override_context: typing.Optional[typing.Union[
|
|
69
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
64
70
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
65
71
|
:type undo: typing.Optional[bool]
|
|
66
72
|
:param color: Color Tag
|
|
@@ -70,13 +76,15 @@ def collection_color_tag_set(
|
|
|
70
76
|
...
|
|
71
77
|
|
|
72
78
|
def collection_disable(
|
|
73
|
-
override_context: typing.Optional[
|
|
79
|
+
override_context: typing.Optional[
|
|
80
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
81
|
+
] = None,
|
|
74
82
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
75
83
|
undo: typing.Optional[bool] = None,
|
|
76
84
|
):
|
|
77
85
|
"""Disable viewport display in the view layers
|
|
78
86
|
|
|
79
|
-
:type override_context: typing.Optional[typing.Union[
|
|
87
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
80
88
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
81
89
|
:type undo: typing.Optional[bool]
|
|
82
90
|
"""
|
|
@@ -84,13 +92,15 @@ def collection_disable(
|
|
|
84
92
|
...
|
|
85
93
|
|
|
86
94
|
def collection_disable_render(
|
|
87
|
-
override_context: typing.Optional[
|
|
95
|
+
override_context: typing.Optional[
|
|
96
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
97
|
+
] = None,
|
|
88
98
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
89
99
|
undo: typing.Optional[bool] = None,
|
|
90
100
|
):
|
|
91
101
|
"""Do not render this collection
|
|
92
102
|
|
|
93
|
-
:type override_context: typing.Optional[typing.Union[
|
|
103
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
94
104
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
95
105
|
:type undo: typing.Optional[bool]
|
|
96
106
|
"""
|
|
@@ -98,13 +108,15 @@ def collection_disable_render(
|
|
|
98
108
|
...
|
|
99
109
|
|
|
100
110
|
def collection_drop(
|
|
101
|
-
override_context: typing.Optional[
|
|
111
|
+
override_context: typing.Optional[
|
|
112
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
113
|
+
] = None,
|
|
102
114
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
103
115
|
undo: typing.Optional[bool] = None,
|
|
104
116
|
):
|
|
105
117
|
"""Drag to move to collection in Outliner
|
|
106
118
|
|
|
107
|
-
:type override_context: typing.Optional[typing.Union[
|
|
119
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
108
120
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
109
121
|
:type undo: typing.Optional[bool]
|
|
110
122
|
"""
|
|
@@ -112,13 +124,15 @@ def collection_drop(
|
|
|
112
124
|
...
|
|
113
125
|
|
|
114
126
|
def collection_duplicate(
|
|
115
|
-
override_context: typing.Optional[
|
|
127
|
+
override_context: typing.Optional[
|
|
128
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
129
|
+
] = None,
|
|
116
130
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
117
131
|
undo: typing.Optional[bool] = None,
|
|
118
132
|
):
|
|
119
133
|
"""Recursively duplicate the collection, all its children, objects and object data
|
|
120
134
|
|
|
121
|
-
:type override_context: typing.Optional[typing.Union[
|
|
135
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
122
136
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
123
137
|
:type undo: typing.Optional[bool]
|
|
124
138
|
"""
|
|
@@ -126,13 +140,15 @@ def collection_duplicate(
|
|
|
126
140
|
...
|
|
127
141
|
|
|
128
142
|
def collection_duplicate_linked(
|
|
129
|
-
override_context: typing.Optional[
|
|
143
|
+
override_context: typing.Optional[
|
|
144
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
145
|
+
] = None,
|
|
130
146
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
131
147
|
undo: typing.Optional[bool] = None,
|
|
132
148
|
):
|
|
133
149
|
"""Recursively duplicate the collection, all its children and objects, with linked object data
|
|
134
150
|
|
|
135
|
-
:type override_context: typing.Optional[typing.Union[
|
|
151
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
136
152
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
137
153
|
:type undo: typing.Optional[bool]
|
|
138
154
|
"""
|
|
@@ -140,13 +156,15 @@ def collection_duplicate_linked(
|
|
|
140
156
|
...
|
|
141
157
|
|
|
142
158
|
def collection_enable(
|
|
143
|
-
override_context: typing.Optional[
|
|
159
|
+
override_context: typing.Optional[
|
|
160
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
161
|
+
] = None,
|
|
144
162
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
145
163
|
undo: typing.Optional[bool] = None,
|
|
146
164
|
):
|
|
147
165
|
"""Enable viewport display in the view layers
|
|
148
166
|
|
|
149
|
-
:type override_context: typing.Optional[typing.Union[
|
|
167
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
150
168
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
151
169
|
:type undo: typing.Optional[bool]
|
|
152
170
|
"""
|
|
@@ -154,13 +172,15 @@ def collection_enable(
|
|
|
154
172
|
...
|
|
155
173
|
|
|
156
174
|
def collection_enable_render(
|
|
157
|
-
override_context: typing.Optional[
|
|
175
|
+
override_context: typing.Optional[
|
|
176
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
177
|
+
] = None,
|
|
158
178
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
159
179
|
undo: typing.Optional[bool] = None,
|
|
160
180
|
):
|
|
161
181
|
"""Render the collection
|
|
162
182
|
|
|
163
|
-
:type override_context: typing.Optional[typing.Union[
|
|
183
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
164
184
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
165
185
|
:type undo: typing.Optional[bool]
|
|
166
186
|
"""
|
|
@@ -168,13 +188,15 @@ def collection_enable_render(
|
|
|
168
188
|
...
|
|
169
189
|
|
|
170
190
|
def collection_exclude_clear(
|
|
171
|
-
override_context: typing.Optional[
|
|
191
|
+
override_context: typing.Optional[
|
|
192
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
193
|
+
] = None,
|
|
172
194
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
173
195
|
undo: typing.Optional[bool] = None,
|
|
174
196
|
):
|
|
175
197
|
"""Include collection in the active view layer
|
|
176
198
|
|
|
177
|
-
:type override_context: typing.Optional[typing.Union[
|
|
199
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
178
200
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
179
201
|
:type undo: typing.Optional[bool]
|
|
180
202
|
"""
|
|
@@ -182,13 +204,15 @@ def collection_exclude_clear(
|
|
|
182
204
|
...
|
|
183
205
|
|
|
184
206
|
def collection_exclude_set(
|
|
185
|
-
override_context: typing.Optional[
|
|
207
|
+
override_context: typing.Optional[
|
|
208
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
209
|
+
] = None,
|
|
186
210
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
187
211
|
undo: typing.Optional[bool] = None,
|
|
188
212
|
):
|
|
189
213
|
"""Exclude collection from the active view layer
|
|
190
214
|
|
|
191
|
-
:type override_context: typing.Optional[typing.Union[
|
|
215
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
192
216
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
193
217
|
:type undo: typing.Optional[bool]
|
|
194
218
|
"""
|
|
@@ -196,13 +220,15 @@ def collection_exclude_set(
|
|
|
196
220
|
...
|
|
197
221
|
|
|
198
222
|
def collection_hide(
|
|
199
|
-
override_context: typing.Optional[
|
|
223
|
+
override_context: typing.Optional[
|
|
224
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
225
|
+
] = None,
|
|
200
226
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
201
227
|
undo: typing.Optional[bool] = None,
|
|
202
228
|
):
|
|
203
229
|
"""Hide the collection in this view layer
|
|
204
230
|
|
|
205
|
-
:type override_context: typing.Optional[typing.Union[
|
|
231
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
206
232
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
207
233
|
:type undo: typing.Optional[bool]
|
|
208
234
|
"""
|
|
@@ -210,13 +236,15 @@ def collection_hide(
|
|
|
210
236
|
...
|
|
211
237
|
|
|
212
238
|
def collection_hide_inside(
|
|
213
|
-
override_context: typing.Optional[
|
|
239
|
+
override_context: typing.Optional[
|
|
240
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
241
|
+
] = None,
|
|
214
242
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
215
243
|
undo: typing.Optional[bool] = None,
|
|
216
244
|
):
|
|
217
245
|
"""Hide all the objects and collections inside the collection
|
|
218
246
|
|
|
219
|
-
:type override_context: typing.Optional[typing.Union[
|
|
247
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
220
248
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
221
249
|
:type undo: typing.Optional[bool]
|
|
222
250
|
"""
|
|
@@ -224,13 +252,15 @@ def collection_hide_inside(
|
|
|
224
252
|
...
|
|
225
253
|
|
|
226
254
|
def collection_hierarchy_delete(
|
|
227
|
-
override_context: typing.Optional[
|
|
255
|
+
override_context: typing.Optional[
|
|
256
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
257
|
+
] = None,
|
|
228
258
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
229
259
|
undo: typing.Optional[bool] = None,
|
|
230
260
|
):
|
|
231
261
|
"""Delete selected collection hierarchies
|
|
232
262
|
|
|
233
|
-
:type override_context: typing.Optional[typing.Union[
|
|
263
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
234
264
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
235
265
|
:type undo: typing.Optional[bool]
|
|
236
266
|
"""
|
|
@@ -238,13 +268,15 @@ def collection_hierarchy_delete(
|
|
|
238
268
|
...
|
|
239
269
|
|
|
240
270
|
def collection_holdout_clear(
|
|
241
|
-
override_context: typing.Optional[
|
|
271
|
+
override_context: typing.Optional[
|
|
272
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
273
|
+
] = None,
|
|
242
274
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
243
275
|
undo: typing.Optional[bool] = None,
|
|
244
276
|
):
|
|
245
277
|
"""Clear masking of collection in the active view layer
|
|
246
278
|
|
|
247
|
-
:type override_context: typing.Optional[typing.Union[
|
|
279
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
248
280
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
249
281
|
:type undo: typing.Optional[bool]
|
|
250
282
|
"""
|
|
@@ -252,13 +284,15 @@ def collection_holdout_clear(
|
|
|
252
284
|
...
|
|
253
285
|
|
|
254
286
|
def collection_holdout_set(
|
|
255
|
-
override_context: typing.Optional[
|
|
287
|
+
override_context: typing.Optional[
|
|
288
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
289
|
+
] = None,
|
|
256
290
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
257
291
|
undo: typing.Optional[bool] = None,
|
|
258
292
|
):
|
|
259
293
|
"""Mask collection in the active view layer
|
|
260
294
|
|
|
261
|
-
:type override_context: typing.Optional[typing.Union[
|
|
295
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
262
296
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
263
297
|
:type undo: typing.Optional[bool]
|
|
264
298
|
"""
|
|
@@ -266,13 +300,15 @@ def collection_holdout_set(
|
|
|
266
300
|
...
|
|
267
301
|
|
|
268
302
|
def collection_indirect_only_clear(
|
|
269
|
-
override_context: typing.Optional[
|
|
303
|
+
override_context: typing.Optional[
|
|
304
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
305
|
+
] = None,
|
|
270
306
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
271
307
|
undo: typing.Optional[bool] = None,
|
|
272
308
|
):
|
|
273
309
|
"""Clear collection contributing only indirectly in the view layer
|
|
274
310
|
|
|
275
|
-
:type override_context: typing.Optional[typing.Union[
|
|
311
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
276
312
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
277
313
|
:type undo: typing.Optional[bool]
|
|
278
314
|
"""
|
|
@@ -280,13 +316,15 @@ def collection_indirect_only_clear(
|
|
|
280
316
|
...
|
|
281
317
|
|
|
282
318
|
def collection_indirect_only_set(
|
|
283
|
-
override_context: typing.Optional[
|
|
319
|
+
override_context: typing.Optional[
|
|
320
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
321
|
+
] = None,
|
|
284
322
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
285
323
|
undo: typing.Optional[bool] = None,
|
|
286
324
|
):
|
|
287
325
|
"""Set collection to only contribute indirectly (through shadows and reflections) in the view layer
|
|
288
326
|
|
|
289
|
-
:type override_context: typing.Optional[typing.Union[
|
|
327
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
290
328
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
291
329
|
:type undo: typing.Optional[bool]
|
|
292
330
|
"""
|
|
@@ -294,13 +332,15 @@ def collection_indirect_only_set(
|
|
|
294
332
|
...
|
|
295
333
|
|
|
296
334
|
def collection_instance(
|
|
297
|
-
override_context: typing.Optional[
|
|
335
|
+
override_context: typing.Optional[
|
|
336
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
337
|
+
] = None,
|
|
298
338
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
299
339
|
undo: typing.Optional[bool] = None,
|
|
300
340
|
):
|
|
301
341
|
"""Instance selected collections to active scene
|
|
302
342
|
|
|
303
|
-
:type override_context: typing.Optional[typing.Union[
|
|
343
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
304
344
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
305
345
|
:type undo: typing.Optional[bool]
|
|
306
346
|
"""
|
|
@@ -308,14 +348,16 @@ def collection_instance(
|
|
|
308
348
|
...
|
|
309
349
|
|
|
310
350
|
def collection_isolate(
|
|
311
|
-
override_context: typing.Optional[
|
|
351
|
+
override_context: typing.Optional[
|
|
352
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
353
|
+
] = None,
|
|
312
354
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
313
355
|
undo: typing.Optional[bool] = None,
|
|
314
356
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
315
357
|
):
|
|
316
358
|
"""Hide all but this collection and its parents
|
|
317
359
|
|
|
318
|
-
:type override_context: typing.Optional[typing.Union[
|
|
360
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
319
361
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
320
362
|
:type undo: typing.Optional[bool]
|
|
321
363
|
:param extend: Extend, Extend current visible collections
|
|
@@ -325,13 +367,15 @@ def collection_isolate(
|
|
|
325
367
|
...
|
|
326
368
|
|
|
327
369
|
def collection_link(
|
|
328
|
-
override_context: typing.Optional[
|
|
370
|
+
override_context: typing.Optional[
|
|
371
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
372
|
+
] = None,
|
|
329
373
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
330
374
|
undo: typing.Optional[bool] = None,
|
|
331
375
|
):
|
|
332
376
|
"""Link selected collections to active scene
|
|
333
377
|
|
|
334
|
-
:type override_context: typing.Optional[typing.Union[
|
|
378
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
335
379
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
336
380
|
:type undo: typing.Optional[bool]
|
|
337
381
|
"""
|
|
@@ -339,14 +383,16 @@ def collection_link(
|
|
|
339
383
|
...
|
|
340
384
|
|
|
341
385
|
def collection_new(
|
|
342
|
-
override_context: typing.Optional[
|
|
386
|
+
override_context: typing.Optional[
|
|
387
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
388
|
+
] = None,
|
|
343
389
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
344
390
|
undo: typing.Optional[bool] = None,
|
|
345
391
|
nested: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
346
392
|
):
|
|
347
393
|
"""Add a new collection inside selected collection
|
|
348
394
|
|
|
349
|
-
:type override_context: typing.Optional[typing.Union[
|
|
395
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
350
396
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
351
397
|
:type undo: typing.Optional[bool]
|
|
352
398
|
:param nested: Nested, Add as child of selected collection
|
|
@@ -356,13 +402,15 @@ def collection_new(
|
|
|
356
402
|
...
|
|
357
403
|
|
|
358
404
|
def collection_objects_deselect(
|
|
359
|
-
override_context: typing.Optional[
|
|
405
|
+
override_context: typing.Optional[
|
|
406
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
407
|
+
] = None,
|
|
360
408
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
361
409
|
undo: typing.Optional[bool] = None,
|
|
362
410
|
):
|
|
363
411
|
"""Deselect objects in collection
|
|
364
412
|
|
|
365
|
-
:type override_context: typing.Optional[typing.Union[
|
|
413
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
366
414
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
367
415
|
:type undo: typing.Optional[bool]
|
|
368
416
|
"""
|
|
@@ -370,13 +418,15 @@ def collection_objects_deselect(
|
|
|
370
418
|
...
|
|
371
419
|
|
|
372
420
|
def collection_objects_select(
|
|
373
|
-
override_context: typing.Optional[
|
|
421
|
+
override_context: typing.Optional[
|
|
422
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
423
|
+
] = None,
|
|
374
424
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
375
425
|
undo: typing.Optional[bool] = None,
|
|
376
426
|
):
|
|
377
427
|
"""Select objects in collection
|
|
378
428
|
|
|
379
|
-
:type override_context: typing.Optional[typing.Union[
|
|
429
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
380
430
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
381
431
|
:type undo: typing.Optional[bool]
|
|
382
432
|
"""
|
|
@@ -384,13 +434,15 @@ def collection_objects_select(
|
|
|
384
434
|
...
|
|
385
435
|
|
|
386
436
|
def collection_show(
|
|
387
|
-
override_context: typing.Optional[
|
|
437
|
+
override_context: typing.Optional[
|
|
438
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
439
|
+
] = None,
|
|
388
440
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
389
441
|
undo: typing.Optional[bool] = None,
|
|
390
442
|
):
|
|
391
443
|
"""Show the collection in this view layer
|
|
392
444
|
|
|
393
|
-
:type override_context: typing.Optional[typing.Union[
|
|
445
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
394
446
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
395
447
|
:type undo: typing.Optional[bool]
|
|
396
448
|
"""
|
|
@@ -398,13 +450,15 @@ def collection_show(
|
|
|
398
450
|
...
|
|
399
451
|
|
|
400
452
|
def collection_show_inside(
|
|
401
|
-
override_context: typing.Optional[
|
|
453
|
+
override_context: typing.Optional[
|
|
454
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
455
|
+
] = None,
|
|
402
456
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
403
457
|
undo: typing.Optional[bool] = None,
|
|
404
458
|
):
|
|
405
459
|
"""Show all the objects and collections inside the collection
|
|
406
460
|
|
|
407
|
-
:type override_context: typing.Optional[typing.Union[
|
|
461
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
408
462
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
409
463
|
:type undo: typing.Optional[bool]
|
|
410
464
|
"""
|
|
@@ -412,14 +466,16 @@ def collection_show_inside(
|
|
|
412
466
|
...
|
|
413
467
|
|
|
414
468
|
def constraint_operation(
|
|
415
|
-
override_context: typing.Optional[
|
|
469
|
+
override_context: typing.Optional[
|
|
470
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
471
|
+
] = None,
|
|
416
472
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
417
473
|
undo: typing.Optional[bool] = None,
|
|
418
474
|
type: typing.Optional[typing.Any] = "ENABLE",
|
|
419
475
|
):
|
|
420
476
|
"""Undocumented, consider contributing.
|
|
421
477
|
|
|
422
|
-
:type override_context: typing.Optional[typing.Union[
|
|
478
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
423
479
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
424
480
|
:type undo: typing.Optional[bool]
|
|
425
481
|
:param type: Constraint Operation
|
|
@@ -429,14 +485,16 @@ def constraint_operation(
|
|
|
429
485
|
...
|
|
430
486
|
|
|
431
487
|
def data_operation(
|
|
432
|
-
override_context: typing.Optional[
|
|
488
|
+
override_context: typing.Optional[
|
|
489
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
490
|
+
] = None,
|
|
433
491
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
434
492
|
undo: typing.Optional[bool] = None,
|
|
435
493
|
type: typing.Optional[typing.Union[str, int, typing.Any]] = "DEFAULT",
|
|
436
494
|
):
|
|
437
495
|
"""Undocumented, consider contributing.
|
|
438
496
|
|
|
439
|
-
:type override_context: typing.Optional[typing.Union[
|
|
497
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
440
498
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
441
499
|
:type undo: typing.Optional[bool]
|
|
442
500
|
:param type: Data Operation
|
|
@@ -446,13 +504,15 @@ def data_operation(
|
|
|
446
504
|
...
|
|
447
505
|
|
|
448
506
|
def datastack_drop(
|
|
449
|
-
override_context: typing.Optional[
|
|
507
|
+
override_context: typing.Optional[
|
|
508
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
509
|
+
] = None,
|
|
450
510
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
451
511
|
undo: typing.Optional[bool] = None,
|
|
452
512
|
):
|
|
453
513
|
"""Copy or reorder modifiers, constraints, and effects
|
|
454
514
|
|
|
455
|
-
:type override_context: typing.Optional[typing.Union[
|
|
515
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
456
516
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
457
517
|
:type undo: typing.Optional[bool]
|
|
458
518
|
"""
|
|
@@ -460,14 +520,16 @@ def datastack_drop(
|
|
|
460
520
|
...
|
|
461
521
|
|
|
462
522
|
def delete(
|
|
463
|
-
override_context: typing.Optional[
|
|
523
|
+
override_context: typing.Optional[
|
|
524
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
525
|
+
] = None,
|
|
464
526
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
465
527
|
undo: typing.Optional[bool] = None,
|
|
466
528
|
hierarchy: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
467
529
|
):
|
|
468
530
|
"""Delete selected objects and collections
|
|
469
531
|
|
|
470
|
-
:type override_context: typing.Optional[typing.Union[
|
|
532
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
471
533
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
472
534
|
:type undo: typing.Optional[bool]
|
|
473
535
|
:param hierarchy: Hierarchy, Delete child objects and collections
|
|
@@ -477,13 +539,15 @@ def delete(
|
|
|
477
539
|
...
|
|
478
540
|
|
|
479
541
|
def drivers_add_selected(
|
|
480
|
-
override_context: typing.Optional[
|
|
542
|
+
override_context: typing.Optional[
|
|
543
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
544
|
+
] = None,
|
|
481
545
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
482
546
|
undo: typing.Optional[bool] = None,
|
|
483
547
|
):
|
|
484
548
|
"""Add drivers to selected items
|
|
485
549
|
|
|
486
|
-
:type override_context: typing.Optional[typing.Union[
|
|
550
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
487
551
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
488
552
|
:type undo: typing.Optional[bool]
|
|
489
553
|
"""
|
|
@@ -491,13 +555,15 @@ def drivers_add_selected(
|
|
|
491
555
|
...
|
|
492
556
|
|
|
493
557
|
def drivers_delete_selected(
|
|
494
|
-
override_context: typing.Optional[
|
|
558
|
+
override_context: typing.Optional[
|
|
559
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
560
|
+
] = None,
|
|
495
561
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
496
562
|
undo: typing.Optional[bool] = None,
|
|
497
563
|
):
|
|
498
564
|
"""Delete drivers assigned to selected items
|
|
499
565
|
|
|
500
|
-
:type override_context: typing.Optional[typing.Union[
|
|
566
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
501
567
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
502
568
|
:type undo: typing.Optional[bool]
|
|
503
569
|
"""
|
|
@@ -505,13 +571,15 @@ def drivers_delete_selected(
|
|
|
505
571
|
...
|
|
506
572
|
|
|
507
573
|
def expanded_toggle(
|
|
508
|
-
override_context: typing.Optional[
|
|
574
|
+
override_context: typing.Optional[
|
|
575
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
576
|
+
] = None,
|
|
509
577
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
510
578
|
undo: typing.Optional[bool] = None,
|
|
511
579
|
):
|
|
512
580
|
"""Expand/Collapse all items
|
|
513
581
|
|
|
514
|
-
:type override_context: typing.Optional[typing.Union[
|
|
582
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
515
583
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
516
584
|
:type undo: typing.Optional[bool]
|
|
517
585
|
"""
|
|
@@ -519,13 +587,15 @@ def expanded_toggle(
|
|
|
519
587
|
...
|
|
520
588
|
|
|
521
589
|
def hide(
|
|
522
|
-
override_context: typing.Optional[
|
|
590
|
+
override_context: typing.Optional[
|
|
591
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
592
|
+
] = None,
|
|
523
593
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
524
594
|
undo: typing.Optional[bool] = None,
|
|
525
595
|
):
|
|
526
596
|
"""Hide selected objects and collections
|
|
527
597
|
|
|
528
|
-
:type override_context: typing.Optional[typing.Union[
|
|
598
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
529
599
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
530
600
|
:type undo: typing.Optional[bool]
|
|
531
601
|
"""
|
|
@@ -533,13 +603,15 @@ def hide(
|
|
|
533
603
|
...
|
|
534
604
|
|
|
535
605
|
def highlight_update(
|
|
536
|
-
override_context: typing.Optional[
|
|
606
|
+
override_context: typing.Optional[
|
|
607
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
608
|
+
] = None,
|
|
537
609
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
538
610
|
undo: typing.Optional[bool] = None,
|
|
539
611
|
):
|
|
540
612
|
"""Update the item highlight based on the current mouse position
|
|
541
613
|
|
|
542
|
-
:type override_context: typing.Optional[typing.Union[
|
|
614
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
543
615
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
544
616
|
:type undo: typing.Optional[bool]
|
|
545
617
|
"""
|
|
@@ -547,13 +619,15 @@ def highlight_update(
|
|
|
547
619
|
...
|
|
548
620
|
|
|
549
621
|
def id_copy(
|
|
550
|
-
override_context: typing.Optional[
|
|
622
|
+
override_context: typing.Optional[
|
|
623
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
624
|
+
] = None,
|
|
551
625
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
552
626
|
undo: typing.Optional[bool] = None,
|
|
553
627
|
):
|
|
554
628
|
"""Copy the selected data-blocks to the internal clipboard
|
|
555
629
|
|
|
556
|
-
:type override_context: typing.Optional[typing.Union[
|
|
630
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
557
631
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
558
632
|
:type undo: typing.Optional[bool]
|
|
559
633
|
"""
|
|
@@ -561,13 +635,15 @@ def id_copy(
|
|
|
561
635
|
...
|
|
562
636
|
|
|
563
637
|
def id_delete(
|
|
564
|
-
override_context: typing.Optional[
|
|
638
|
+
override_context: typing.Optional[
|
|
639
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
640
|
+
] = None,
|
|
565
641
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
566
642
|
undo: typing.Optional[bool] = None,
|
|
567
643
|
):
|
|
568
644
|
"""Delete the ID under cursor
|
|
569
645
|
|
|
570
|
-
:type override_context: typing.Optional[typing.Union[
|
|
646
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
571
647
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
572
648
|
:type undo: typing.Optional[bool]
|
|
573
649
|
"""
|
|
@@ -575,14 +651,16 @@ def id_delete(
|
|
|
575
651
|
...
|
|
576
652
|
|
|
577
653
|
def id_operation(
|
|
578
|
-
override_context: typing.Optional[
|
|
654
|
+
override_context: typing.Optional[
|
|
655
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
656
|
+
] = None,
|
|
579
657
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
580
658
|
undo: typing.Optional[bool] = None,
|
|
581
659
|
type: typing.Optional[typing.Any] = "UNLINK",
|
|
582
660
|
):
|
|
583
661
|
"""General data-block management operations
|
|
584
662
|
|
|
585
|
-
:type override_context: typing.Optional[typing.Union[
|
|
663
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
586
664
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
587
665
|
:type undo: typing.Optional[bool]
|
|
588
666
|
:param type: ID Data Operation
|
|
@@ -625,13 +703,15 @@ def id_operation(
|
|
|
625
703
|
...
|
|
626
704
|
|
|
627
705
|
def id_paste(
|
|
628
|
-
override_context: typing.Optional[
|
|
706
|
+
override_context: typing.Optional[
|
|
707
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
708
|
+
] = None,
|
|
629
709
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
630
710
|
undo: typing.Optional[bool] = None,
|
|
631
711
|
):
|
|
632
712
|
"""Paste data-blocks from the internal clipboard
|
|
633
713
|
|
|
634
|
-
:type override_context: typing.Optional[typing.Union[
|
|
714
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
635
715
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
636
716
|
:type undo: typing.Optional[bool]
|
|
637
717
|
"""
|
|
@@ -639,7 +719,9 @@ def id_paste(
|
|
|
639
719
|
...
|
|
640
720
|
|
|
641
721
|
def id_remap(
|
|
642
|
-
override_context: typing.Optional[
|
|
722
|
+
override_context: typing.Optional[
|
|
723
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
724
|
+
] = None,
|
|
643
725
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
644
726
|
undo: typing.Optional[bool] = None,
|
|
645
727
|
id_type: typing.Optional[typing.Union[str, int]] = "OBJECT",
|
|
@@ -648,7 +730,7 @@ def id_remap(
|
|
|
648
730
|
):
|
|
649
731
|
"""Undocumented, consider contributing.
|
|
650
732
|
|
|
651
|
-
:type override_context: typing.Optional[typing.Union[
|
|
733
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
652
734
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
653
735
|
:type undo: typing.Optional[bool]
|
|
654
736
|
:param id_type: ID Type
|
|
@@ -662,7 +744,9 @@ def id_remap(
|
|
|
662
744
|
...
|
|
663
745
|
|
|
664
746
|
def item_activate(
|
|
665
|
-
override_context: typing.Optional[
|
|
747
|
+
override_context: typing.Optional[
|
|
748
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
749
|
+
] = None,
|
|
666
750
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
667
751
|
undo: typing.Optional[bool] = None,
|
|
668
752
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -672,7 +756,7 @@ def item_activate(
|
|
|
672
756
|
):
|
|
673
757
|
"""Handle mouse clicks to select and activate items
|
|
674
758
|
|
|
675
|
-
:type override_context: typing.Optional[typing.Union[
|
|
759
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
676
760
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
677
761
|
:type undo: typing.Optional[bool]
|
|
678
762
|
:param extend: Extend, Extend selection for activation
|
|
@@ -688,13 +772,15 @@ def item_activate(
|
|
|
688
772
|
...
|
|
689
773
|
|
|
690
774
|
def item_drag_drop(
|
|
691
|
-
override_context: typing.Optional[
|
|
775
|
+
override_context: typing.Optional[
|
|
776
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
777
|
+
] = None,
|
|
692
778
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
693
779
|
undo: typing.Optional[bool] = None,
|
|
694
780
|
):
|
|
695
781
|
"""Drag and drop element to another place
|
|
696
782
|
|
|
697
|
-
:type override_context: typing.Optional[typing.Union[
|
|
783
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
698
784
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
699
785
|
:type undo: typing.Optional[bool]
|
|
700
786
|
"""
|
|
@@ -702,14 +788,16 @@ def item_drag_drop(
|
|
|
702
788
|
...
|
|
703
789
|
|
|
704
790
|
def item_openclose(
|
|
705
|
-
override_context: typing.Optional[
|
|
791
|
+
override_context: typing.Optional[
|
|
792
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
793
|
+
] = None,
|
|
706
794
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
707
795
|
undo: typing.Optional[bool] = None,
|
|
708
796
|
all: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
709
797
|
):
|
|
710
798
|
"""Toggle whether item under cursor is enabled or closed
|
|
711
799
|
|
|
712
|
-
:type override_context: typing.Optional[typing.Union[
|
|
800
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
713
801
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
714
802
|
:type undo: typing.Optional[bool]
|
|
715
803
|
:param all: All, Close or open all items
|
|
@@ -719,14 +807,16 @@ def item_openclose(
|
|
|
719
807
|
...
|
|
720
808
|
|
|
721
809
|
def item_rename(
|
|
722
|
-
override_context: typing.Optional[
|
|
810
|
+
override_context: typing.Optional[
|
|
811
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
812
|
+
] = None,
|
|
723
813
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
724
814
|
undo: typing.Optional[bool] = None,
|
|
725
815
|
use_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
726
816
|
):
|
|
727
817
|
"""Rename the active element
|
|
728
818
|
|
|
729
|
-
:type override_context: typing.Optional[typing.Union[
|
|
819
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
730
820
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
731
821
|
:type undo: typing.Optional[bool]
|
|
732
822
|
:param use_active: Use Active, Rename the active item, rather than the one the mouse is over
|
|
@@ -736,13 +826,15 @@ def item_rename(
|
|
|
736
826
|
...
|
|
737
827
|
|
|
738
828
|
def keyingset_add_selected(
|
|
739
|
-
override_context: typing.Optional[
|
|
829
|
+
override_context: typing.Optional[
|
|
830
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
831
|
+
] = None,
|
|
740
832
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
741
833
|
undo: typing.Optional[bool] = None,
|
|
742
834
|
):
|
|
743
835
|
"""Add selected items (blue-gray rows) to active Keying Set
|
|
744
836
|
|
|
745
|
-
:type override_context: typing.Optional[typing.Union[
|
|
837
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
746
838
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
747
839
|
:type undo: typing.Optional[bool]
|
|
748
840
|
"""
|
|
@@ -750,13 +842,15 @@ def keyingset_add_selected(
|
|
|
750
842
|
...
|
|
751
843
|
|
|
752
844
|
def keyingset_remove_selected(
|
|
753
|
-
override_context: typing.Optional[
|
|
845
|
+
override_context: typing.Optional[
|
|
846
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
847
|
+
] = None,
|
|
754
848
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
755
849
|
undo: typing.Optional[bool] = None,
|
|
756
850
|
):
|
|
757
851
|
"""Remove selected items (blue-gray rows) from active Keying Set
|
|
758
852
|
|
|
759
|
-
:type override_context: typing.Optional[typing.Union[
|
|
853
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
760
854
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
761
855
|
:type undo: typing.Optional[bool]
|
|
762
856
|
"""
|
|
@@ -764,14 +858,16 @@ def keyingset_remove_selected(
|
|
|
764
858
|
...
|
|
765
859
|
|
|
766
860
|
def lib_operation(
|
|
767
|
-
override_context: typing.Optional[
|
|
861
|
+
override_context: typing.Optional[
|
|
862
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
863
|
+
] = None,
|
|
768
864
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
769
865
|
undo: typing.Optional[bool] = None,
|
|
770
866
|
type: typing.Optional[typing.Any] = "DELETE",
|
|
771
867
|
):
|
|
772
868
|
"""Undocumented, consider contributing.
|
|
773
869
|
|
|
774
|
-
:type override_context: typing.Optional[typing.Union[
|
|
870
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
775
871
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
776
872
|
:type undo: typing.Optional[bool]
|
|
777
873
|
:param type: Library Operation
|
|
@@ -791,13 +887,15 @@ def lib_operation(
|
|
|
791
887
|
...
|
|
792
888
|
|
|
793
889
|
def lib_relocate(
|
|
794
|
-
override_context: typing.Optional[
|
|
890
|
+
override_context: typing.Optional[
|
|
891
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
892
|
+
] = None,
|
|
795
893
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
796
894
|
undo: typing.Optional[bool] = None,
|
|
797
895
|
):
|
|
798
896
|
"""Relocate the library under cursor
|
|
799
897
|
|
|
800
|
-
:type override_context: typing.Optional[typing.Union[
|
|
898
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
801
899
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
802
900
|
:type undo: typing.Optional[bool]
|
|
803
901
|
"""
|
|
@@ -805,7 +903,9 @@ def lib_relocate(
|
|
|
805
903
|
...
|
|
806
904
|
|
|
807
905
|
def liboverride_operation(
|
|
808
|
-
override_context: typing.Optional[
|
|
906
|
+
override_context: typing.Optional[
|
|
907
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
908
|
+
] = None,
|
|
809
909
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
810
910
|
undo: typing.Optional[bool] = None,
|
|
811
911
|
type: typing.Optional[typing.Any] = "OVERRIDE_LIBRARY_CREATE_HIERARCHY",
|
|
@@ -813,7 +913,7 @@ def liboverride_operation(
|
|
|
813
913
|
):
|
|
814
914
|
"""Create, reset or clear library override hierarchies
|
|
815
915
|
|
|
816
|
-
:type override_context: typing.Optional[typing.Union[
|
|
916
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
817
917
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
818
918
|
:type undo: typing.Optional[bool]
|
|
819
919
|
:param type: Library Override Operation
|
|
@@ -843,7 +943,9 @@ def liboverride_operation(
|
|
|
843
943
|
...
|
|
844
944
|
|
|
845
945
|
def liboverride_troubleshoot_operation(
|
|
846
|
-
override_context: typing.Optional[
|
|
946
|
+
override_context: typing.Optional[
|
|
947
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
948
|
+
] = None,
|
|
847
949
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
848
950
|
undo: typing.Optional[bool] = None,
|
|
849
951
|
type: typing.Optional[typing.Any] = "OVERRIDE_LIBRARY_RESYNC_HIERARCHY",
|
|
@@ -851,7 +953,7 @@ def liboverride_troubleshoot_operation(
|
|
|
851
953
|
):
|
|
852
954
|
"""Advanced operations over library override to help fix broken hierarchies
|
|
853
955
|
|
|
854
|
-
:type override_context: typing.Optional[typing.Union[
|
|
956
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
855
957
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
856
958
|
:type undo: typing.Optional[bool]
|
|
857
959
|
:param type: Library Override Troubleshoot Operation
|
|
@@ -881,13 +983,15 @@ def liboverride_troubleshoot_operation(
|
|
|
881
983
|
...
|
|
882
984
|
|
|
883
985
|
def material_drop(
|
|
884
|
-
override_context: typing.Optional[
|
|
986
|
+
override_context: typing.Optional[
|
|
987
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
988
|
+
] = None,
|
|
885
989
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
886
990
|
undo: typing.Optional[bool] = None,
|
|
887
991
|
):
|
|
888
992
|
"""Drag material to object in Outliner
|
|
889
993
|
|
|
890
|
-
:type override_context: typing.Optional[typing.Union[
|
|
994
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
891
995
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
892
996
|
:type undo: typing.Optional[bool]
|
|
893
997
|
"""
|
|
@@ -895,14 +999,16 @@ def material_drop(
|
|
|
895
999
|
...
|
|
896
1000
|
|
|
897
1001
|
def modifier_operation(
|
|
898
|
-
override_context: typing.Optional[
|
|
1002
|
+
override_context: typing.Optional[
|
|
1003
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1004
|
+
] = None,
|
|
899
1005
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
900
1006
|
undo: typing.Optional[bool] = None,
|
|
901
1007
|
type: typing.Optional[typing.Any] = "APPLY",
|
|
902
1008
|
):
|
|
903
1009
|
"""Undocumented, consider contributing.
|
|
904
1010
|
|
|
905
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1011
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
906
1012
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
907
1013
|
:type undo: typing.Optional[bool]
|
|
908
1014
|
:param type: Modifier Operation
|
|
@@ -912,14 +1018,16 @@ def modifier_operation(
|
|
|
912
1018
|
...
|
|
913
1019
|
|
|
914
1020
|
def object_operation(
|
|
915
|
-
override_context: typing.Optional[
|
|
1021
|
+
override_context: typing.Optional[
|
|
1022
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1023
|
+
] = None,
|
|
916
1024
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
917
1025
|
undo: typing.Optional[bool] = None,
|
|
918
1026
|
type: typing.Optional[typing.Any] = "SELECT",
|
|
919
1027
|
):
|
|
920
1028
|
"""Undocumented, consider contributing.
|
|
921
1029
|
|
|
922
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1030
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
923
1031
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
924
1032
|
:type undo: typing.Optional[bool]
|
|
925
1033
|
:param type: Object Operation
|
|
@@ -944,13 +1052,15 @@ def object_operation(
|
|
|
944
1052
|
...
|
|
945
1053
|
|
|
946
1054
|
def operation(
|
|
947
|
-
override_context: typing.Optional[
|
|
1055
|
+
override_context: typing.Optional[
|
|
1056
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1057
|
+
] = None,
|
|
948
1058
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
949
1059
|
undo: typing.Optional[bool] = None,
|
|
950
1060
|
):
|
|
951
1061
|
"""Context menu for item operations
|
|
952
1062
|
|
|
953
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1063
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
954
1064
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
955
1065
|
:type undo: typing.Optional[bool]
|
|
956
1066
|
"""
|
|
@@ -958,13 +1068,15 @@ def operation(
|
|
|
958
1068
|
...
|
|
959
1069
|
|
|
960
1070
|
def orphans_manage(
|
|
961
|
-
override_context: typing.Optional[
|
|
1071
|
+
override_context: typing.Optional[
|
|
1072
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1073
|
+
] = None,
|
|
962
1074
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
963
1075
|
undo: typing.Optional[bool] = None,
|
|
964
1076
|
):
|
|
965
1077
|
"""Open a window to manage unused data
|
|
966
1078
|
|
|
967
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1079
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
968
1080
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
969
1081
|
:type undo: typing.Optional[bool]
|
|
970
1082
|
"""
|
|
@@ -972,7 +1084,9 @@ def orphans_manage(
|
|
|
972
1084
|
...
|
|
973
1085
|
|
|
974
1086
|
def orphans_purge(
|
|
975
|
-
override_context: typing.Optional[
|
|
1087
|
+
override_context: typing.Optional[
|
|
1088
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1089
|
+
] = None,
|
|
976
1090
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
977
1091
|
undo: typing.Optional[bool] = None,
|
|
978
1092
|
do_local_ids: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -981,7 +1095,7 @@ def orphans_purge(
|
|
|
981
1095
|
):
|
|
982
1096
|
"""Clear all orphaned data-blocks without any users from the file
|
|
983
1097
|
|
|
984
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1098
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
985
1099
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
986
1100
|
:type undo: typing.Optional[bool]
|
|
987
1101
|
:param do_local_ids: Local Data-blocks, Include unused local data-blocks into deletion
|
|
@@ -995,13 +1109,15 @@ def orphans_purge(
|
|
|
995
1109
|
...
|
|
996
1110
|
|
|
997
1111
|
def parent_clear(
|
|
998
|
-
override_context: typing.Optional[
|
|
1112
|
+
override_context: typing.Optional[
|
|
1113
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1114
|
+
] = None,
|
|
999
1115
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1000
1116
|
undo: typing.Optional[bool] = None,
|
|
1001
1117
|
):
|
|
1002
1118
|
"""Drag to clear parent in Outliner
|
|
1003
1119
|
|
|
1004
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1120
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1005
1121
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1006
1122
|
:type undo: typing.Optional[bool]
|
|
1007
1123
|
"""
|
|
@@ -1009,13 +1125,15 @@ def parent_clear(
|
|
|
1009
1125
|
...
|
|
1010
1126
|
|
|
1011
1127
|
def parent_drop(
|
|
1012
|
-
override_context: typing.Optional[
|
|
1128
|
+
override_context: typing.Optional[
|
|
1129
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1130
|
+
] = None,
|
|
1013
1131
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1014
1132
|
undo: typing.Optional[bool] = None,
|
|
1015
1133
|
):
|
|
1016
1134
|
"""Drag to parent in Outliner
|
|
1017
1135
|
|
|
1018
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1136
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1019
1137
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1020
1138
|
:type undo: typing.Optional[bool]
|
|
1021
1139
|
"""
|
|
@@ -1023,13 +1141,15 @@ def parent_drop(
|
|
|
1023
1141
|
...
|
|
1024
1142
|
|
|
1025
1143
|
def scene_drop(
|
|
1026
|
-
override_context: typing.Optional[
|
|
1144
|
+
override_context: typing.Optional[
|
|
1145
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1146
|
+
] = None,
|
|
1027
1147
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1028
1148
|
undo: typing.Optional[bool] = None,
|
|
1029
1149
|
):
|
|
1030
1150
|
"""Drag object to scene in Outliner
|
|
1031
1151
|
|
|
1032
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1152
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1033
1153
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1034
1154
|
:type undo: typing.Optional[bool]
|
|
1035
1155
|
"""
|
|
@@ -1037,14 +1157,16 @@ def scene_drop(
|
|
|
1037
1157
|
...
|
|
1038
1158
|
|
|
1039
1159
|
def scene_operation(
|
|
1040
|
-
override_context: typing.Optional[
|
|
1160
|
+
override_context: typing.Optional[
|
|
1161
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1162
|
+
] = None,
|
|
1041
1163
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1042
1164
|
undo: typing.Optional[bool] = None,
|
|
1043
1165
|
type: typing.Optional[typing.Union[str, int, typing.Any]] = "DELETE",
|
|
1044
1166
|
):
|
|
1045
1167
|
"""Context menu for scene operations
|
|
1046
1168
|
|
|
1047
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1169
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1048
1170
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1049
1171
|
:type undo: typing.Optional[bool]
|
|
1050
1172
|
:param type: Scene Operation
|
|
@@ -1054,14 +1176,16 @@ def scene_operation(
|
|
|
1054
1176
|
...
|
|
1055
1177
|
|
|
1056
1178
|
def scroll_page(
|
|
1057
|
-
override_context: typing.Optional[
|
|
1179
|
+
override_context: typing.Optional[
|
|
1180
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1181
|
+
] = None,
|
|
1058
1182
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1059
1183
|
undo: typing.Optional[bool] = None,
|
|
1060
1184
|
up: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1061
1185
|
):
|
|
1062
1186
|
"""Scroll page up or down
|
|
1063
1187
|
|
|
1064
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1188
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1065
1189
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1066
1190
|
:type undo: typing.Optional[bool]
|
|
1067
1191
|
:param up: Up, Scroll up one page
|
|
@@ -1071,14 +1195,16 @@ def scroll_page(
|
|
|
1071
1195
|
...
|
|
1072
1196
|
|
|
1073
1197
|
def select_all(
|
|
1074
|
-
override_context: typing.Optional[
|
|
1198
|
+
override_context: typing.Optional[
|
|
1199
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1200
|
+
] = None,
|
|
1075
1201
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1076
1202
|
undo: typing.Optional[bool] = None,
|
|
1077
1203
|
action: typing.Optional[typing.Any] = "TOGGLE",
|
|
1078
1204
|
):
|
|
1079
1205
|
"""Toggle the Outliner selection of items
|
|
1080
1206
|
|
|
1081
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1207
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1082
1208
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1083
1209
|
:type undo: typing.Optional[bool]
|
|
1084
1210
|
:param action: Action, Selection action to execute
|
|
@@ -1100,7 +1226,9 @@ def select_all(
|
|
|
1100
1226
|
...
|
|
1101
1227
|
|
|
1102
1228
|
def select_box(
|
|
1103
|
-
override_context: typing.Optional[
|
|
1229
|
+
override_context: typing.Optional[
|
|
1230
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1231
|
+
] = None,
|
|
1104
1232
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1105
1233
|
undo: typing.Optional[bool] = None,
|
|
1106
1234
|
tweak: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -1113,7 +1241,7 @@ def select_box(
|
|
|
1113
1241
|
):
|
|
1114
1242
|
"""Use box selection to select tree elements
|
|
1115
1243
|
|
|
1116
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1244
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1117
1245
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1118
1246
|
:type undo: typing.Optional[bool]
|
|
1119
1247
|
:param tweak: Tweak, Tweak gesture from empty space for box selection
|
|
@@ -1144,7 +1272,9 @@ def select_box(
|
|
|
1144
1272
|
...
|
|
1145
1273
|
|
|
1146
1274
|
def select_walk(
|
|
1147
|
-
override_context: typing.Optional[
|
|
1275
|
+
override_context: typing.Optional[
|
|
1276
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1277
|
+
] = None,
|
|
1148
1278
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1149
1279
|
undo: typing.Optional[bool] = None,
|
|
1150
1280
|
direction: typing.Optional[typing.Any] = "UP",
|
|
@@ -1153,7 +1283,7 @@ def select_walk(
|
|
|
1153
1283
|
):
|
|
1154
1284
|
"""Use walk navigation to select tree elements
|
|
1155
1285
|
|
|
1156
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1286
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1157
1287
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1158
1288
|
:type undo: typing.Optional[bool]
|
|
1159
1289
|
:param direction: Walk Direction, Select/Deselect element in this direction
|
|
@@ -1167,13 +1297,15 @@ def select_walk(
|
|
|
1167
1297
|
...
|
|
1168
1298
|
|
|
1169
1299
|
def show_active(
|
|
1170
|
-
override_context: typing.Optional[
|
|
1300
|
+
override_context: typing.Optional[
|
|
1301
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1302
|
+
] = None,
|
|
1171
1303
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1172
1304
|
undo: typing.Optional[bool] = None,
|
|
1173
1305
|
):
|
|
1174
1306
|
"""Open up the tree and adjust the view so that the active object is shown centered
|
|
1175
1307
|
|
|
1176
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1308
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1177
1309
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1178
1310
|
:type undo: typing.Optional[bool]
|
|
1179
1311
|
"""
|
|
@@ -1181,13 +1313,15 @@ def show_active(
|
|
|
1181
1313
|
...
|
|
1182
1314
|
|
|
1183
1315
|
def show_hierarchy(
|
|
1184
|
-
override_context: typing.Optional[
|
|
1316
|
+
override_context: typing.Optional[
|
|
1317
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1318
|
+
] = None,
|
|
1185
1319
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1186
1320
|
undo: typing.Optional[bool] = None,
|
|
1187
1321
|
):
|
|
1188
1322
|
"""Open all object entries and close all others
|
|
1189
1323
|
|
|
1190
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1324
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1191
1325
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1192
1326
|
:type undo: typing.Optional[bool]
|
|
1193
1327
|
"""
|
|
@@ -1195,14 +1329,16 @@ def show_hierarchy(
|
|
|
1195
1329
|
...
|
|
1196
1330
|
|
|
1197
1331
|
def show_one_level(
|
|
1198
|
-
override_context: typing.Optional[
|
|
1332
|
+
override_context: typing.Optional[
|
|
1333
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1334
|
+
] = None,
|
|
1199
1335
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1200
1336
|
undo: typing.Optional[bool] = None,
|
|
1201
1337
|
open: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
1202
1338
|
):
|
|
1203
1339
|
"""Expand/collapse all entries by one level
|
|
1204
1340
|
|
|
1205
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1341
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1206
1342
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1207
1343
|
:type undo: typing.Optional[bool]
|
|
1208
1344
|
:param open: Open, Expand all entries one level deep
|
|
@@ -1212,13 +1348,15 @@ def show_one_level(
|
|
|
1212
1348
|
...
|
|
1213
1349
|
|
|
1214
1350
|
def unhide_all(
|
|
1215
|
-
override_context: typing.Optional[
|
|
1351
|
+
override_context: typing.Optional[
|
|
1352
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1353
|
+
] = None,
|
|
1216
1354
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1217
1355
|
undo: typing.Optional[bool] = None,
|
|
1218
1356
|
):
|
|
1219
1357
|
"""Unhide all objects and collections
|
|
1220
1358
|
|
|
1221
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1359
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1222
1360
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1223
1361
|
:type undo: typing.Optional[bool]
|
|
1224
1362
|
"""
|