fake-bpy-module 20240411__py3-none-any.whl → 20240418__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_internal/__init__.pyi +4 -0
- _bpy_internal/freedesktop/__init__.pyi +88 -0
- _bpy_internal/freedesktop/py.typed +0 -0
- _bpy_internal/py.typed +0 -0
- aud/__init__.pyi +121 -48
- bgl/__init__.pyi +2443 -1265
- bl_math/__init__.pyi +19 -3
- bl_operators/presets/__init__.pyi +7 -0
- bl_ui/node_add_menu/__init__.pyi +1 -1
- bl_ui/properties_data_lightprobe/__init__.pyi +1134 -0
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +3 -0
- bl_ui/properties_physics_fluid/__init__.pyi +3 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +17 -0
- bl_ui/space_userpref/__init__.pyi +13 -4
- bl_ui/space_view3d/__init__.pyi +190 -0
- blf/__init__.pyi +63 -13
- bmesh/__init__.pyi +13 -0
- bmesh/geometry/__init__.pyi +5 -0
- bmesh/ops/__init__.pyi +157 -68
- bmesh/types/__init__.pyi +109 -62
- bmesh/utils/__init__.pyi +11 -2
- bpy/__init__.pyi +7 -0
- bpy/app/__init__.pyi +13 -0
- bpy/app/handlers/__init__.pyi +41 -0
- bpy/app/icons/__init__.pyi +4 -2
- bpy/app/timers/__init__.pyi +38 -2
- bpy/app/translations/__init__.pyi +59 -1
- bpy/msgbus/__init__.pyi +46 -0
- bpy/ops/__init__.pyi +151 -0
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +104 -104
- bpy/ops/armature/__init__.pyi +96 -96
- bpy/ops/asset/__init__.pyi +32 -32
- bpy/ops/boid/__init__.pyi +16 -16
- bpy/ops/brush/__init__.pyi +18 -18
- bpy/ops/buttons/__init__.pyi +12 -12
- bpy/ops/cachefile/__init__.pyi +10 -10
- bpy/ops/camera/__init__.pyi +4 -4
- bpy/ops/clip/__init__.pyi +184 -184
- bpy/ops/cloth/__init__.pyi +2 -2
- bpy/ops/collection/__init__.pyi +18 -18
- bpy/ops/console/__init__.pyi +42 -42
- bpy/ops/constraint/__init__.pyi +36 -36
- bpy/ops/curve/__init__.pyi +102 -102
- bpy/ops/curves/__init__.pyi +132 -50
- bpy/ops/cycles/__init__.pyi +6 -6
- bpy/ops/dpaint/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +24 -24
- bpy/ops/export_anim/__init__.pyi +2 -2
- bpy/ops/export_mesh/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +11 -8
- bpy/ops/file/__init__.pyi +80 -80
- bpy/ops/fluid/__init__.pyi +28 -28
- bpy/ops/font/__init__.pyi +46 -46
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +4 -4
- bpy/ops/gpencil/__init__.pyi +300 -300
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +139 -110
- bpy/ops/image/__init__.pyi +92 -92
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_mesh/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +6 -6
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +16 -16
- bpy/ops/marker/__init__.pyi +22 -22
- bpy/ops/mask/__init__.pyi +78 -78
- bpy/ops/material/__init__.pyi +6 -6
- bpy/ops/mball/__init__.pyi +16 -16
- bpy/ops/mesh/__init__.pyi +327 -327
- bpy/ops/nla/__init__.pyi +80 -80
- bpy/ops/node/__init__.pyi +203 -203
- bpy/ops/object/__init__.pyi +496 -508
- bpy/ops/outliner/__init__.pyi +139 -139
- bpy/ops/paint/__init__.pyi +104 -104
- bpy/ops/paintcurve/__init__.pyi +16 -16
- bpy/ops/palette/__init__.pyi +14 -14
- bpy/ops/particle/__init__.pyi +72 -72
- bpy/ops/pose/__init__.pyi +78 -78
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +77 -77
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +24 -24
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +78 -78
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +68 -62
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +170 -170
- bpy/ops/sound/__init__.pyi +14 -14
- bpy/ops/spreadsheet/__init__.pyi +8 -8
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +86 -86
- bpy/ops/text_editor/__init__.pyi +2 -2
- bpy/ops/texture/__init__.pyi +8 -8
- bpy/ops/transform/__init__.pyi +54 -54
- bpy/ops/ui/__init__.pyi +64 -64
- bpy/ops/uilist/__init__.pyi +6 -6
- bpy/ops/uv/__init__.pyi +98 -98
- bpy/ops/view2d/__init__.pyi +28 -28
- bpy/ops/view3d/__init__.pyi +134 -134
- bpy/ops/wm/__init__.pyi +225 -225
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +2 -2
- bpy/path/__init__.pyi +6 -0
- bpy/props/__init__.pyi +141 -29
- bpy/types/__init__.pyi +101773 -5222
- bpy/utils/__init__.pyi +18 -3
- bpy/utils/previews/__init__.pyi +15 -0
- bpy/utils/units/__init__.pyi +11 -3
- bpy_extras/__init__.pyi +19 -0
- bpy_extras/asset_utils/__init__.pyi +5 -0
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/RECORD +145 -141
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/top_level.txt +1 -0
- freestyle/__init__.pyi +18 -0
- freestyle/chainingiterators/__init__.pyi +20 -5
- freestyle/functions/__init__.pyi +151 -155
- freestyle/predicates/__init__.pyi +53 -46
- freestyle/shaders/__init__.pyi +91 -32
- freestyle/types/__init__.pyi +362 -120
- freestyle/utils/ContextFunctions/__init__.pyi +32 -7
- freestyle/utils/__init__.pyi +13 -1
- gpu/__init__.pyi +225 -0
- gpu/capabilities/__init__.pyi +37 -15
- gpu/matrix/__init__.pyi +7 -1
- gpu/platform/__init__.pyi +5 -0
- gpu/select/__init__.pyi +5 -0
- gpu/shader/__init__.pyi +77 -0
- gpu/state/__init__.pyi +15 -4
- gpu/texture/__init__.pyi +5 -0
- gpu/types/__init__.pyi +91 -33
- gpu_extras/__init__.pyi +15 -0
- gpu_extras/presets/__init__.pyi +16 -4
- imbuf/__init__.pyi +13 -0
- imbuf/types/__init__.pyi +20 -5
- mathutils/__init__.pyi +349 -227
- mathutils/bvhtree/__init__.pyi +21 -8
- mathutils/geometry/__init__.pyi +23 -9
- mathutils/interpolate/__init__.pyi +5 -0
- mathutils/kdtree/__init__.pyi +19 -5
- mathutils/noise/__init__.pyi +87 -41
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/WHEEL +0 -0
bpy/ops/outliner/__init__.pyi
CHANGED
|
@@ -5,14 +5,14 @@ GenericType = typing.TypeVar("GenericType")
|
|
|
5
5
|
|
|
6
6
|
def action_set(
|
|
7
7
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
8
|
-
execution_context: str = None,
|
|
8
|
+
execution_context: typing.Union[str, int] = None,
|
|
9
9
|
undo: bool = None,
|
|
10
10
|
action: typing.Union[str, int, typing.Any] = "",
|
|
11
11
|
):
|
|
12
12
|
"""Change the active action used
|
|
13
13
|
|
|
14
14
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
15
|
-
:type execution_context: str
|
|
15
|
+
:type execution_context: typing.Union[str, int]
|
|
16
16
|
:type undo: bool
|
|
17
17
|
:param action: Action
|
|
18
18
|
:type action: typing.Union[str, int, typing.Any]
|
|
@@ -22,14 +22,14 @@ def action_set(
|
|
|
22
22
|
|
|
23
23
|
def animdata_operation(
|
|
24
24
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
25
|
-
execution_context: str = None,
|
|
25
|
+
execution_context: typing.Union[str, int] = None,
|
|
26
26
|
undo: bool = None,
|
|
27
27
|
type: typing.Any = "CLEAR_ANIMDATA",
|
|
28
28
|
):
|
|
29
29
|
"""Undocumented, consider contributing.
|
|
30
30
|
|
|
31
31
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
32
|
-
:type execution_context: str
|
|
32
|
+
:type execution_context: typing.Union[str, int]
|
|
33
33
|
:type undo: bool
|
|
34
34
|
:param type: Animation Operation
|
|
35
35
|
|
|
@@ -54,14 +54,14 @@ def animdata_operation(
|
|
|
54
54
|
|
|
55
55
|
def collection_color_tag_set(
|
|
56
56
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
57
|
-
execution_context: str = None,
|
|
57
|
+
execution_context: typing.Union[str, int] = None,
|
|
58
58
|
undo: bool = None,
|
|
59
59
|
color: typing.Union[str, int] = "NONE",
|
|
60
60
|
):
|
|
61
61
|
"""Set a color tag for the selected collections
|
|
62
62
|
|
|
63
63
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
64
|
-
:type execution_context: str
|
|
64
|
+
:type execution_context: typing.Union[str, int]
|
|
65
65
|
:type undo: bool
|
|
66
66
|
:param color: Color Tag
|
|
67
67
|
:type color: typing.Union[str, int]
|
|
@@ -71,13 +71,13 @@ def collection_color_tag_set(
|
|
|
71
71
|
|
|
72
72
|
def collection_disable(
|
|
73
73
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
74
|
-
execution_context: str = None,
|
|
74
|
+
execution_context: typing.Union[str, int] = None,
|
|
75
75
|
undo: bool = None,
|
|
76
76
|
):
|
|
77
77
|
"""Disable viewport display in the view layers
|
|
78
78
|
|
|
79
79
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
80
|
-
:type execution_context: str
|
|
80
|
+
:type execution_context: typing.Union[str, int]
|
|
81
81
|
:type undo: bool
|
|
82
82
|
"""
|
|
83
83
|
|
|
@@ -85,13 +85,13 @@ def collection_disable(
|
|
|
85
85
|
|
|
86
86
|
def collection_disable_render(
|
|
87
87
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
88
|
-
execution_context: str = None,
|
|
88
|
+
execution_context: typing.Union[str, int] = None,
|
|
89
89
|
undo: bool = None,
|
|
90
90
|
):
|
|
91
91
|
"""Do not render this collection
|
|
92
92
|
|
|
93
93
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
94
|
-
:type execution_context: str
|
|
94
|
+
:type execution_context: typing.Union[str, int]
|
|
95
95
|
:type undo: bool
|
|
96
96
|
"""
|
|
97
97
|
|
|
@@ -99,13 +99,13 @@ def collection_disable_render(
|
|
|
99
99
|
|
|
100
100
|
def collection_drop(
|
|
101
101
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
102
|
-
execution_context: str = None,
|
|
102
|
+
execution_context: typing.Union[str, int] = None,
|
|
103
103
|
undo: bool = None,
|
|
104
104
|
):
|
|
105
105
|
"""Drag to move to collection in Outliner
|
|
106
106
|
|
|
107
107
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
108
|
-
:type execution_context: str
|
|
108
|
+
:type execution_context: typing.Union[str, int]
|
|
109
109
|
:type undo: bool
|
|
110
110
|
"""
|
|
111
111
|
|
|
@@ -113,13 +113,13 @@ def collection_drop(
|
|
|
113
113
|
|
|
114
114
|
def collection_duplicate(
|
|
115
115
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
116
|
-
execution_context: str = None,
|
|
116
|
+
execution_context: typing.Union[str, int] = None,
|
|
117
117
|
undo: bool = None,
|
|
118
118
|
):
|
|
119
119
|
"""Recursively duplicate the collection, all its children, objects and object data
|
|
120
120
|
|
|
121
121
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
122
|
-
:type execution_context: str
|
|
122
|
+
:type execution_context: typing.Union[str, int]
|
|
123
123
|
:type undo: bool
|
|
124
124
|
"""
|
|
125
125
|
|
|
@@ -127,13 +127,13 @@ def collection_duplicate(
|
|
|
127
127
|
|
|
128
128
|
def collection_duplicate_linked(
|
|
129
129
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
130
|
-
execution_context: str = None,
|
|
130
|
+
execution_context: typing.Union[str, int] = None,
|
|
131
131
|
undo: bool = None,
|
|
132
132
|
):
|
|
133
133
|
"""Recursively duplicate the collection, all its children and objects, with linked object data
|
|
134
134
|
|
|
135
135
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
136
|
-
:type execution_context: str
|
|
136
|
+
:type execution_context: typing.Union[str, int]
|
|
137
137
|
:type undo: bool
|
|
138
138
|
"""
|
|
139
139
|
|
|
@@ -141,13 +141,13 @@ def collection_duplicate_linked(
|
|
|
141
141
|
|
|
142
142
|
def collection_enable(
|
|
143
143
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
144
|
-
execution_context: str = None,
|
|
144
|
+
execution_context: typing.Union[str, int] = None,
|
|
145
145
|
undo: bool = None,
|
|
146
146
|
):
|
|
147
147
|
"""Enable viewport display in the view layers
|
|
148
148
|
|
|
149
149
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
150
|
-
:type execution_context: str
|
|
150
|
+
:type execution_context: typing.Union[str, int]
|
|
151
151
|
:type undo: bool
|
|
152
152
|
"""
|
|
153
153
|
|
|
@@ -155,13 +155,13 @@ def collection_enable(
|
|
|
155
155
|
|
|
156
156
|
def collection_enable_render(
|
|
157
157
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
158
|
-
execution_context: str = None,
|
|
158
|
+
execution_context: typing.Union[str, int] = None,
|
|
159
159
|
undo: bool = None,
|
|
160
160
|
):
|
|
161
161
|
"""Render the collection
|
|
162
162
|
|
|
163
163
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
164
|
-
:type execution_context: str
|
|
164
|
+
:type execution_context: typing.Union[str, int]
|
|
165
165
|
:type undo: bool
|
|
166
166
|
"""
|
|
167
167
|
|
|
@@ -169,13 +169,13 @@ def collection_enable_render(
|
|
|
169
169
|
|
|
170
170
|
def collection_exclude_clear(
|
|
171
171
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
172
|
-
execution_context: str = None,
|
|
172
|
+
execution_context: typing.Union[str, int] = None,
|
|
173
173
|
undo: bool = None,
|
|
174
174
|
):
|
|
175
175
|
"""Include collection in the active view layer
|
|
176
176
|
|
|
177
177
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
178
|
-
:type execution_context: str
|
|
178
|
+
:type execution_context: typing.Union[str, int]
|
|
179
179
|
:type undo: bool
|
|
180
180
|
"""
|
|
181
181
|
|
|
@@ -183,13 +183,13 @@ def collection_exclude_clear(
|
|
|
183
183
|
|
|
184
184
|
def collection_exclude_set(
|
|
185
185
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
186
|
-
execution_context: str = None,
|
|
186
|
+
execution_context: typing.Union[str, int] = None,
|
|
187
187
|
undo: bool = None,
|
|
188
188
|
):
|
|
189
189
|
"""Exclude collection from the active view layer
|
|
190
190
|
|
|
191
191
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
192
|
-
:type execution_context: str
|
|
192
|
+
:type execution_context: typing.Union[str, int]
|
|
193
193
|
:type undo: bool
|
|
194
194
|
"""
|
|
195
195
|
|
|
@@ -197,13 +197,13 @@ def collection_exclude_set(
|
|
|
197
197
|
|
|
198
198
|
def collection_hide(
|
|
199
199
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
200
|
-
execution_context: str = None,
|
|
200
|
+
execution_context: typing.Union[str, int] = None,
|
|
201
201
|
undo: bool = None,
|
|
202
202
|
):
|
|
203
203
|
"""Hide the collection in this view layer
|
|
204
204
|
|
|
205
205
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
206
|
-
:type execution_context: str
|
|
206
|
+
:type execution_context: typing.Union[str, int]
|
|
207
207
|
:type undo: bool
|
|
208
208
|
"""
|
|
209
209
|
|
|
@@ -211,13 +211,13 @@ def collection_hide(
|
|
|
211
211
|
|
|
212
212
|
def collection_hide_inside(
|
|
213
213
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
214
|
-
execution_context: str = None,
|
|
214
|
+
execution_context: typing.Union[str, int] = None,
|
|
215
215
|
undo: bool = None,
|
|
216
216
|
):
|
|
217
217
|
"""Hide all the objects and collections inside the collection
|
|
218
218
|
|
|
219
219
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
220
|
-
:type execution_context: str
|
|
220
|
+
:type execution_context: typing.Union[str, int]
|
|
221
221
|
:type undo: bool
|
|
222
222
|
"""
|
|
223
223
|
|
|
@@ -225,13 +225,13 @@ def collection_hide_inside(
|
|
|
225
225
|
|
|
226
226
|
def collection_hierarchy_delete(
|
|
227
227
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
228
|
-
execution_context: str = None,
|
|
228
|
+
execution_context: typing.Union[str, int] = None,
|
|
229
229
|
undo: bool = None,
|
|
230
230
|
):
|
|
231
231
|
"""Delete selected collection hierarchies
|
|
232
232
|
|
|
233
233
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
234
|
-
:type execution_context: str
|
|
234
|
+
:type execution_context: typing.Union[str, int]
|
|
235
235
|
:type undo: bool
|
|
236
236
|
"""
|
|
237
237
|
|
|
@@ -239,13 +239,13 @@ def collection_hierarchy_delete(
|
|
|
239
239
|
|
|
240
240
|
def collection_holdout_clear(
|
|
241
241
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
242
|
-
execution_context: str = None,
|
|
242
|
+
execution_context: typing.Union[str, int] = None,
|
|
243
243
|
undo: bool = None,
|
|
244
244
|
):
|
|
245
245
|
"""Clear masking of collection in the active view layer
|
|
246
246
|
|
|
247
247
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
248
|
-
:type execution_context: str
|
|
248
|
+
:type execution_context: typing.Union[str, int]
|
|
249
249
|
:type undo: bool
|
|
250
250
|
"""
|
|
251
251
|
|
|
@@ -253,13 +253,13 @@ def collection_holdout_clear(
|
|
|
253
253
|
|
|
254
254
|
def collection_holdout_set(
|
|
255
255
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
256
|
-
execution_context: str = None,
|
|
256
|
+
execution_context: typing.Union[str, int] = None,
|
|
257
257
|
undo: bool = None,
|
|
258
258
|
):
|
|
259
259
|
"""Mask collection in the active view layer
|
|
260
260
|
|
|
261
261
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
262
|
-
:type execution_context: str
|
|
262
|
+
:type execution_context: typing.Union[str, int]
|
|
263
263
|
:type undo: bool
|
|
264
264
|
"""
|
|
265
265
|
|
|
@@ -267,13 +267,13 @@ def collection_holdout_set(
|
|
|
267
267
|
|
|
268
268
|
def collection_indirect_only_clear(
|
|
269
269
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
270
|
-
execution_context: str = None,
|
|
270
|
+
execution_context: typing.Union[str, int] = None,
|
|
271
271
|
undo: bool = None,
|
|
272
272
|
):
|
|
273
273
|
"""Clear collection contributing only indirectly in the view layer
|
|
274
274
|
|
|
275
275
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
276
|
-
:type execution_context: str
|
|
276
|
+
:type execution_context: typing.Union[str, int]
|
|
277
277
|
:type undo: bool
|
|
278
278
|
"""
|
|
279
279
|
|
|
@@ -281,13 +281,13 @@ def collection_indirect_only_clear(
|
|
|
281
281
|
|
|
282
282
|
def collection_indirect_only_set(
|
|
283
283
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
284
|
-
execution_context: str = None,
|
|
284
|
+
execution_context: typing.Union[str, int] = None,
|
|
285
285
|
undo: bool = None,
|
|
286
286
|
):
|
|
287
287
|
"""Set collection to only contribute indirectly (through shadows and reflections) in the view layer
|
|
288
288
|
|
|
289
289
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
290
|
-
:type execution_context: str
|
|
290
|
+
:type execution_context: typing.Union[str, int]
|
|
291
291
|
:type undo: bool
|
|
292
292
|
"""
|
|
293
293
|
|
|
@@ -295,13 +295,13 @@ def collection_indirect_only_set(
|
|
|
295
295
|
|
|
296
296
|
def collection_instance(
|
|
297
297
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
298
|
-
execution_context: str = None,
|
|
298
|
+
execution_context: typing.Union[str, int] = None,
|
|
299
299
|
undo: bool = None,
|
|
300
300
|
):
|
|
301
301
|
"""Instance selected collections to active scene
|
|
302
302
|
|
|
303
303
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
304
|
-
:type execution_context: str
|
|
304
|
+
:type execution_context: typing.Union[str, int]
|
|
305
305
|
:type undo: bool
|
|
306
306
|
"""
|
|
307
307
|
|
|
@@ -309,14 +309,14 @@ def collection_instance(
|
|
|
309
309
|
|
|
310
310
|
def collection_isolate(
|
|
311
311
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
312
|
-
execution_context: str = None,
|
|
312
|
+
execution_context: typing.Union[str, int] = None,
|
|
313
313
|
undo: bool = None,
|
|
314
314
|
extend: typing.Union[bool, typing.Any] = False,
|
|
315
315
|
):
|
|
316
316
|
"""Hide all but this collection and its parents
|
|
317
317
|
|
|
318
318
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
319
|
-
:type execution_context: str
|
|
319
|
+
:type execution_context: typing.Union[str, int]
|
|
320
320
|
:type undo: bool
|
|
321
321
|
:param extend: Extend, Extend current visible collections
|
|
322
322
|
:type extend: typing.Union[bool, typing.Any]
|
|
@@ -326,13 +326,13 @@ def collection_isolate(
|
|
|
326
326
|
|
|
327
327
|
def collection_link(
|
|
328
328
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
329
|
-
execution_context: str = None,
|
|
329
|
+
execution_context: typing.Union[str, int] = None,
|
|
330
330
|
undo: bool = None,
|
|
331
331
|
):
|
|
332
332
|
"""Link selected collections to active scene
|
|
333
333
|
|
|
334
334
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
335
|
-
:type execution_context: str
|
|
335
|
+
:type execution_context: typing.Union[str, int]
|
|
336
336
|
:type undo: bool
|
|
337
337
|
"""
|
|
338
338
|
|
|
@@ -340,14 +340,14 @@ def collection_link(
|
|
|
340
340
|
|
|
341
341
|
def collection_new(
|
|
342
342
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
343
|
-
execution_context: str = None,
|
|
343
|
+
execution_context: typing.Union[str, int] = None,
|
|
344
344
|
undo: bool = None,
|
|
345
345
|
nested: typing.Union[bool, typing.Any] = True,
|
|
346
346
|
):
|
|
347
347
|
"""Add a new collection inside selected collection
|
|
348
348
|
|
|
349
349
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
350
|
-
:type execution_context: str
|
|
350
|
+
:type execution_context: typing.Union[str, int]
|
|
351
351
|
:type undo: bool
|
|
352
352
|
:param nested: Nested, Add as child of selected collection
|
|
353
353
|
:type nested: typing.Union[bool, typing.Any]
|
|
@@ -357,13 +357,13 @@ def collection_new(
|
|
|
357
357
|
|
|
358
358
|
def collection_objects_deselect(
|
|
359
359
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
360
|
-
execution_context: str = None,
|
|
360
|
+
execution_context: typing.Union[str, int] = None,
|
|
361
361
|
undo: bool = None,
|
|
362
362
|
):
|
|
363
363
|
"""Deselect objects in collection
|
|
364
364
|
|
|
365
365
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
366
|
-
:type execution_context: str
|
|
366
|
+
:type execution_context: typing.Union[str, int]
|
|
367
367
|
:type undo: bool
|
|
368
368
|
"""
|
|
369
369
|
|
|
@@ -371,13 +371,13 @@ def collection_objects_deselect(
|
|
|
371
371
|
|
|
372
372
|
def collection_objects_select(
|
|
373
373
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
374
|
-
execution_context: str = None,
|
|
374
|
+
execution_context: typing.Union[str, int] = None,
|
|
375
375
|
undo: bool = None,
|
|
376
376
|
):
|
|
377
377
|
"""Select objects in collection
|
|
378
378
|
|
|
379
379
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
380
|
-
:type execution_context: str
|
|
380
|
+
:type execution_context: typing.Union[str, int]
|
|
381
381
|
:type undo: bool
|
|
382
382
|
"""
|
|
383
383
|
|
|
@@ -385,13 +385,13 @@ def collection_objects_select(
|
|
|
385
385
|
|
|
386
386
|
def collection_show(
|
|
387
387
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
388
|
-
execution_context: str = None,
|
|
388
|
+
execution_context: typing.Union[str, int] = None,
|
|
389
389
|
undo: bool = None,
|
|
390
390
|
):
|
|
391
391
|
"""Show the collection in this view layer
|
|
392
392
|
|
|
393
393
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
394
|
-
:type execution_context: str
|
|
394
|
+
:type execution_context: typing.Union[str, int]
|
|
395
395
|
:type undo: bool
|
|
396
396
|
"""
|
|
397
397
|
|
|
@@ -399,13 +399,13 @@ def collection_show(
|
|
|
399
399
|
|
|
400
400
|
def collection_show_inside(
|
|
401
401
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
402
|
-
execution_context: str = None,
|
|
402
|
+
execution_context: typing.Union[str, int] = None,
|
|
403
403
|
undo: bool = None,
|
|
404
404
|
):
|
|
405
405
|
"""Show all the objects and collections inside the collection
|
|
406
406
|
|
|
407
407
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
408
|
-
:type execution_context: str
|
|
408
|
+
:type execution_context: typing.Union[str, int]
|
|
409
409
|
:type undo: bool
|
|
410
410
|
"""
|
|
411
411
|
|
|
@@ -413,14 +413,14 @@ def collection_show_inside(
|
|
|
413
413
|
|
|
414
414
|
def constraint_operation(
|
|
415
415
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
416
|
-
execution_context: str = None,
|
|
416
|
+
execution_context: typing.Union[str, int] = None,
|
|
417
417
|
undo: bool = None,
|
|
418
418
|
type: typing.Any = "ENABLE",
|
|
419
419
|
):
|
|
420
420
|
"""Undocumented, consider contributing.
|
|
421
421
|
|
|
422
422
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
423
|
-
:type execution_context: str
|
|
423
|
+
:type execution_context: typing.Union[str, int]
|
|
424
424
|
:type undo: bool
|
|
425
425
|
:param type: Constraint Operation
|
|
426
426
|
:type type: typing.Any
|
|
@@ -430,14 +430,14 @@ def constraint_operation(
|
|
|
430
430
|
|
|
431
431
|
def data_operation(
|
|
432
432
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
433
|
-
execution_context: str = None,
|
|
433
|
+
execution_context: typing.Union[str, int] = None,
|
|
434
434
|
undo: bool = None,
|
|
435
435
|
type: typing.Union[str, int, typing.Any] = "DEFAULT",
|
|
436
436
|
):
|
|
437
437
|
"""Undocumented, consider contributing.
|
|
438
438
|
|
|
439
439
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
440
|
-
:type execution_context: str
|
|
440
|
+
:type execution_context: typing.Union[str, int]
|
|
441
441
|
:type undo: bool
|
|
442
442
|
:param type: Data Operation
|
|
443
443
|
:type type: typing.Union[str, int, typing.Any]
|
|
@@ -447,13 +447,13 @@ def data_operation(
|
|
|
447
447
|
|
|
448
448
|
def datastack_drop(
|
|
449
449
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
450
|
-
execution_context: str = None,
|
|
450
|
+
execution_context: typing.Union[str, int] = None,
|
|
451
451
|
undo: bool = None,
|
|
452
452
|
):
|
|
453
453
|
"""Copy or reorder modifiers, constraints, and effects
|
|
454
454
|
|
|
455
455
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
456
|
-
:type execution_context: str
|
|
456
|
+
:type execution_context: typing.Union[str, int]
|
|
457
457
|
:type undo: bool
|
|
458
458
|
"""
|
|
459
459
|
|
|
@@ -461,14 +461,14 @@ def datastack_drop(
|
|
|
461
461
|
|
|
462
462
|
def delete(
|
|
463
463
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
464
|
-
execution_context: str = None,
|
|
464
|
+
execution_context: typing.Union[str, int] = None,
|
|
465
465
|
undo: bool = None,
|
|
466
466
|
hierarchy: typing.Union[bool, typing.Any] = False,
|
|
467
467
|
):
|
|
468
468
|
"""Delete selected objects and collections
|
|
469
469
|
|
|
470
470
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
471
|
-
:type execution_context: str
|
|
471
|
+
:type execution_context: typing.Union[str, int]
|
|
472
472
|
:type undo: bool
|
|
473
473
|
:param hierarchy: Hierarchy, Delete child objects and collections
|
|
474
474
|
:type hierarchy: typing.Union[bool, typing.Any]
|
|
@@ -478,13 +478,13 @@ def delete(
|
|
|
478
478
|
|
|
479
479
|
def drivers_add_selected(
|
|
480
480
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
481
|
-
execution_context: str = None,
|
|
481
|
+
execution_context: typing.Union[str, int] = None,
|
|
482
482
|
undo: bool = None,
|
|
483
483
|
):
|
|
484
484
|
"""Add drivers to selected items
|
|
485
485
|
|
|
486
486
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
487
|
-
:type execution_context: str
|
|
487
|
+
:type execution_context: typing.Union[str, int]
|
|
488
488
|
:type undo: bool
|
|
489
489
|
"""
|
|
490
490
|
|
|
@@ -492,13 +492,13 @@ def drivers_add_selected(
|
|
|
492
492
|
|
|
493
493
|
def drivers_delete_selected(
|
|
494
494
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
495
|
-
execution_context: str = None,
|
|
495
|
+
execution_context: typing.Union[str, int] = None,
|
|
496
496
|
undo: bool = None,
|
|
497
497
|
):
|
|
498
498
|
"""Delete drivers assigned to selected items
|
|
499
499
|
|
|
500
500
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
501
|
-
:type execution_context: str
|
|
501
|
+
:type execution_context: typing.Union[str, int]
|
|
502
502
|
:type undo: bool
|
|
503
503
|
"""
|
|
504
504
|
|
|
@@ -506,13 +506,13 @@ def drivers_delete_selected(
|
|
|
506
506
|
|
|
507
507
|
def expanded_toggle(
|
|
508
508
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
509
|
-
execution_context: str = None,
|
|
509
|
+
execution_context: typing.Union[str, int] = None,
|
|
510
510
|
undo: bool = None,
|
|
511
511
|
):
|
|
512
512
|
"""Expand/Collapse all items
|
|
513
513
|
|
|
514
514
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
515
|
-
:type execution_context: str
|
|
515
|
+
:type execution_context: typing.Union[str, int]
|
|
516
516
|
:type undo: bool
|
|
517
517
|
"""
|
|
518
518
|
|
|
@@ -520,13 +520,13 @@ def expanded_toggle(
|
|
|
520
520
|
|
|
521
521
|
def hide(
|
|
522
522
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
523
|
-
execution_context: str = None,
|
|
523
|
+
execution_context: typing.Union[str, int] = None,
|
|
524
524
|
undo: bool = None,
|
|
525
525
|
):
|
|
526
526
|
"""Hide selected objects and collections
|
|
527
527
|
|
|
528
528
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
529
|
-
:type execution_context: str
|
|
529
|
+
:type execution_context: typing.Union[str, int]
|
|
530
530
|
:type undo: bool
|
|
531
531
|
"""
|
|
532
532
|
|
|
@@ -534,13 +534,13 @@ def hide(
|
|
|
534
534
|
|
|
535
535
|
def highlight_update(
|
|
536
536
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
537
|
-
execution_context: str = None,
|
|
537
|
+
execution_context: typing.Union[str, int] = None,
|
|
538
538
|
undo: bool = None,
|
|
539
539
|
):
|
|
540
540
|
"""Update the item highlight based on the current mouse position
|
|
541
541
|
|
|
542
542
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
543
|
-
:type execution_context: str
|
|
543
|
+
:type execution_context: typing.Union[str, int]
|
|
544
544
|
:type undo: bool
|
|
545
545
|
"""
|
|
546
546
|
|
|
@@ -548,13 +548,13 @@ def highlight_update(
|
|
|
548
548
|
|
|
549
549
|
def id_copy(
|
|
550
550
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
551
|
-
execution_context: str = None,
|
|
551
|
+
execution_context: typing.Union[str, int] = None,
|
|
552
552
|
undo: bool = None,
|
|
553
553
|
):
|
|
554
554
|
"""Copy the selected data-blocks to the internal clipboard
|
|
555
555
|
|
|
556
556
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
557
|
-
:type execution_context: str
|
|
557
|
+
:type execution_context: typing.Union[str, int]
|
|
558
558
|
:type undo: bool
|
|
559
559
|
"""
|
|
560
560
|
|
|
@@ -562,13 +562,13 @@ def id_copy(
|
|
|
562
562
|
|
|
563
563
|
def id_delete(
|
|
564
564
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
565
|
-
execution_context: str = None,
|
|
565
|
+
execution_context: typing.Union[str, int] = None,
|
|
566
566
|
undo: bool = None,
|
|
567
567
|
):
|
|
568
568
|
"""Delete the ID under cursor
|
|
569
569
|
|
|
570
570
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
571
|
-
:type execution_context: str
|
|
571
|
+
:type execution_context: typing.Union[str, int]
|
|
572
572
|
:type undo: bool
|
|
573
573
|
"""
|
|
574
574
|
|
|
@@ -576,14 +576,14 @@ def id_delete(
|
|
|
576
576
|
|
|
577
577
|
def id_operation(
|
|
578
578
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
579
|
-
execution_context: str = None,
|
|
579
|
+
execution_context: typing.Union[str, int] = None,
|
|
580
580
|
undo: bool = None,
|
|
581
581
|
type: typing.Any = "UNLINK",
|
|
582
582
|
):
|
|
583
583
|
"""General data-block management operations
|
|
584
584
|
|
|
585
585
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
586
|
-
:type execution_context: str
|
|
586
|
+
:type execution_context: typing.Union[str, int]
|
|
587
587
|
:type undo: bool
|
|
588
588
|
:param type: ID Data Operation
|
|
589
589
|
|
|
@@ -626,13 +626,13 @@ def id_operation(
|
|
|
626
626
|
|
|
627
627
|
def id_paste(
|
|
628
628
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
629
|
-
execution_context: str = None,
|
|
629
|
+
execution_context: typing.Union[str, int] = None,
|
|
630
630
|
undo: bool = None,
|
|
631
631
|
):
|
|
632
632
|
"""Paste data-blocks from the internal clipboard
|
|
633
633
|
|
|
634
634
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
635
|
-
:type execution_context: str
|
|
635
|
+
:type execution_context: typing.Union[str, int]
|
|
636
636
|
:type undo: bool
|
|
637
637
|
"""
|
|
638
638
|
|
|
@@ -640,7 +640,7 @@ def id_paste(
|
|
|
640
640
|
|
|
641
641
|
def id_remap(
|
|
642
642
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
643
|
-
execution_context: str = None,
|
|
643
|
+
execution_context: typing.Union[str, int] = None,
|
|
644
644
|
undo: bool = None,
|
|
645
645
|
id_type: typing.Union[str, int] = "OBJECT",
|
|
646
646
|
old_id: typing.Union[str, int, typing.Any] = "",
|
|
@@ -649,7 +649,7 @@ def id_remap(
|
|
|
649
649
|
"""Undocumented, consider contributing.
|
|
650
650
|
|
|
651
651
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
652
|
-
:type execution_context: str
|
|
652
|
+
:type execution_context: typing.Union[str, int]
|
|
653
653
|
:type undo: bool
|
|
654
654
|
:param id_type: ID Type
|
|
655
655
|
:type id_type: typing.Union[str, int]
|
|
@@ -663,7 +663,7 @@ def id_remap(
|
|
|
663
663
|
|
|
664
664
|
def item_activate(
|
|
665
665
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
666
|
-
execution_context: str = None,
|
|
666
|
+
execution_context: typing.Union[str, int] = None,
|
|
667
667
|
undo: bool = None,
|
|
668
668
|
extend: typing.Union[bool, typing.Any] = False,
|
|
669
669
|
extend_range: typing.Union[bool, typing.Any] = False,
|
|
@@ -673,7 +673,7 @@ def item_activate(
|
|
|
673
673
|
"""Handle mouse clicks to select and activate items
|
|
674
674
|
|
|
675
675
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
676
|
-
:type execution_context: str
|
|
676
|
+
:type execution_context: typing.Union[str, int]
|
|
677
677
|
:type undo: bool
|
|
678
678
|
:param extend: Extend, Extend selection for activation
|
|
679
679
|
:type extend: typing.Union[bool, typing.Any]
|
|
@@ -689,13 +689,13 @@ def item_activate(
|
|
|
689
689
|
|
|
690
690
|
def item_drag_drop(
|
|
691
691
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
692
|
-
execution_context: str = None,
|
|
692
|
+
execution_context: typing.Union[str, int] = None,
|
|
693
693
|
undo: bool = None,
|
|
694
694
|
):
|
|
695
695
|
"""Drag and drop element to another place
|
|
696
696
|
|
|
697
697
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
698
|
-
:type execution_context: str
|
|
698
|
+
:type execution_context: typing.Union[str, int]
|
|
699
699
|
:type undo: bool
|
|
700
700
|
"""
|
|
701
701
|
|
|
@@ -703,14 +703,14 @@ def item_drag_drop(
|
|
|
703
703
|
|
|
704
704
|
def item_openclose(
|
|
705
705
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
706
|
-
execution_context: str = None,
|
|
706
|
+
execution_context: typing.Union[str, int] = None,
|
|
707
707
|
undo: bool = None,
|
|
708
708
|
all: typing.Union[bool, typing.Any] = False,
|
|
709
709
|
):
|
|
710
710
|
"""Toggle whether item under cursor is enabled or closed
|
|
711
711
|
|
|
712
712
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
713
|
-
:type execution_context: str
|
|
713
|
+
:type execution_context: typing.Union[str, int]
|
|
714
714
|
:type undo: bool
|
|
715
715
|
:param all: All, Close or open all items
|
|
716
716
|
:type all: typing.Union[bool, typing.Any]
|
|
@@ -720,14 +720,14 @@ def item_openclose(
|
|
|
720
720
|
|
|
721
721
|
def item_rename(
|
|
722
722
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
723
|
-
execution_context: str = None,
|
|
723
|
+
execution_context: typing.Union[str, int] = None,
|
|
724
724
|
undo: bool = None,
|
|
725
725
|
use_active: typing.Union[bool, typing.Any] = False,
|
|
726
726
|
):
|
|
727
727
|
"""Rename the active element
|
|
728
728
|
|
|
729
729
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
730
|
-
:type execution_context: str
|
|
730
|
+
:type execution_context: typing.Union[str, int]
|
|
731
731
|
:type undo: bool
|
|
732
732
|
:param use_active: Use Active, Rename the active item, rather than the one the mouse is over
|
|
733
733
|
:type use_active: typing.Union[bool, typing.Any]
|
|
@@ -737,13 +737,13 @@ def item_rename(
|
|
|
737
737
|
|
|
738
738
|
def keyingset_add_selected(
|
|
739
739
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
740
|
-
execution_context: str = None,
|
|
740
|
+
execution_context: typing.Union[str, int] = None,
|
|
741
741
|
undo: bool = None,
|
|
742
742
|
):
|
|
743
743
|
"""Add selected items (blue-gray rows) to active Keying Set
|
|
744
744
|
|
|
745
745
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
746
|
-
:type execution_context: str
|
|
746
|
+
:type execution_context: typing.Union[str, int]
|
|
747
747
|
:type undo: bool
|
|
748
748
|
"""
|
|
749
749
|
|
|
@@ -751,13 +751,13 @@ def keyingset_add_selected(
|
|
|
751
751
|
|
|
752
752
|
def keyingset_remove_selected(
|
|
753
753
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
754
|
-
execution_context: str = None,
|
|
754
|
+
execution_context: typing.Union[str, int] = None,
|
|
755
755
|
undo: bool = None,
|
|
756
756
|
):
|
|
757
757
|
"""Remove selected items (blue-gray rows) from active Keying Set
|
|
758
758
|
|
|
759
759
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
760
|
-
:type execution_context: str
|
|
760
|
+
:type execution_context: typing.Union[str, int]
|
|
761
761
|
:type undo: bool
|
|
762
762
|
"""
|
|
763
763
|
|
|
@@ -765,14 +765,14 @@ def keyingset_remove_selected(
|
|
|
765
765
|
|
|
766
766
|
def lib_operation(
|
|
767
767
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
768
|
-
execution_context: str = None,
|
|
768
|
+
execution_context: typing.Union[str, int] = None,
|
|
769
769
|
undo: bool = None,
|
|
770
770
|
type: typing.Any = "DELETE",
|
|
771
771
|
):
|
|
772
772
|
"""Undocumented, consider contributing.
|
|
773
773
|
|
|
774
774
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
775
|
-
:type execution_context: str
|
|
775
|
+
:type execution_context: typing.Union[str, int]
|
|
776
776
|
:type undo: bool
|
|
777
777
|
:param type: Library Operation
|
|
778
778
|
|
|
@@ -792,13 +792,13 @@ def lib_operation(
|
|
|
792
792
|
|
|
793
793
|
def lib_relocate(
|
|
794
794
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
795
|
-
execution_context: str = None,
|
|
795
|
+
execution_context: typing.Union[str, int] = None,
|
|
796
796
|
undo: bool = None,
|
|
797
797
|
):
|
|
798
798
|
"""Relocate the library under cursor
|
|
799
799
|
|
|
800
800
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
801
|
-
:type execution_context: str
|
|
801
|
+
:type execution_context: typing.Union[str, int]
|
|
802
802
|
:type undo: bool
|
|
803
803
|
"""
|
|
804
804
|
|
|
@@ -806,7 +806,7 @@ def lib_relocate(
|
|
|
806
806
|
|
|
807
807
|
def liboverride_operation(
|
|
808
808
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
809
|
-
execution_context: str = None,
|
|
809
|
+
execution_context: typing.Union[str, int] = None,
|
|
810
810
|
undo: bool = None,
|
|
811
811
|
type: typing.Any = "OVERRIDE_LIBRARY_CREATE_HIERARCHY",
|
|
812
812
|
selection_set: typing.Any = "SELECTED",
|
|
@@ -814,7 +814,7 @@ def liboverride_operation(
|
|
|
814
814
|
"""Create, reset or clear library override hierarchies
|
|
815
815
|
|
|
816
816
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
817
|
-
:type execution_context: str
|
|
817
|
+
:type execution_context: typing.Union[str, int]
|
|
818
818
|
:type undo: bool
|
|
819
819
|
:param type: Library Override Operation
|
|
820
820
|
|
|
@@ -844,7 +844,7 @@ def liboverride_operation(
|
|
|
844
844
|
|
|
845
845
|
def liboverride_troubleshoot_operation(
|
|
846
846
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
847
|
-
execution_context: str = None,
|
|
847
|
+
execution_context: typing.Union[str, int] = None,
|
|
848
848
|
undo: bool = None,
|
|
849
849
|
type: typing.Any = "OVERRIDE_LIBRARY_RESYNC_HIERARCHY",
|
|
850
850
|
selection_set: typing.Any = "SELECTED",
|
|
@@ -852,7 +852,7 @@ def liboverride_troubleshoot_operation(
|
|
|
852
852
|
"""Advanced operations over library override to help fix broken hierarchies
|
|
853
853
|
|
|
854
854
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
855
|
-
:type execution_context: str
|
|
855
|
+
:type execution_context: typing.Union[str, int]
|
|
856
856
|
:type undo: bool
|
|
857
857
|
:param type: Library Override Troubleshoot Operation
|
|
858
858
|
|
|
@@ -882,13 +882,13 @@ def liboverride_troubleshoot_operation(
|
|
|
882
882
|
|
|
883
883
|
def material_drop(
|
|
884
884
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
885
|
-
execution_context: str = None,
|
|
885
|
+
execution_context: typing.Union[str, int] = None,
|
|
886
886
|
undo: bool = None,
|
|
887
887
|
):
|
|
888
888
|
"""Drag material to object in Outliner
|
|
889
889
|
|
|
890
890
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
891
|
-
:type execution_context: str
|
|
891
|
+
:type execution_context: typing.Union[str, int]
|
|
892
892
|
:type undo: bool
|
|
893
893
|
"""
|
|
894
894
|
|
|
@@ -896,14 +896,14 @@ def material_drop(
|
|
|
896
896
|
|
|
897
897
|
def modifier_operation(
|
|
898
898
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
899
|
-
execution_context: str = None,
|
|
899
|
+
execution_context: typing.Union[str, int] = None,
|
|
900
900
|
undo: bool = None,
|
|
901
901
|
type: typing.Any = "APPLY",
|
|
902
902
|
):
|
|
903
903
|
"""Undocumented, consider contributing.
|
|
904
904
|
|
|
905
905
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
906
|
-
:type execution_context: str
|
|
906
|
+
:type execution_context: typing.Union[str, int]
|
|
907
907
|
:type undo: bool
|
|
908
908
|
:param type: Modifier Operation
|
|
909
909
|
:type type: typing.Any
|
|
@@ -913,14 +913,14 @@ def modifier_operation(
|
|
|
913
913
|
|
|
914
914
|
def object_operation(
|
|
915
915
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
916
|
-
execution_context: str = None,
|
|
916
|
+
execution_context: typing.Union[str, int] = None,
|
|
917
917
|
undo: bool = None,
|
|
918
918
|
type: typing.Any = "SELECT",
|
|
919
919
|
):
|
|
920
920
|
"""Undocumented, consider contributing.
|
|
921
921
|
|
|
922
922
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
923
|
-
:type execution_context: str
|
|
923
|
+
:type execution_context: typing.Union[str, int]
|
|
924
924
|
:type undo: bool
|
|
925
925
|
:param type: Object Operation
|
|
926
926
|
|
|
@@ -945,13 +945,13 @@ def object_operation(
|
|
|
945
945
|
|
|
946
946
|
def operation(
|
|
947
947
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
948
|
-
execution_context: str = None,
|
|
948
|
+
execution_context: typing.Union[str, int] = None,
|
|
949
949
|
undo: bool = None,
|
|
950
950
|
):
|
|
951
951
|
"""Context menu for item operations
|
|
952
952
|
|
|
953
953
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
954
|
-
:type execution_context: str
|
|
954
|
+
:type execution_context: typing.Union[str, int]
|
|
955
955
|
:type undo: bool
|
|
956
956
|
"""
|
|
957
957
|
|
|
@@ -959,13 +959,13 @@ def operation(
|
|
|
959
959
|
|
|
960
960
|
def orphans_manage(
|
|
961
961
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
962
|
-
execution_context: str = None,
|
|
962
|
+
execution_context: typing.Union[str, int] = None,
|
|
963
963
|
undo: bool = None,
|
|
964
964
|
):
|
|
965
965
|
"""Open a window to manage unused data
|
|
966
966
|
|
|
967
967
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
968
|
-
:type execution_context: str
|
|
968
|
+
:type execution_context: typing.Union[str, int]
|
|
969
969
|
:type undo: bool
|
|
970
970
|
"""
|
|
971
971
|
|
|
@@ -973,16 +973,16 @@ def orphans_manage(
|
|
|
973
973
|
|
|
974
974
|
def orphans_purge(
|
|
975
975
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
976
|
-
execution_context: str = None,
|
|
976
|
+
execution_context: typing.Union[str, int] = None,
|
|
977
977
|
undo: bool = None,
|
|
978
978
|
do_local_ids: typing.Union[bool, typing.Any] = True,
|
|
979
979
|
do_linked_ids: typing.Union[bool, typing.Any] = True,
|
|
980
|
-
do_recursive: typing.Union[bool, typing.Any] =
|
|
980
|
+
do_recursive: typing.Union[bool, typing.Any] = True,
|
|
981
981
|
):
|
|
982
982
|
"""Clear all orphaned data-blocks without any users from the file
|
|
983
983
|
|
|
984
984
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
985
|
-
:type execution_context: str
|
|
985
|
+
:type execution_context: typing.Union[str, int]
|
|
986
986
|
:type undo: bool
|
|
987
987
|
:param do_local_ids: Local Data-blocks, Include unused local data-blocks into deletion
|
|
988
988
|
:type do_local_ids: typing.Union[bool, typing.Any]
|
|
@@ -996,13 +996,13 @@ def orphans_purge(
|
|
|
996
996
|
|
|
997
997
|
def parent_clear(
|
|
998
998
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
999
|
-
execution_context: str = None,
|
|
999
|
+
execution_context: typing.Union[str, int] = None,
|
|
1000
1000
|
undo: bool = None,
|
|
1001
1001
|
):
|
|
1002
1002
|
"""Drag to clear parent in Outliner
|
|
1003
1003
|
|
|
1004
1004
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1005
|
-
:type execution_context: str
|
|
1005
|
+
:type execution_context: typing.Union[str, int]
|
|
1006
1006
|
:type undo: bool
|
|
1007
1007
|
"""
|
|
1008
1008
|
|
|
@@ -1010,13 +1010,13 @@ def parent_clear(
|
|
|
1010
1010
|
|
|
1011
1011
|
def parent_drop(
|
|
1012
1012
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1013
|
-
execution_context: str = None,
|
|
1013
|
+
execution_context: typing.Union[str, int] = None,
|
|
1014
1014
|
undo: bool = None,
|
|
1015
1015
|
):
|
|
1016
1016
|
"""Drag to parent in Outliner
|
|
1017
1017
|
|
|
1018
1018
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1019
|
-
:type execution_context: str
|
|
1019
|
+
:type execution_context: typing.Union[str, int]
|
|
1020
1020
|
:type undo: bool
|
|
1021
1021
|
"""
|
|
1022
1022
|
|
|
@@ -1024,13 +1024,13 @@ def parent_drop(
|
|
|
1024
1024
|
|
|
1025
1025
|
def scene_drop(
|
|
1026
1026
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1027
|
-
execution_context: str = None,
|
|
1027
|
+
execution_context: typing.Union[str, int] = None,
|
|
1028
1028
|
undo: bool = None,
|
|
1029
1029
|
):
|
|
1030
1030
|
"""Drag object to scene in Outliner
|
|
1031
1031
|
|
|
1032
1032
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1033
|
-
:type execution_context: str
|
|
1033
|
+
:type execution_context: typing.Union[str, int]
|
|
1034
1034
|
:type undo: bool
|
|
1035
1035
|
"""
|
|
1036
1036
|
|
|
@@ -1038,14 +1038,14 @@ def scene_drop(
|
|
|
1038
1038
|
|
|
1039
1039
|
def scene_operation(
|
|
1040
1040
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1041
|
-
execution_context: str = None,
|
|
1041
|
+
execution_context: typing.Union[str, int] = None,
|
|
1042
1042
|
undo: bool = None,
|
|
1043
1043
|
type: typing.Union[str, int, typing.Any] = "DELETE",
|
|
1044
1044
|
):
|
|
1045
1045
|
"""Context menu for scene operations
|
|
1046
1046
|
|
|
1047
1047
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1048
|
-
:type execution_context: str
|
|
1048
|
+
:type execution_context: typing.Union[str, int]
|
|
1049
1049
|
:type undo: bool
|
|
1050
1050
|
:param type: Scene Operation
|
|
1051
1051
|
:type type: typing.Union[str, int, typing.Any]
|
|
@@ -1055,14 +1055,14 @@ def scene_operation(
|
|
|
1055
1055
|
|
|
1056
1056
|
def scroll_page(
|
|
1057
1057
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1058
|
-
execution_context: str = None,
|
|
1058
|
+
execution_context: typing.Union[str, int] = None,
|
|
1059
1059
|
undo: bool = None,
|
|
1060
1060
|
up: typing.Union[bool, typing.Any] = False,
|
|
1061
1061
|
):
|
|
1062
1062
|
"""Scroll page up or down
|
|
1063
1063
|
|
|
1064
1064
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1065
|
-
:type execution_context: str
|
|
1065
|
+
:type execution_context: typing.Union[str, int]
|
|
1066
1066
|
:type undo: bool
|
|
1067
1067
|
:param up: Up, Scroll up one page
|
|
1068
1068
|
:type up: typing.Union[bool, typing.Any]
|
|
@@ -1072,14 +1072,14 @@ def scroll_page(
|
|
|
1072
1072
|
|
|
1073
1073
|
def select_all(
|
|
1074
1074
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1075
|
-
execution_context: str = None,
|
|
1075
|
+
execution_context: typing.Union[str, int] = None,
|
|
1076
1076
|
undo: bool = None,
|
|
1077
1077
|
action: typing.Any = "TOGGLE",
|
|
1078
1078
|
):
|
|
1079
1079
|
"""Toggle the Outliner selection of items
|
|
1080
1080
|
|
|
1081
1081
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1082
|
-
:type execution_context: str
|
|
1082
|
+
:type execution_context: typing.Union[str, int]
|
|
1083
1083
|
:type undo: bool
|
|
1084
1084
|
:param action: Action, Selection action to execute
|
|
1085
1085
|
|
|
@@ -1101,7 +1101,7 @@ def select_all(
|
|
|
1101
1101
|
|
|
1102
1102
|
def select_box(
|
|
1103
1103
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1104
|
-
execution_context: str = None,
|
|
1104
|
+
execution_context: typing.Union[str, int] = None,
|
|
1105
1105
|
undo: bool = None,
|
|
1106
1106
|
tweak: typing.Union[bool, typing.Any] = False,
|
|
1107
1107
|
xmin: typing.Any = 0,
|
|
@@ -1114,7 +1114,7 @@ def select_box(
|
|
|
1114
1114
|
"""Use box selection to select tree elements
|
|
1115
1115
|
|
|
1116
1116
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1117
|
-
:type execution_context: str
|
|
1117
|
+
:type execution_context: typing.Union[str, int]
|
|
1118
1118
|
:type undo: bool
|
|
1119
1119
|
:param tweak: Tweak, Tweak gesture from empty space for box selection
|
|
1120
1120
|
:type tweak: typing.Union[bool, typing.Any]
|
|
@@ -1145,7 +1145,7 @@ def select_box(
|
|
|
1145
1145
|
|
|
1146
1146
|
def select_walk(
|
|
1147
1147
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1148
|
-
execution_context: str = None,
|
|
1148
|
+
execution_context: typing.Union[str, int] = None,
|
|
1149
1149
|
undo: bool = None,
|
|
1150
1150
|
direction: typing.Any = "UP",
|
|
1151
1151
|
extend: typing.Union[bool, typing.Any] = False,
|
|
@@ -1154,7 +1154,7 @@ def select_walk(
|
|
|
1154
1154
|
"""Use walk navigation to select tree elements
|
|
1155
1155
|
|
|
1156
1156
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1157
|
-
:type execution_context: str
|
|
1157
|
+
:type execution_context: typing.Union[str, int]
|
|
1158
1158
|
:type undo: bool
|
|
1159
1159
|
:param direction: Walk Direction, Select/Deselect element in this direction
|
|
1160
1160
|
:type direction: typing.Any
|
|
@@ -1168,13 +1168,13 @@ def select_walk(
|
|
|
1168
1168
|
|
|
1169
1169
|
def show_active(
|
|
1170
1170
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1171
|
-
execution_context: str = None,
|
|
1171
|
+
execution_context: typing.Union[str, int] = None,
|
|
1172
1172
|
undo: bool = None,
|
|
1173
1173
|
):
|
|
1174
1174
|
"""Open up the tree and adjust the view so that the active object is shown centered
|
|
1175
1175
|
|
|
1176
1176
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1177
|
-
:type execution_context: str
|
|
1177
|
+
:type execution_context: typing.Union[str, int]
|
|
1178
1178
|
:type undo: bool
|
|
1179
1179
|
"""
|
|
1180
1180
|
|
|
@@ -1182,13 +1182,13 @@ def show_active(
|
|
|
1182
1182
|
|
|
1183
1183
|
def show_hierarchy(
|
|
1184
1184
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1185
|
-
execution_context: str = None,
|
|
1185
|
+
execution_context: typing.Union[str, int] = None,
|
|
1186
1186
|
undo: bool = None,
|
|
1187
1187
|
):
|
|
1188
1188
|
"""Open all object entries and close all others
|
|
1189
1189
|
|
|
1190
1190
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1191
|
-
:type execution_context: str
|
|
1191
|
+
:type execution_context: typing.Union[str, int]
|
|
1192
1192
|
:type undo: bool
|
|
1193
1193
|
"""
|
|
1194
1194
|
|
|
@@ -1196,14 +1196,14 @@ def show_hierarchy(
|
|
|
1196
1196
|
|
|
1197
1197
|
def show_one_level(
|
|
1198
1198
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1199
|
-
execution_context: str = None,
|
|
1199
|
+
execution_context: typing.Union[str, int] = None,
|
|
1200
1200
|
undo: bool = None,
|
|
1201
1201
|
open: typing.Union[bool, typing.Any] = True,
|
|
1202
1202
|
):
|
|
1203
1203
|
"""Expand/collapse all entries by one level
|
|
1204
1204
|
|
|
1205
1205
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1206
|
-
:type execution_context: str
|
|
1206
|
+
:type execution_context: typing.Union[str, int]
|
|
1207
1207
|
:type undo: bool
|
|
1208
1208
|
:param open: Open, Expand all entries one level deep
|
|
1209
1209
|
:type open: typing.Union[bool, typing.Any]
|
|
@@ -1213,13 +1213,13 @@ def show_one_level(
|
|
|
1213
1213
|
|
|
1214
1214
|
def unhide_all(
|
|
1215
1215
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1216
|
-
execution_context: str = None,
|
|
1216
|
+
execution_context: typing.Union[str, int] = None,
|
|
1217
1217
|
undo: bool = None,
|
|
1218
1218
|
):
|
|
1219
1219
|
"""Unhide all objects and collections
|
|
1220
1220
|
|
|
1221
1221
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1222
|
-
:type execution_context: str
|
|
1222
|
+
:type execution_context: typing.Union[str, int]
|
|
1223
1223
|
:type undo: bool
|
|
1224
1224
|
"""
|
|
1225
1225
|
|