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/scene/__init__.pyi
CHANGED
|
@@ -4,13 +4,15 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def delete(
|
|
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
|
):
|
|
11
13
|
"""Delete active scene
|
|
12
14
|
|
|
13
|
-
:type override_context: typing.Optional[typing.Union[
|
|
15
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
14
16
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
15
17
|
:type undo: typing.Optional[bool]
|
|
16
18
|
"""
|
|
@@ -18,13 +20,15 @@ def delete(
|
|
|
18
20
|
...
|
|
19
21
|
|
|
20
22
|
def freestyle_add_edge_marks_to_keying_set(
|
|
21
|
-
override_context: typing.Optional[
|
|
23
|
+
override_context: typing.Optional[
|
|
24
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
25
|
+
] = None,
|
|
22
26
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
23
27
|
undo: typing.Optional[bool] = None,
|
|
24
28
|
):
|
|
25
29
|
"""Add the data paths to the Freestyle Edge Mark property of selected edges to the active keying set
|
|
26
30
|
|
|
27
|
-
:type override_context: typing.Optional[typing.Union[
|
|
31
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
28
32
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
29
33
|
:type undo: typing.Optional[bool]
|
|
30
34
|
"""
|
|
@@ -32,13 +36,15 @@ def freestyle_add_edge_marks_to_keying_set(
|
|
|
32
36
|
...
|
|
33
37
|
|
|
34
38
|
def freestyle_add_face_marks_to_keying_set(
|
|
35
|
-
override_context: typing.Optional[
|
|
39
|
+
override_context: typing.Optional[
|
|
40
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
41
|
+
] = None,
|
|
36
42
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
37
43
|
undo: typing.Optional[bool] = None,
|
|
38
44
|
):
|
|
39
45
|
"""Add the data paths to the Freestyle Face Mark property of selected polygons to the active keying set
|
|
40
46
|
|
|
41
|
-
:type override_context: typing.Optional[typing.Union[
|
|
47
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
42
48
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
43
49
|
:type undo: typing.Optional[bool]
|
|
44
50
|
"""
|
|
@@ -46,14 +52,16 @@ def freestyle_add_face_marks_to_keying_set(
|
|
|
46
52
|
...
|
|
47
53
|
|
|
48
54
|
def freestyle_alpha_modifier_add(
|
|
49
|
-
override_context: typing.Optional[
|
|
55
|
+
override_context: typing.Optional[
|
|
56
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
57
|
+
] = None,
|
|
50
58
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
51
59
|
undo: typing.Optional[bool] = None,
|
|
52
60
|
type: typing.Optional[typing.Union[str, int]] = "ALONG_STROKE",
|
|
53
61
|
):
|
|
54
62
|
"""Add an alpha transparency modifier to the line style associated with the active lineset
|
|
55
63
|
|
|
56
|
-
:type override_context: typing.Optional[typing.Union[
|
|
64
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
57
65
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
58
66
|
:type undo: typing.Optional[bool]
|
|
59
67
|
:param type: Type
|
|
@@ -63,14 +71,16 @@ def freestyle_alpha_modifier_add(
|
|
|
63
71
|
...
|
|
64
72
|
|
|
65
73
|
def freestyle_color_modifier_add(
|
|
66
|
-
override_context: typing.Optional[
|
|
74
|
+
override_context: typing.Optional[
|
|
75
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
76
|
+
] = None,
|
|
67
77
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
68
78
|
undo: typing.Optional[bool] = None,
|
|
69
79
|
type: typing.Optional[typing.Union[str, int]] = "ALONG_STROKE",
|
|
70
80
|
):
|
|
71
81
|
"""Add a line color modifier to the line style associated with the active lineset
|
|
72
82
|
|
|
73
|
-
:type override_context: typing.Optional[typing.Union[
|
|
83
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
74
84
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
75
85
|
:type undo: typing.Optional[bool]
|
|
76
86
|
:param type: Type
|
|
@@ -80,7 +90,9 @@ def freestyle_color_modifier_add(
|
|
|
80
90
|
...
|
|
81
91
|
|
|
82
92
|
def freestyle_fill_range_by_selection(
|
|
83
|
-
override_context: typing.Optional[
|
|
93
|
+
override_context: typing.Optional[
|
|
94
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
95
|
+
] = None,
|
|
84
96
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
85
97
|
undo: typing.Optional[bool] = None,
|
|
86
98
|
type: typing.Optional[typing.Any] = "COLOR",
|
|
@@ -88,7 +100,7 @@ def freestyle_fill_range_by_selection(
|
|
|
88
100
|
):
|
|
89
101
|
"""Fill the Range Min/Max entries by the min/max distance between selected mesh objects and the source object (either a user-specified object or the active camera)
|
|
90
102
|
|
|
91
|
-
:type override_context: typing.Optional[typing.Union[
|
|
103
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
92
104
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
93
105
|
:type undo: typing.Optional[bool]
|
|
94
106
|
:param type: Type, Type of the modifier to work on
|
|
@@ -109,14 +121,16 @@ def freestyle_fill_range_by_selection(
|
|
|
109
121
|
...
|
|
110
122
|
|
|
111
123
|
def freestyle_geometry_modifier_add(
|
|
112
|
-
override_context: typing.Optional[
|
|
124
|
+
override_context: typing.Optional[
|
|
125
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
126
|
+
] = None,
|
|
113
127
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
114
128
|
undo: typing.Optional[bool] = None,
|
|
115
129
|
type: typing.Optional[typing.Union[str, int]] = "2D_OFFSET",
|
|
116
130
|
):
|
|
117
131
|
"""Add a stroke geometry modifier to the line style associated with the active lineset
|
|
118
132
|
|
|
119
|
-
:type override_context: typing.Optional[typing.Union[
|
|
133
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
120
134
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
121
135
|
:type undo: typing.Optional[bool]
|
|
122
136
|
:param type: Type
|
|
@@ -126,13 +140,15 @@ def freestyle_geometry_modifier_add(
|
|
|
126
140
|
...
|
|
127
141
|
|
|
128
142
|
def freestyle_lineset_add(
|
|
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
|
"""Add a line set into the list of line sets
|
|
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 freestyle_lineset_add(
|
|
|
140
156
|
...
|
|
141
157
|
|
|
142
158
|
def freestyle_lineset_copy(
|
|
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
|
"""Copy the active line set to the internal clipboard
|
|
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,14 +172,16 @@ def freestyle_lineset_copy(
|
|
|
154
172
|
...
|
|
155
173
|
|
|
156
174
|
def freestyle_lineset_move(
|
|
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
|
direction: typing.Optional[typing.Any] = "UP",
|
|
161
181
|
):
|
|
162
182
|
"""Change the position of the active line set within the list of line sets
|
|
163
183
|
|
|
164
|
-
:type override_context: typing.Optional[typing.Union[
|
|
184
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
165
185
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
166
186
|
:type undo: typing.Optional[bool]
|
|
167
187
|
:param direction: Direction, Direction to move the active line set towards
|
|
@@ -171,13 +191,15 @@ def freestyle_lineset_move(
|
|
|
171
191
|
...
|
|
172
192
|
|
|
173
193
|
def freestyle_lineset_paste(
|
|
174
|
-
override_context: typing.Optional[
|
|
194
|
+
override_context: typing.Optional[
|
|
195
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
196
|
+
] = None,
|
|
175
197
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
176
198
|
undo: typing.Optional[bool] = None,
|
|
177
199
|
):
|
|
178
200
|
"""Paste the internal clipboard content to the active line set
|
|
179
201
|
|
|
180
|
-
:type override_context: typing.Optional[typing.Union[
|
|
202
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
181
203
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
182
204
|
:type undo: typing.Optional[bool]
|
|
183
205
|
"""
|
|
@@ -185,13 +207,15 @@ def freestyle_lineset_paste(
|
|
|
185
207
|
...
|
|
186
208
|
|
|
187
209
|
def freestyle_lineset_remove(
|
|
188
|
-
override_context: typing.Optional[
|
|
210
|
+
override_context: typing.Optional[
|
|
211
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
212
|
+
] = None,
|
|
189
213
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
190
214
|
undo: typing.Optional[bool] = None,
|
|
191
215
|
):
|
|
192
216
|
"""Remove the active line set from the list of line sets
|
|
193
217
|
|
|
194
|
-
:type override_context: typing.Optional[typing.Union[
|
|
218
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
195
219
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
196
220
|
:type undo: typing.Optional[bool]
|
|
197
221
|
"""
|
|
@@ -199,13 +223,15 @@ def freestyle_lineset_remove(
|
|
|
199
223
|
...
|
|
200
224
|
|
|
201
225
|
def freestyle_linestyle_new(
|
|
202
|
-
override_context: typing.Optional[
|
|
226
|
+
override_context: typing.Optional[
|
|
227
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
228
|
+
] = None,
|
|
203
229
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
204
230
|
undo: typing.Optional[bool] = None,
|
|
205
231
|
):
|
|
206
232
|
"""Create a new line style, reusable by multiple line sets
|
|
207
233
|
|
|
208
|
-
:type override_context: typing.Optional[typing.Union[
|
|
234
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
209
235
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
210
236
|
:type undo: typing.Optional[bool]
|
|
211
237
|
"""
|
|
@@ -213,13 +239,15 @@ def freestyle_linestyle_new(
|
|
|
213
239
|
...
|
|
214
240
|
|
|
215
241
|
def freestyle_modifier_copy(
|
|
216
|
-
override_context: typing.Optional[
|
|
242
|
+
override_context: typing.Optional[
|
|
243
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
244
|
+
] = None,
|
|
217
245
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
218
246
|
undo: typing.Optional[bool] = None,
|
|
219
247
|
):
|
|
220
248
|
"""Duplicate the modifier within the list of modifiers
|
|
221
249
|
|
|
222
|
-
:type override_context: typing.Optional[typing.Union[
|
|
250
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
223
251
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
224
252
|
:type undo: typing.Optional[bool]
|
|
225
253
|
"""
|
|
@@ -227,14 +255,16 @@ def freestyle_modifier_copy(
|
|
|
227
255
|
...
|
|
228
256
|
|
|
229
257
|
def freestyle_modifier_move(
|
|
230
|
-
override_context: typing.Optional[
|
|
258
|
+
override_context: typing.Optional[
|
|
259
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
260
|
+
] = None,
|
|
231
261
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
232
262
|
undo: typing.Optional[bool] = None,
|
|
233
263
|
direction: typing.Optional[typing.Any] = "UP",
|
|
234
264
|
):
|
|
235
265
|
"""Move the modifier within the list of modifiers
|
|
236
266
|
|
|
237
|
-
:type override_context: typing.Optional[typing.Union[
|
|
267
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
238
268
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
239
269
|
:type undo: typing.Optional[bool]
|
|
240
270
|
:param direction: Direction, Direction to move the chosen modifier towards
|
|
@@ -244,13 +274,15 @@ def freestyle_modifier_move(
|
|
|
244
274
|
...
|
|
245
275
|
|
|
246
276
|
def freestyle_modifier_remove(
|
|
247
|
-
override_context: typing.Optional[
|
|
277
|
+
override_context: typing.Optional[
|
|
278
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
279
|
+
] = None,
|
|
248
280
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
249
281
|
undo: typing.Optional[bool] = None,
|
|
250
282
|
):
|
|
251
283
|
"""Remove the modifier from the list of modifiers
|
|
252
284
|
|
|
253
|
-
:type override_context: typing.Optional[typing.Union[
|
|
285
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
254
286
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
255
287
|
:type undo: typing.Optional[bool]
|
|
256
288
|
"""
|
|
@@ -258,13 +290,15 @@ def freestyle_modifier_remove(
|
|
|
258
290
|
...
|
|
259
291
|
|
|
260
292
|
def freestyle_module_add(
|
|
261
|
-
override_context: typing.Optional[
|
|
293
|
+
override_context: typing.Optional[
|
|
294
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
295
|
+
] = None,
|
|
262
296
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
263
297
|
undo: typing.Optional[bool] = None,
|
|
264
298
|
):
|
|
265
299
|
"""Add a style module into the list of modules
|
|
266
300
|
|
|
267
|
-
:type override_context: typing.Optional[typing.Union[
|
|
301
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
268
302
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
269
303
|
:type undo: typing.Optional[bool]
|
|
270
304
|
"""
|
|
@@ -272,14 +306,16 @@ def freestyle_module_add(
|
|
|
272
306
|
...
|
|
273
307
|
|
|
274
308
|
def freestyle_module_move(
|
|
275
|
-
override_context: typing.Optional[
|
|
309
|
+
override_context: typing.Optional[
|
|
310
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
311
|
+
] = None,
|
|
276
312
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
277
313
|
undo: typing.Optional[bool] = None,
|
|
278
314
|
direction: typing.Optional[typing.Any] = "UP",
|
|
279
315
|
):
|
|
280
316
|
"""Change the position of the style module within in the list of style modules
|
|
281
317
|
|
|
282
|
-
:type override_context: typing.Optional[typing.Union[
|
|
318
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
283
319
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
284
320
|
:type undo: typing.Optional[bool]
|
|
285
321
|
:param direction: Direction, Direction to move the chosen style module towards
|
|
@@ -289,7 +325,9 @@ def freestyle_module_move(
|
|
|
289
325
|
...
|
|
290
326
|
|
|
291
327
|
def freestyle_module_open(
|
|
292
|
-
override_context: typing.Optional[
|
|
328
|
+
override_context: typing.Optional[
|
|
329
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
330
|
+
] = None,
|
|
293
331
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
294
332
|
undo: typing.Optional[bool] = None,
|
|
295
333
|
filepath: typing.Union[str, typing.Any] = "",
|
|
@@ -297,7 +335,7 @@ def freestyle_module_open(
|
|
|
297
335
|
):
|
|
298
336
|
"""Open a style module file
|
|
299
337
|
|
|
300
|
-
:type override_context: typing.Optional[typing.Union[
|
|
338
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
301
339
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
302
340
|
:type undo: typing.Optional[bool]
|
|
303
341
|
:param filepath: filepath
|
|
@@ -309,13 +347,15 @@ def freestyle_module_open(
|
|
|
309
347
|
...
|
|
310
348
|
|
|
311
349
|
def freestyle_module_remove(
|
|
312
|
-
override_context: typing.Optional[
|
|
350
|
+
override_context: typing.Optional[
|
|
351
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
352
|
+
] = None,
|
|
313
353
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
314
354
|
undo: typing.Optional[bool] = None,
|
|
315
355
|
):
|
|
316
356
|
"""Remove the style module from the stack
|
|
317
357
|
|
|
318
|
-
:type override_context: typing.Optional[typing.Union[
|
|
358
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
319
359
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
320
360
|
:type undo: typing.Optional[bool]
|
|
321
361
|
"""
|
|
@@ -323,13 +363,15 @@ def freestyle_module_remove(
|
|
|
323
363
|
...
|
|
324
364
|
|
|
325
365
|
def freestyle_stroke_material_create(
|
|
326
|
-
override_context: typing.Optional[
|
|
366
|
+
override_context: typing.Optional[
|
|
367
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
368
|
+
] = None,
|
|
327
369
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
328
370
|
undo: typing.Optional[bool] = None,
|
|
329
371
|
):
|
|
330
372
|
"""Create Freestyle stroke material for testing
|
|
331
373
|
|
|
332
|
-
:type override_context: typing.Optional[typing.Union[
|
|
374
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
333
375
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
334
376
|
:type undo: typing.Optional[bool]
|
|
335
377
|
"""
|
|
@@ -337,14 +379,16 @@ def freestyle_stroke_material_create(
|
|
|
337
379
|
...
|
|
338
380
|
|
|
339
381
|
def freestyle_thickness_modifier_add(
|
|
340
|
-
override_context: typing.Optional[
|
|
382
|
+
override_context: typing.Optional[
|
|
383
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
384
|
+
] = None,
|
|
341
385
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
342
386
|
undo: typing.Optional[bool] = None,
|
|
343
387
|
type: typing.Optional[typing.Union[str, int]] = "ALONG_STROKE",
|
|
344
388
|
):
|
|
345
389
|
"""Add a line thickness modifier to the line style associated with the active lineset
|
|
346
390
|
|
|
347
|
-
:type override_context: typing.Optional[typing.Union[
|
|
391
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
348
392
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
349
393
|
:type undo: typing.Optional[bool]
|
|
350
394
|
:param type: Type
|
|
@@ -354,13 +398,15 @@ def freestyle_thickness_modifier_add(
|
|
|
354
398
|
...
|
|
355
399
|
|
|
356
400
|
def gltf2_action_filter_refresh(
|
|
357
|
-
override_context: typing.Optional[
|
|
401
|
+
override_context: typing.Optional[
|
|
402
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
403
|
+
] = None,
|
|
358
404
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
359
405
|
undo: typing.Optional[bool] = None,
|
|
360
406
|
):
|
|
361
407
|
"""Refresh list of actions
|
|
362
408
|
|
|
363
|
-
:type override_context: typing.Optional[typing.Union[
|
|
409
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
364
410
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
365
411
|
:type undo: typing.Optional[bool]
|
|
366
412
|
"""
|
|
@@ -368,7 +414,9 @@ def gltf2_action_filter_refresh(
|
|
|
368
414
|
...
|
|
369
415
|
|
|
370
416
|
def gpencil_brush_preset_add(
|
|
371
|
-
override_context: typing.Optional[
|
|
417
|
+
override_context: typing.Optional[
|
|
418
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
419
|
+
] = None,
|
|
372
420
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
373
421
|
undo: typing.Optional[bool] = None,
|
|
374
422
|
name: typing.Union[str, typing.Any] = "",
|
|
@@ -377,7 +425,7 @@ def gpencil_brush_preset_add(
|
|
|
377
425
|
):
|
|
378
426
|
"""Add or remove grease pencil brush preset
|
|
379
427
|
|
|
380
|
-
:type override_context: typing.Optional[typing.Union[
|
|
428
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
381
429
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
382
430
|
:type undo: typing.Optional[bool]
|
|
383
431
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -391,7 +439,9 @@ def gpencil_brush_preset_add(
|
|
|
391
439
|
...
|
|
392
440
|
|
|
393
441
|
def gpencil_material_preset_add(
|
|
394
|
-
override_context: typing.Optional[
|
|
442
|
+
override_context: typing.Optional[
|
|
443
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
444
|
+
] = None,
|
|
395
445
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
396
446
|
undo: typing.Optional[bool] = None,
|
|
397
447
|
name: typing.Union[str, typing.Any] = "",
|
|
@@ -400,7 +450,7 @@ def gpencil_material_preset_add(
|
|
|
400
450
|
):
|
|
401
451
|
"""Add or remove grease pencil material preset
|
|
402
452
|
|
|
403
|
-
:type override_context: typing.Optional[typing.Union[
|
|
453
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
404
454
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
405
455
|
:type undo: typing.Optional[bool]
|
|
406
456
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -414,7 +464,9 @@ def gpencil_material_preset_add(
|
|
|
414
464
|
...
|
|
415
465
|
|
|
416
466
|
def light_cache_bake(
|
|
417
|
-
override_context: typing.Optional[
|
|
467
|
+
override_context: typing.Optional[
|
|
468
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
469
|
+
] = None,
|
|
418
470
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
419
471
|
undo: typing.Optional[bool] = None,
|
|
420
472
|
delay: typing.Optional[typing.Any] = 0,
|
|
@@ -422,7 +474,7 @@ def light_cache_bake(
|
|
|
422
474
|
):
|
|
423
475
|
"""Bake the active view layer lighting
|
|
424
476
|
|
|
425
|
-
:type override_context: typing.Optional[typing.Union[
|
|
477
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
426
478
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
427
479
|
:type undo: typing.Optional[bool]
|
|
428
480
|
:param delay: Delay, Delay in millisecond before baking starts
|
|
@@ -443,13 +495,15 @@ def light_cache_bake(
|
|
|
443
495
|
...
|
|
444
496
|
|
|
445
497
|
def light_cache_free(
|
|
446
|
-
override_context: typing.Optional[
|
|
498
|
+
override_context: typing.Optional[
|
|
499
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
500
|
+
] = None,
|
|
447
501
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
448
502
|
undo: typing.Optional[bool] = None,
|
|
449
503
|
):
|
|
450
504
|
"""Delete cached indirect lighting
|
|
451
505
|
|
|
452
|
-
:type override_context: typing.Optional[typing.Union[
|
|
506
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
453
507
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
454
508
|
:type undo: typing.Optional[bool]
|
|
455
509
|
"""
|
|
@@ -457,14 +511,16 @@ def light_cache_free(
|
|
|
457
511
|
...
|
|
458
512
|
|
|
459
513
|
def new(
|
|
460
|
-
override_context: typing.Optional[
|
|
514
|
+
override_context: typing.Optional[
|
|
515
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
516
|
+
] = None,
|
|
461
517
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
462
518
|
undo: typing.Optional[bool] = None,
|
|
463
519
|
type: typing.Optional[typing.Any] = "NEW",
|
|
464
520
|
):
|
|
465
521
|
"""Add new scene by type
|
|
466
522
|
|
|
467
|
-
:type override_context: typing.Optional[typing.Union[
|
|
523
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
468
524
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
469
525
|
:type undo: typing.Optional[bool]
|
|
470
526
|
:param type: Type
|
|
@@ -486,14 +542,16 @@ def new(
|
|
|
486
542
|
...
|
|
487
543
|
|
|
488
544
|
def new_sequencer(
|
|
489
|
-
override_context: typing.Optional[
|
|
545
|
+
override_context: typing.Optional[
|
|
546
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
547
|
+
] = None,
|
|
490
548
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
491
549
|
undo: typing.Optional[bool] = None,
|
|
492
550
|
type: typing.Optional[typing.Any] = "NEW",
|
|
493
551
|
):
|
|
494
552
|
"""Add new scene by type in the sequence editor and assign to active strip
|
|
495
553
|
|
|
496
|
-
:type override_context: typing.Optional[typing.Union[
|
|
554
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
497
555
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
498
556
|
:type undo: typing.Optional[bool]
|
|
499
557
|
:param type: Type
|
|
@@ -515,13 +573,15 @@ def new_sequencer(
|
|
|
515
573
|
...
|
|
516
574
|
|
|
517
575
|
def render_view_add(
|
|
518
|
-
override_context: typing.Optional[
|
|
576
|
+
override_context: typing.Optional[
|
|
577
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
578
|
+
] = None,
|
|
519
579
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
520
580
|
undo: typing.Optional[bool] = None,
|
|
521
581
|
):
|
|
522
582
|
"""Add a render view
|
|
523
583
|
|
|
524
|
-
:type override_context: typing.Optional[typing.Union[
|
|
584
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
525
585
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
526
586
|
:type undo: typing.Optional[bool]
|
|
527
587
|
"""
|
|
@@ -529,13 +589,15 @@ def render_view_add(
|
|
|
529
589
|
...
|
|
530
590
|
|
|
531
591
|
def render_view_remove(
|
|
532
|
-
override_context: typing.Optional[
|
|
592
|
+
override_context: typing.Optional[
|
|
593
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
594
|
+
] = None,
|
|
533
595
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
534
596
|
undo: typing.Optional[bool] = None,
|
|
535
597
|
):
|
|
536
598
|
"""Remove the selected render view
|
|
537
599
|
|
|
538
|
-
:type override_context: typing.Optional[typing.Union[
|
|
600
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
539
601
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
540
602
|
:type undo: typing.Optional[bool]
|
|
541
603
|
"""
|
|
@@ -543,14 +605,16 @@ def render_view_remove(
|
|
|
543
605
|
...
|
|
544
606
|
|
|
545
607
|
def view_layer_add(
|
|
546
|
-
override_context: typing.Optional[
|
|
608
|
+
override_context: typing.Optional[
|
|
609
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
610
|
+
] = None,
|
|
547
611
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
548
612
|
undo: typing.Optional[bool] = None,
|
|
549
613
|
type: typing.Optional[typing.Any] = "NEW",
|
|
550
614
|
):
|
|
551
615
|
"""Add a view layer
|
|
552
616
|
|
|
553
|
-
:type override_context: typing.Optional[typing.Union[
|
|
617
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
554
618
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
555
619
|
:type undo: typing.Optional[bool]
|
|
556
620
|
:param type: Type
|
|
@@ -569,13 +633,15 @@ def view_layer_add(
|
|
|
569
633
|
...
|
|
570
634
|
|
|
571
635
|
def view_layer_add_aov(
|
|
572
|
-
override_context: typing.Optional[
|
|
636
|
+
override_context: typing.Optional[
|
|
637
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
638
|
+
] = None,
|
|
573
639
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
574
640
|
undo: typing.Optional[bool] = None,
|
|
575
641
|
):
|
|
576
642
|
"""Add a Shader AOV
|
|
577
643
|
|
|
578
|
-
:type override_context: typing.Optional[typing.Union[
|
|
644
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
579
645
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
580
646
|
:type undo: typing.Optional[bool]
|
|
581
647
|
"""
|
|
@@ -583,14 +649,16 @@ def view_layer_add_aov(
|
|
|
583
649
|
...
|
|
584
650
|
|
|
585
651
|
def view_layer_add_lightgroup(
|
|
586
|
-
override_context: typing.Optional[
|
|
652
|
+
override_context: typing.Optional[
|
|
653
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
654
|
+
] = None,
|
|
587
655
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
588
656
|
undo: typing.Optional[bool] = None,
|
|
589
657
|
name: typing.Union[str, typing.Any] = "",
|
|
590
658
|
):
|
|
591
659
|
"""Add a Light Group
|
|
592
660
|
|
|
593
|
-
:type override_context: typing.Optional[typing.Union[
|
|
661
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
594
662
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
595
663
|
:type undo: typing.Optional[bool]
|
|
596
664
|
:param name: Name, Name of newly created lightgroup
|
|
@@ -600,13 +668,15 @@ def view_layer_add_lightgroup(
|
|
|
600
668
|
...
|
|
601
669
|
|
|
602
670
|
def view_layer_add_used_lightgroups(
|
|
603
|
-
override_context: typing.Optional[
|
|
671
|
+
override_context: typing.Optional[
|
|
672
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
673
|
+
] = None,
|
|
604
674
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
605
675
|
undo: typing.Optional[bool] = None,
|
|
606
676
|
):
|
|
607
677
|
"""Add all used Light Groups
|
|
608
678
|
|
|
609
|
-
:type override_context: typing.Optional[typing.Union[
|
|
679
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
610
680
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
611
681
|
:type undo: typing.Optional[bool]
|
|
612
682
|
"""
|
|
@@ -614,13 +684,15 @@ def view_layer_add_used_lightgroups(
|
|
|
614
684
|
...
|
|
615
685
|
|
|
616
686
|
def view_layer_remove(
|
|
617
|
-
override_context: typing.Optional[
|
|
687
|
+
override_context: typing.Optional[
|
|
688
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
689
|
+
] = None,
|
|
618
690
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
619
691
|
undo: typing.Optional[bool] = None,
|
|
620
692
|
):
|
|
621
693
|
"""Remove the selected view layer
|
|
622
694
|
|
|
623
|
-
:type override_context: typing.Optional[typing.Union[
|
|
695
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
624
696
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
625
697
|
:type undo: typing.Optional[bool]
|
|
626
698
|
"""
|
|
@@ -628,13 +700,15 @@ def view_layer_remove(
|
|
|
628
700
|
...
|
|
629
701
|
|
|
630
702
|
def view_layer_remove_aov(
|
|
631
|
-
override_context: typing.Optional[
|
|
703
|
+
override_context: typing.Optional[
|
|
704
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
705
|
+
] = None,
|
|
632
706
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
633
707
|
undo: typing.Optional[bool] = None,
|
|
634
708
|
):
|
|
635
709
|
"""Remove Active AOV
|
|
636
710
|
|
|
637
|
-
:type override_context: typing.Optional[typing.Union[
|
|
711
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
638
712
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
639
713
|
:type undo: typing.Optional[bool]
|
|
640
714
|
"""
|
|
@@ -642,13 +716,15 @@ def view_layer_remove_aov(
|
|
|
642
716
|
...
|
|
643
717
|
|
|
644
718
|
def view_layer_remove_lightgroup(
|
|
645
|
-
override_context: typing.Optional[
|
|
719
|
+
override_context: typing.Optional[
|
|
720
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
721
|
+
] = None,
|
|
646
722
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
647
723
|
undo: typing.Optional[bool] = None,
|
|
648
724
|
):
|
|
649
725
|
"""Remove Active Lightgroup
|
|
650
726
|
|
|
651
|
-
:type override_context: typing.Optional[typing.Union[
|
|
727
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
652
728
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
653
729
|
:type undo: typing.Optional[bool]
|
|
654
730
|
"""
|
|
@@ -656,13 +732,15 @@ def view_layer_remove_lightgroup(
|
|
|
656
732
|
...
|
|
657
733
|
|
|
658
734
|
def view_layer_remove_unused_lightgroups(
|
|
659
|
-
override_context: typing.Optional[
|
|
735
|
+
override_context: typing.Optional[
|
|
736
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
737
|
+
] = None,
|
|
660
738
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
661
739
|
undo: typing.Optional[bool] = None,
|
|
662
740
|
):
|
|
663
741
|
"""Remove all unused Light Groups
|
|
664
742
|
|
|
665
|
-
:type override_context: typing.Optional[typing.Union[
|
|
743
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
666
744
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
667
745
|
:type undo: typing.Optional[bool]
|
|
668
746
|
"""
|