fake-bpy-module 20240812__py3-none-any.whl → 20240813__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.
- bl_ui/space_view3d/__init__.pyi +31 -0
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +110 -110
- 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 +26 -26
- 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 +54 -54
- 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_scene/__init__.pyi +4 -4
- bpy/ops/extensions/__init__.pyi +68 -68
- 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 +284 -284
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +166 -166
- bpy/ops/image/__init__.pyi +98 -98
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +4 -4
- 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 +326 -326
- bpy/ops/nla/__init__.pyi +78 -78
- bpy/ops/node/__init__.pyi +208 -208
- bpy/ops/object/__init__.pyi +473 -473
- bpy/ops/outliner/__init__.pyi +142 -142
- bpy/ops/paint/__init__.pyi +108 -108
- 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 +102 -102
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +70 -70
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +26 -26
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +74 -74
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +72 -72
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +174 -174
- 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 +226 -226
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +44 -34
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/RECORD +83 -83
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/top_level.txt +0 -0
bpy/ops/scene/__init__.pyi
CHANGED
|
@@ -7,13 +7,13 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def delete(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
):
|
|
14
14
|
"""Delete active scene
|
|
15
15
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
16
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
17
17
|
:type execution_context: int | str | None
|
|
18
18
|
:type undo: bool | None
|
|
19
19
|
"""
|
|
@@ -21,13 +21,13 @@ def delete(
|
|
|
21
21
|
...
|
|
22
22
|
|
|
23
23
|
def freestyle_add_edge_marks_to_keying_set(
|
|
24
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
24
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
25
25
|
execution_context: int | str | None = None,
|
|
26
26
|
undo: bool | None = None,
|
|
27
27
|
):
|
|
28
28
|
"""Add the data paths to the Freestyle Edge Mark property of selected edges to the active keying set
|
|
29
29
|
|
|
30
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
30
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
31
31
|
:type execution_context: int | str | None
|
|
32
32
|
:type undo: bool | None
|
|
33
33
|
"""
|
|
@@ -35,13 +35,13 @@ def freestyle_add_edge_marks_to_keying_set(
|
|
|
35
35
|
...
|
|
36
36
|
|
|
37
37
|
def freestyle_add_face_marks_to_keying_set(
|
|
38
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
38
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
39
39
|
execution_context: int | str | None = None,
|
|
40
40
|
undo: bool | None = None,
|
|
41
41
|
):
|
|
42
42
|
"""Add the data paths to the Freestyle Face Mark property of selected polygons to the active keying set
|
|
43
43
|
|
|
44
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
44
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
45
45
|
:type execution_context: int | str | None
|
|
46
46
|
:type undo: bool | None
|
|
47
47
|
"""
|
|
@@ -49,7 +49,7 @@ def freestyle_add_face_marks_to_keying_set(
|
|
|
49
49
|
...
|
|
50
50
|
|
|
51
51
|
def freestyle_alpha_modifier_add(
|
|
52
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
52
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
53
53
|
execution_context: int | str | None = None,
|
|
54
54
|
undo: bool | None = None,
|
|
55
55
|
*,
|
|
@@ -67,7 +67,7 @@ def freestyle_alpha_modifier_add(
|
|
|
67
67
|
):
|
|
68
68
|
"""Add an alpha transparency modifier to the line style associated with the active lineset
|
|
69
69
|
|
|
70
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
70
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
71
71
|
:type execution_context: int | str | None
|
|
72
72
|
:type undo: bool | None
|
|
73
73
|
:param type: Type
|
|
@@ -77,7 +77,7 @@ def freestyle_alpha_modifier_add(
|
|
|
77
77
|
...
|
|
78
78
|
|
|
79
79
|
def freestyle_color_modifier_add(
|
|
80
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
80
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
81
81
|
execution_context: int | str | None = None,
|
|
82
82
|
undo: bool | None = None,
|
|
83
83
|
*,
|
|
@@ -95,7 +95,7 @@ def freestyle_color_modifier_add(
|
|
|
95
95
|
):
|
|
96
96
|
"""Add a line color modifier to the line style associated with the active lineset
|
|
97
97
|
|
|
98
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
98
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
99
99
|
:type execution_context: int | str | None
|
|
100
100
|
:type undo: bool | None
|
|
101
101
|
:param type: Type
|
|
@@ -105,7 +105,7 @@ def freestyle_color_modifier_add(
|
|
|
105
105
|
...
|
|
106
106
|
|
|
107
107
|
def freestyle_fill_range_by_selection(
|
|
108
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
108
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
109
109
|
execution_context: int | str | None = None,
|
|
110
110
|
undo: bool | None = None,
|
|
111
111
|
*,
|
|
@@ -114,7 +114,7 @@ def freestyle_fill_range_by_selection(
|
|
|
114
114
|
):
|
|
115
115
|
"""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)
|
|
116
116
|
|
|
117
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
117
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
118
118
|
:type execution_context: int | str | None
|
|
119
119
|
:type undo: bool | None
|
|
120
120
|
:param type: Type, Type of the modifier to work on
|
|
@@ -135,7 +135,7 @@ def freestyle_fill_range_by_selection(
|
|
|
135
135
|
...
|
|
136
136
|
|
|
137
137
|
def freestyle_geometry_modifier_add(
|
|
138
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
138
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
139
139
|
execution_context: int | str | None = None,
|
|
140
140
|
undo: bool | None = None,
|
|
141
141
|
*,
|
|
@@ -159,7 +159,7 @@ def freestyle_geometry_modifier_add(
|
|
|
159
159
|
):
|
|
160
160
|
"""Add a stroke geometry modifier to the line style associated with the active lineset
|
|
161
161
|
|
|
162
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
162
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
163
163
|
:type execution_context: int | str | None
|
|
164
164
|
:type undo: bool | None
|
|
165
165
|
:param type: Type
|
|
@@ -169,13 +169,13 @@ def freestyle_geometry_modifier_add(
|
|
|
169
169
|
...
|
|
170
170
|
|
|
171
171
|
def freestyle_lineset_add(
|
|
172
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
172
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
173
173
|
execution_context: int | str | None = None,
|
|
174
174
|
undo: bool | None = None,
|
|
175
175
|
):
|
|
176
176
|
"""Add a line set into the list of line sets
|
|
177
177
|
|
|
178
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
178
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
179
179
|
:type execution_context: int | str | None
|
|
180
180
|
:type undo: bool | None
|
|
181
181
|
"""
|
|
@@ -183,13 +183,13 @@ def freestyle_lineset_add(
|
|
|
183
183
|
...
|
|
184
184
|
|
|
185
185
|
def freestyle_lineset_copy(
|
|
186
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
186
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
187
187
|
execution_context: int | str | None = None,
|
|
188
188
|
undo: bool | None = None,
|
|
189
189
|
):
|
|
190
190
|
"""Copy the active line set to the internal clipboard
|
|
191
191
|
|
|
192
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
192
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
193
193
|
:type execution_context: int | str | None
|
|
194
194
|
:type undo: bool | None
|
|
195
195
|
"""
|
|
@@ -197,7 +197,7 @@ def freestyle_lineset_copy(
|
|
|
197
197
|
...
|
|
198
198
|
|
|
199
199
|
def freestyle_lineset_move(
|
|
200
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
200
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
201
201
|
execution_context: int | str | None = None,
|
|
202
202
|
undo: bool | None = None,
|
|
203
203
|
*,
|
|
@@ -205,7 +205,7 @@ def freestyle_lineset_move(
|
|
|
205
205
|
):
|
|
206
206
|
"""Change the position of the active line set within the list of line sets
|
|
207
207
|
|
|
208
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
208
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
209
209
|
:type execution_context: int | str | None
|
|
210
210
|
:type undo: bool | None
|
|
211
211
|
:param direction: Direction, Direction to move the active line set towards
|
|
@@ -215,13 +215,13 @@ def freestyle_lineset_move(
|
|
|
215
215
|
...
|
|
216
216
|
|
|
217
217
|
def freestyle_lineset_paste(
|
|
218
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
218
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
219
219
|
execution_context: int | str | None = None,
|
|
220
220
|
undo: bool | None = None,
|
|
221
221
|
):
|
|
222
222
|
"""Paste the internal clipboard content to the active line set
|
|
223
223
|
|
|
224
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
224
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
225
225
|
:type execution_context: int | str | None
|
|
226
226
|
:type undo: bool | None
|
|
227
227
|
"""
|
|
@@ -229,13 +229,13 @@ def freestyle_lineset_paste(
|
|
|
229
229
|
...
|
|
230
230
|
|
|
231
231
|
def freestyle_lineset_remove(
|
|
232
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
232
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
233
233
|
execution_context: int | str | None = None,
|
|
234
234
|
undo: bool | None = None,
|
|
235
235
|
):
|
|
236
236
|
"""Remove the active line set from the list of line sets
|
|
237
237
|
|
|
238
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
238
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
239
239
|
:type execution_context: int | str | None
|
|
240
240
|
:type undo: bool | None
|
|
241
241
|
"""
|
|
@@ -243,13 +243,13 @@ def freestyle_lineset_remove(
|
|
|
243
243
|
...
|
|
244
244
|
|
|
245
245
|
def freestyle_linestyle_new(
|
|
246
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
246
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
247
247
|
execution_context: int | str | None = None,
|
|
248
248
|
undo: bool | None = None,
|
|
249
249
|
):
|
|
250
250
|
"""Create a new line style, reusable by multiple line sets
|
|
251
251
|
|
|
252
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
252
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
253
253
|
:type execution_context: int | str | None
|
|
254
254
|
:type undo: bool | None
|
|
255
255
|
"""
|
|
@@ -257,13 +257,13 @@ def freestyle_linestyle_new(
|
|
|
257
257
|
...
|
|
258
258
|
|
|
259
259
|
def freestyle_modifier_copy(
|
|
260
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
260
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
261
261
|
execution_context: int | str | None = None,
|
|
262
262
|
undo: bool | None = None,
|
|
263
263
|
):
|
|
264
264
|
"""Duplicate the modifier within the list of modifiers
|
|
265
265
|
|
|
266
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
266
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
267
267
|
:type execution_context: int | str | None
|
|
268
268
|
:type undo: bool | None
|
|
269
269
|
"""
|
|
@@ -271,7 +271,7 @@ def freestyle_modifier_copy(
|
|
|
271
271
|
...
|
|
272
272
|
|
|
273
273
|
def freestyle_modifier_move(
|
|
274
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
274
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
275
275
|
execution_context: int | str | None = None,
|
|
276
276
|
undo: bool | None = None,
|
|
277
277
|
*,
|
|
@@ -279,7 +279,7 @@ def freestyle_modifier_move(
|
|
|
279
279
|
):
|
|
280
280
|
"""Move the modifier within the list of modifiers
|
|
281
281
|
|
|
282
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
282
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
283
283
|
:type execution_context: int | str | None
|
|
284
284
|
:type undo: bool | None
|
|
285
285
|
:param direction: Direction, Direction to move the chosen modifier towards
|
|
@@ -289,13 +289,13 @@ def freestyle_modifier_move(
|
|
|
289
289
|
...
|
|
290
290
|
|
|
291
291
|
def freestyle_modifier_remove(
|
|
292
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
292
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
293
293
|
execution_context: int | str | None = None,
|
|
294
294
|
undo: bool | None = None,
|
|
295
295
|
):
|
|
296
296
|
"""Remove the modifier from the list of modifiers
|
|
297
297
|
|
|
298
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
298
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
299
299
|
:type execution_context: int | str | None
|
|
300
300
|
:type undo: bool | None
|
|
301
301
|
"""
|
|
@@ -303,13 +303,13 @@ def freestyle_modifier_remove(
|
|
|
303
303
|
...
|
|
304
304
|
|
|
305
305
|
def freestyle_module_add(
|
|
306
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
306
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
307
307
|
execution_context: int | str | None = None,
|
|
308
308
|
undo: bool | None = None,
|
|
309
309
|
):
|
|
310
310
|
"""Add a style module into the list of modules
|
|
311
311
|
|
|
312
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
312
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
313
313
|
:type execution_context: int | str | None
|
|
314
314
|
:type undo: bool | None
|
|
315
315
|
"""
|
|
@@ -317,7 +317,7 @@ def freestyle_module_add(
|
|
|
317
317
|
...
|
|
318
318
|
|
|
319
319
|
def freestyle_module_move(
|
|
320
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
320
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
321
321
|
execution_context: int | str | None = None,
|
|
322
322
|
undo: bool | None = None,
|
|
323
323
|
*,
|
|
@@ -325,7 +325,7 @@ def freestyle_module_move(
|
|
|
325
325
|
):
|
|
326
326
|
"""Change the position of the style module within in the list of style modules
|
|
327
327
|
|
|
328
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
328
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
329
329
|
:type execution_context: int | str | None
|
|
330
330
|
:type undo: bool | None
|
|
331
331
|
:param direction: Direction, Direction to move the chosen style module towards
|
|
@@ -335,7 +335,7 @@ def freestyle_module_move(
|
|
|
335
335
|
...
|
|
336
336
|
|
|
337
337
|
def freestyle_module_open(
|
|
338
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
338
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
339
339
|
execution_context: int | str | None = None,
|
|
340
340
|
undo: bool | None = None,
|
|
341
341
|
*,
|
|
@@ -344,7 +344,7 @@ def freestyle_module_open(
|
|
|
344
344
|
):
|
|
345
345
|
"""Open a style module file
|
|
346
346
|
|
|
347
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
347
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
348
348
|
:type execution_context: int | str | None
|
|
349
349
|
:type undo: bool | None
|
|
350
350
|
:param filepath: filepath
|
|
@@ -356,13 +356,13 @@ def freestyle_module_open(
|
|
|
356
356
|
...
|
|
357
357
|
|
|
358
358
|
def freestyle_module_remove(
|
|
359
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
359
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
360
360
|
execution_context: int | str | None = None,
|
|
361
361
|
undo: bool | None = None,
|
|
362
362
|
):
|
|
363
363
|
"""Remove the style module from the stack
|
|
364
364
|
|
|
365
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
365
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
366
366
|
:type execution_context: int | str | None
|
|
367
367
|
:type undo: bool | None
|
|
368
368
|
"""
|
|
@@ -370,13 +370,13 @@ def freestyle_module_remove(
|
|
|
370
370
|
...
|
|
371
371
|
|
|
372
372
|
def freestyle_stroke_material_create(
|
|
373
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
373
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
374
374
|
execution_context: int | str | None = None,
|
|
375
375
|
undo: bool | None = None,
|
|
376
376
|
):
|
|
377
377
|
"""Create Freestyle stroke material for testing
|
|
378
378
|
|
|
379
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
379
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
380
380
|
:type execution_context: int | str | None
|
|
381
381
|
:type undo: bool | None
|
|
382
382
|
"""
|
|
@@ -384,7 +384,7 @@ def freestyle_stroke_material_create(
|
|
|
384
384
|
...
|
|
385
385
|
|
|
386
386
|
def freestyle_thickness_modifier_add(
|
|
387
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
387
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
388
388
|
execution_context: int | str | None = None,
|
|
389
389
|
undo: bool | None = None,
|
|
390
390
|
*,
|
|
@@ -403,7 +403,7 @@ def freestyle_thickness_modifier_add(
|
|
|
403
403
|
):
|
|
404
404
|
"""Add a line thickness modifier to the line style associated with the active lineset
|
|
405
405
|
|
|
406
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
406
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
407
407
|
:type execution_context: int | str | None
|
|
408
408
|
:type undo: bool | None
|
|
409
409
|
:param type: Type
|
|
@@ -413,13 +413,13 @@ def freestyle_thickness_modifier_add(
|
|
|
413
413
|
...
|
|
414
414
|
|
|
415
415
|
def gltf2_action_filter_refresh(
|
|
416
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
416
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
417
417
|
execution_context: int | str | None = None,
|
|
418
418
|
undo: bool | None = None,
|
|
419
419
|
):
|
|
420
420
|
"""Refresh list of actions
|
|
421
421
|
|
|
422
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
422
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
423
423
|
:type execution_context: int | str | None
|
|
424
424
|
:type undo: bool | None
|
|
425
425
|
"""
|
|
@@ -427,7 +427,7 @@ def gltf2_action_filter_refresh(
|
|
|
427
427
|
...
|
|
428
428
|
|
|
429
429
|
def gpencil_brush_preset_add(
|
|
430
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
430
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
431
431
|
execution_context: int | str | None = None,
|
|
432
432
|
undo: bool | None = None,
|
|
433
433
|
*,
|
|
@@ -437,7 +437,7 @@ def gpencil_brush_preset_add(
|
|
|
437
437
|
):
|
|
438
438
|
"""Add or remove grease pencil brush preset
|
|
439
439
|
|
|
440
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
440
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
441
441
|
:type execution_context: int | str | None
|
|
442
442
|
:type undo: bool | None
|
|
443
443
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -451,7 +451,7 @@ def gpencil_brush_preset_add(
|
|
|
451
451
|
...
|
|
452
452
|
|
|
453
453
|
def gpencil_material_preset_add(
|
|
454
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
454
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
455
455
|
execution_context: int | str | None = None,
|
|
456
456
|
undo: bool | None = None,
|
|
457
457
|
*,
|
|
@@ -461,7 +461,7 @@ def gpencil_material_preset_add(
|
|
|
461
461
|
):
|
|
462
462
|
"""Add or remove grease pencil material preset
|
|
463
463
|
|
|
464
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
464
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
465
465
|
:type execution_context: int | str | None
|
|
466
466
|
:type undo: bool | None
|
|
467
467
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -475,7 +475,7 @@ def gpencil_material_preset_add(
|
|
|
475
475
|
...
|
|
476
476
|
|
|
477
477
|
def new(
|
|
478
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
478
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
479
479
|
execution_context: int | str | None = None,
|
|
480
480
|
undo: bool | None = None,
|
|
481
481
|
*,
|
|
@@ -483,7 +483,7 @@ def new(
|
|
|
483
483
|
):
|
|
484
484
|
"""Add new scene by type
|
|
485
485
|
|
|
486
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
486
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
487
487
|
:type execution_context: int | str | None
|
|
488
488
|
:type undo: bool | None
|
|
489
489
|
:param type: Type
|
|
@@ -505,7 +505,7 @@ def new(
|
|
|
505
505
|
...
|
|
506
506
|
|
|
507
507
|
def new_sequencer(
|
|
508
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
508
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
509
509
|
execution_context: int | str | None = None,
|
|
510
510
|
undo: bool | None = None,
|
|
511
511
|
*,
|
|
@@ -513,7 +513,7 @@ def new_sequencer(
|
|
|
513
513
|
):
|
|
514
514
|
"""Add new scene by type in the sequence editor and assign to active strip
|
|
515
515
|
|
|
516
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
516
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
517
517
|
:type execution_context: int | str | None
|
|
518
518
|
:type undo: bool | None
|
|
519
519
|
:param type: Type
|
|
@@ -535,13 +535,13 @@ def new_sequencer(
|
|
|
535
535
|
...
|
|
536
536
|
|
|
537
537
|
def render_view_add(
|
|
538
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
538
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
539
539
|
execution_context: int | str | None = None,
|
|
540
540
|
undo: bool | None = None,
|
|
541
541
|
):
|
|
542
542
|
"""Add a render view
|
|
543
543
|
|
|
544
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
544
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
545
545
|
:type execution_context: int | str | None
|
|
546
546
|
:type undo: bool | None
|
|
547
547
|
"""
|
|
@@ -549,13 +549,13 @@ def render_view_add(
|
|
|
549
549
|
...
|
|
550
550
|
|
|
551
551
|
def render_view_remove(
|
|
552
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
552
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
553
553
|
execution_context: int | str | None = None,
|
|
554
554
|
undo: bool | None = None,
|
|
555
555
|
):
|
|
556
556
|
"""Remove the selected render view
|
|
557
557
|
|
|
558
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
558
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
559
559
|
:type execution_context: int | str | None
|
|
560
560
|
:type undo: bool | None
|
|
561
561
|
"""
|
|
@@ -563,7 +563,7 @@ def render_view_remove(
|
|
|
563
563
|
...
|
|
564
564
|
|
|
565
565
|
def view_layer_add(
|
|
566
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
566
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
567
567
|
execution_context: int | str | None = None,
|
|
568
568
|
undo: bool | None = None,
|
|
569
569
|
*,
|
|
@@ -571,7 +571,7 @@ def view_layer_add(
|
|
|
571
571
|
):
|
|
572
572
|
"""Add a view layer
|
|
573
573
|
|
|
574
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
574
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
575
575
|
:type execution_context: int | str | None
|
|
576
576
|
:type undo: bool | None
|
|
577
577
|
:param type: Type
|
|
@@ -590,13 +590,13 @@ def view_layer_add(
|
|
|
590
590
|
...
|
|
591
591
|
|
|
592
592
|
def view_layer_add_aov(
|
|
593
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
593
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
594
594
|
execution_context: int | str | None = None,
|
|
595
595
|
undo: bool | None = None,
|
|
596
596
|
):
|
|
597
597
|
"""Add a Shader AOV
|
|
598
598
|
|
|
599
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
599
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
600
600
|
:type execution_context: int | str | None
|
|
601
601
|
:type undo: bool | None
|
|
602
602
|
"""
|
|
@@ -604,7 +604,7 @@ def view_layer_add_aov(
|
|
|
604
604
|
...
|
|
605
605
|
|
|
606
606
|
def view_layer_add_lightgroup(
|
|
607
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
607
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
608
608
|
execution_context: int | str | None = None,
|
|
609
609
|
undo: bool | None = None,
|
|
610
610
|
*,
|
|
@@ -612,7 +612,7 @@ def view_layer_add_lightgroup(
|
|
|
612
612
|
):
|
|
613
613
|
"""Add a Light Group
|
|
614
614
|
|
|
615
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
615
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
616
616
|
:type execution_context: int | str | None
|
|
617
617
|
:type undo: bool | None
|
|
618
618
|
:param name: Name, Name of newly created lightgroup
|
|
@@ -622,13 +622,13 @@ def view_layer_add_lightgroup(
|
|
|
622
622
|
...
|
|
623
623
|
|
|
624
624
|
def view_layer_add_used_lightgroups(
|
|
625
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
625
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
626
626
|
execution_context: int | str | None = None,
|
|
627
627
|
undo: bool | None = None,
|
|
628
628
|
):
|
|
629
629
|
"""Add all used Light Groups
|
|
630
630
|
|
|
631
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
631
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
632
632
|
:type execution_context: int | str | None
|
|
633
633
|
:type undo: bool | None
|
|
634
634
|
"""
|
|
@@ -636,13 +636,13 @@ def view_layer_add_used_lightgroups(
|
|
|
636
636
|
...
|
|
637
637
|
|
|
638
638
|
def view_layer_remove(
|
|
639
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
639
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
640
640
|
execution_context: int | str | None = None,
|
|
641
641
|
undo: bool | None = None,
|
|
642
642
|
):
|
|
643
643
|
"""Remove the selected view layer
|
|
644
644
|
|
|
645
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
645
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
646
646
|
:type execution_context: int | str | None
|
|
647
647
|
:type undo: bool | None
|
|
648
648
|
"""
|
|
@@ -650,13 +650,13 @@ def view_layer_remove(
|
|
|
650
650
|
...
|
|
651
651
|
|
|
652
652
|
def view_layer_remove_aov(
|
|
653
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
653
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
654
654
|
execution_context: int | str | None = None,
|
|
655
655
|
undo: bool | None = None,
|
|
656
656
|
):
|
|
657
657
|
"""Remove Active AOV
|
|
658
658
|
|
|
659
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
659
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
660
660
|
:type execution_context: int | str | None
|
|
661
661
|
:type undo: bool | None
|
|
662
662
|
"""
|
|
@@ -664,13 +664,13 @@ def view_layer_remove_aov(
|
|
|
664
664
|
...
|
|
665
665
|
|
|
666
666
|
def view_layer_remove_lightgroup(
|
|
667
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
667
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
668
668
|
execution_context: int | str | None = None,
|
|
669
669
|
undo: bool | None = None,
|
|
670
670
|
):
|
|
671
671
|
"""Remove Active Lightgroup
|
|
672
672
|
|
|
673
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
673
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
674
674
|
:type execution_context: int | str | None
|
|
675
675
|
:type undo: bool | None
|
|
676
676
|
"""
|
|
@@ -678,13 +678,13 @@ def view_layer_remove_lightgroup(
|
|
|
678
678
|
...
|
|
679
679
|
|
|
680
680
|
def view_layer_remove_unused_lightgroups(
|
|
681
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
681
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
682
682
|
execution_context: int | str | None = None,
|
|
683
683
|
undo: bool | None = None,
|
|
684
684
|
):
|
|
685
685
|
"""Remove all unused Light Groups
|
|
686
686
|
|
|
687
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
687
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
688
688
|
:type execution_context: int | str | None
|
|
689
689
|
:type undo: bool | None
|
|
690
690
|
"""
|