fake-bpy-module 20240928__py3-none-any.whl → 20240930__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/generic_ui_list/__init__.pyi +2 -2
- bmesh/types/__init__.pyi +2 -2
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +124 -124
- 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 +202 -202
- 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 +230 -230
- bpy/ops/object/__init__.pyi +476 -476
- 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 +74 -74
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +178 -178
- 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 +68 -68
- 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 +232 -232
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +333 -298
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/RECORD +85 -85
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/top_level.txt +0 -0
bpy/ops/scene/__init__.pyi
CHANGED
|
@@ -5,43 +5,43 @@ import bpy.types
|
|
|
5
5
|
import bpy.typing
|
|
6
6
|
|
|
7
7
|
def delete(
|
|
8
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
8
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
9
9
|
execution_context: int | str | None = None,
|
|
10
10
|
undo: bool | None = None,
|
|
11
11
|
):
|
|
12
12
|
"""Delete active scene
|
|
13
13
|
|
|
14
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
14
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
15
15
|
:type execution_context: int | str | None
|
|
16
16
|
:type undo: bool | None
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
19
|
def freestyle_add_edge_marks_to_keying_set(
|
|
20
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
20
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
21
21
|
execution_context: int | str | None = None,
|
|
22
22
|
undo: bool | None = None,
|
|
23
23
|
):
|
|
24
24
|
"""Add the data paths to the Freestyle Edge Mark property of selected edges to the active keying set
|
|
25
25
|
|
|
26
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
26
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
27
27
|
:type execution_context: int | str | None
|
|
28
28
|
:type undo: bool | None
|
|
29
29
|
"""
|
|
30
30
|
|
|
31
31
|
def freestyle_add_face_marks_to_keying_set(
|
|
32
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
32
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
33
33
|
execution_context: int | str | None = None,
|
|
34
34
|
undo: bool | None = None,
|
|
35
35
|
):
|
|
36
36
|
"""Add the data paths to the Freestyle Face Mark property of selected polygons to the active keying set
|
|
37
37
|
|
|
38
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
38
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
39
39
|
:type execution_context: int | str | None
|
|
40
40
|
:type undo: bool | None
|
|
41
41
|
"""
|
|
42
42
|
|
|
43
43
|
def freestyle_alpha_modifier_add(
|
|
44
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
44
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
45
45
|
execution_context: int | str | None = None,
|
|
46
46
|
undo: bool | None = None,
|
|
47
47
|
*,
|
|
@@ -49,7 +49,7 @@ def freestyle_alpha_modifier_add(
|
|
|
49
49
|
):
|
|
50
50
|
"""Add an alpha transparency modifier to the line style associated with the active lineset
|
|
51
51
|
|
|
52
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
52
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
53
53
|
:type execution_context: int | str | None
|
|
54
54
|
:type undo: bool | None
|
|
55
55
|
:param type: Type
|
|
@@ -57,7 +57,7 @@ def freestyle_alpha_modifier_add(
|
|
|
57
57
|
"""
|
|
58
58
|
|
|
59
59
|
def freestyle_color_modifier_add(
|
|
60
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
60
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
61
61
|
execution_context: int | str | None = None,
|
|
62
62
|
undo: bool | None = None,
|
|
63
63
|
*,
|
|
@@ -65,7 +65,7 @@ def freestyle_color_modifier_add(
|
|
|
65
65
|
):
|
|
66
66
|
"""Add a line color modifier to the line style associated with the active lineset
|
|
67
67
|
|
|
68
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
68
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
69
69
|
:type execution_context: int | str | None
|
|
70
70
|
:type undo: bool | None
|
|
71
71
|
:param type: Type
|
|
@@ -73,7 +73,7 @@ def freestyle_color_modifier_add(
|
|
|
73
73
|
"""
|
|
74
74
|
|
|
75
75
|
def freestyle_fill_range_by_selection(
|
|
76
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
76
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
77
77
|
execution_context: int | str | None = None,
|
|
78
78
|
undo: bool | None = None,
|
|
79
79
|
*,
|
|
@@ -82,7 +82,7 @@ def freestyle_fill_range_by_selection(
|
|
|
82
82
|
):
|
|
83
83
|
"""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)
|
|
84
84
|
|
|
85
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
85
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
86
86
|
:type execution_context: int | str | None
|
|
87
87
|
:type undo: bool | None
|
|
88
88
|
:param type: Type, Type of the modifier to work on
|
|
@@ -101,7 +101,7 @@ def freestyle_fill_range_by_selection(
|
|
|
101
101
|
"""
|
|
102
102
|
|
|
103
103
|
def freestyle_geometry_modifier_add(
|
|
104
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
104
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
105
105
|
execution_context: int | str | None = None,
|
|
106
106
|
undo: bool | None = None,
|
|
107
107
|
*,
|
|
@@ -109,7 +109,7 @@ def freestyle_geometry_modifier_add(
|
|
|
109
109
|
):
|
|
110
110
|
"""Add a stroke geometry modifier to the line style associated with the active lineset
|
|
111
111
|
|
|
112
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
112
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
113
113
|
:type execution_context: int | str | None
|
|
114
114
|
:type undo: bool | None
|
|
115
115
|
:param type: Type
|
|
@@ -117,31 +117,31 @@ def freestyle_geometry_modifier_add(
|
|
|
117
117
|
"""
|
|
118
118
|
|
|
119
119
|
def freestyle_lineset_add(
|
|
120
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
120
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
121
121
|
execution_context: int | str | None = None,
|
|
122
122
|
undo: bool | None = None,
|
|
123
123
|
):
|
|
124
124
|
"""Add a line set into the list of line sets
|
|
125
125
|
|
|
126
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
126
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
127
127
|
:type execution_context: int | str | None
|
|
128
128
|
:type undo: bool | None
|
|
129
129
|
"""
|
|
130
130
|
|
|
131
131
|
def freestyle_lineset_copy(
|
|
132
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
132
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
133
133
|
execution_context: int | str | None = None,
|
|
134
134
|
undo: bool | None = None,
|
|
135
135
|
):
|
|
136
136
|
"""Copy the active line set to the internal clipboard
|
|
137
137
|
|
|
138
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
138
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
139
139
|
:type execution_context: int | str | None
|
|
140
140
|
:type undo: bool | None
|
|
141
141
|
"""
|
|
142
142
|
|
|
143
143
|
def freestyle_lineset_move(
|
|
144
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
144
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
145
145
|
execution_context: int | str | None = None,
|
|
146
146
|
undo: bool | None = None,
|
|
147
147
|
*,
|
|
@@ -149,7 +149,7 @@ def freestyle_lineset_move(
|
|
|
149
149
|
):
|
|
150
150
|
"""Change the position of the active line set within the list of line sets
|
|
151
151
|
|
|
152
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
152
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
153
153
|
:type execution_context: int | str | None
|
|
154
154
|
:type undo: bool | None
|
|
155
155
|
:param direction: Direction, Direction to move the active line set towards
|
|
@@ -157,55 +157,55 @@ def freestyle_lineset_move(
|
|
|
157
157
|
"""
|
|
158
158
|
|
|
159
159
|
def freestyle_lineset_paste(
|
|
160
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
160
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
161
161
|
execution_context: int | str | None = None,
|
|
162
162
|
undo: bool | None = None,
|
|
163
163
|
):
|
|
164
164
|
"""Paste the internal clipboard content to the active line set
|
|
165
165
|
|
|
166
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
166
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
167
167
|
:type execution_context: int | str | None
|
|
168
168
|
:type undo: bool | None
|
|
169
169
|
"""
|
|
170
170
|
|
|
171
171
|
def freestyle_lineset_remove(
|
|
172
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
172
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
173
173
|
execution_context: int | str | None = None,
|
|
174
174
|
undo: bool | None = None,
|
|
175
175
|
):
|
|
176
176
|
"""Remove the active line set from 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] | None
|
|
179
179
|
:type execution_context: int | str | None
|
|
180
180
|
:type undo: bool | None
|
|
181
181
|
"""
|
|
182
182
|
|
|
183
183
|
def freestyle_linestyle_new(
|
|
184
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
184
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
185
185
|
execution_context: int | str | None = None,
|
|
186
186
|
undo: bool | None = None,
|
|
187
187
|
):
|
|
188
188
|
"""Create a new line style, reusable by multiple line sets
|
|
189
189
|
|
|
190
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
190
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
191
191
|
:type execution_context: int | str | None
|
|
192
192
|
:type undo: bool | None
|
|
193
193
|
"""
|
|
194
194
|
|
|
195
195
|
def freestyle_modifier_copy(
|
|
196
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
196
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
197
197
|
execution_context: int | str | None = None,
|
|
198
198
|
undo: bool | None = None,
|
|
199
199
|
):
|
|
200
200
|
"""Duplicate the modifier within the list of modifiers
|
|
201
201
|
|
|
202
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
202
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
203
203
|
:type execution_context: int | str | None
|
|
204
204
|
:type undo: bool | None
|
|
205
205
|
"""
|
|
206
206
|
|
|
207
207
|
def freestyle_modifier_move(
|
|
208
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
208
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
209
209
|
execution_context: int | str | None = None,
|
|
210
210
|
undo: bool | None = None,
|
|
211
211
|
*,
|
|
@@ -213,7 +213,7 @@ def freestyle_modifier_move(
|
|
|
213
213
|
):
|
|
214
214
|
"""Move the modifier within the list of modifiers
|
|
215
215
|
|
|
216
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
216
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
217
217
|
:type execution_context: int | str | None
|
|
218
218
|
:type undo: bool | None
|
|
219
219
|
:param direction: Direction, Direction to move the chosen modifier towards
|
|
@@ -221,31 +221,31 @@ def freestyle_modifier_move(
|
|
|
221
221
|
"""
|
|
222
222
|
|
|
223
223
|
def freestyle_modifier_remove(
|
|
224
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
224
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
225
225
|
execution_context: int | str | None = None,
|
|
226
226
|
undo: bool | None = None,
|
|
227
227
|
):
|
|
228
228
|
"""Remove the modifier from the list of modifiers
|
|
229
229
|
|
|
230
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
230
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
231
231
|
:type execution_context: int | str | None
|
|
232
232
|
:type undo: bool | None
|
|
233
233
|
"""
|
|
234
234
|
|
|
235
235
|
def freestyle_module_add(
|
|
236
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
236
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
237
237
|
execution_context: int | str | None = None,
|
|
238
238
|
undo: bool | None = None,
|
|
239
239
|
):
|
|
240
240
|
"""Add a style module into the list of modules
|
|
241
241
|
|
|
242
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
242
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
243
243
|
:type execution_context: int | str | None
|
|
244
244
|
:type undo: bool | None
|
|
245
245
|
"""
|
|
246
246
|
|
|
247
247
|
def freestyle_module_move(
|
|
248
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
248
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
249
249
|
execution_context: int | str | None = None,
|
|
250
250
|
undo: bool | None = None,
|
|
251
251
|
*,
|
|
@@ -253,7 +253,7 @@ def freestyle_module_move(
|
|
|
253
253
|
):
|
|
254
254
|
"""Change the position of the style module within in the list of style modules
|
|
255
255
|
|
|
256
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
256
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
257
257
|
:type execution_context: int | str | None
|
|
258
258
|
:type undo: bool | None
|
|
259
259
|
:param direction: Direction, Direction to move the chosen style module towards
|
|
@@ -261,7 +261,7 @@ def freestyle_module_move(
|
|
|
261
261
|
"""
|
|
262
262
|
|
|
263
263
|
def freestyle_module_open(
|
|
264
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
264
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
265
265
|
execution_context: int | str | None = None,
|
|
266
266
|
undo: bool | None = None,
|
|
267
267
|
*,
|
|
@@ -270,7 +270,7 @@ def freestyle_module_open(
|
|
|
270
270
|
):
|
|
271
271
|
"""Open a style module file
|
|
272
272
|
|
|
273
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
273
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
274
274
|
:type execution_context: int | str | None
|
|
275
275
|
:type undo: bool | None
|
|
276
276
|
:param filepath: filepath
|
|
@@ -280,31 +280,31 @@ def freestyle_module_open(
|
|
|
280
280
|
"""
|
|
281
281
|
|
|
282
282
|
def freestyle_module_remove(
|
|
283
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
283
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
284
284
|
execution_context: int | str | None = None,
|
|
285
285
|
undo: bool | None = None,
|
|
286
286
|
):
|
|
287
287
|
"""Remove the style module from the stack
|
|
288
288
|
|
|
289
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
289
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
290
290
|
:type execution_context: int | str | None
|
|
291
291
|
:type undo: bool | None
|
|
292
292
|
"""
|
|
293
293
|
|
|
294
294
|
def freestyle_stroke_material_create(
|
|
295
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
295
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
296
296
|
execution_context: int | str | None = None,
|
|
297
297
|
undo: bool | None = None,
|
|
298
298
|
):
|
|
299
299
|
"""Create Freestyle stroke material for testing
|
|
300
300
|
|
|
301
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
301
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
302
302
|
:type execution_context: int | str | None
|
|
303
303
|
:type undo: bool | None
|
|
304
304
|
"""
|
|
305
305
|
|
|
306
306
|
def freestyle_thickness_modifier_add(
|
|
307
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
307
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
308
308
|
execution_context: int | str | None = None,
|
|
309
309
|
undo: bool | None = None,
|
|
310
310
|
*,
|
|
@@ -312,7 +312,7 @@ def freestyle_thickness_modifier_add(
|
|
|
312
312
|
):
|
|
313
313
|
"""Add a line thickness modifier to the line style associated with the active lineset
|
|
314
314
|
|
|
315
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
315
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
316
316
|
:type execution_context: int | str | None
|
|
317
317
|
:type undo: bool | None
|
|
318
318
|
:param type: Type
|
|
@@ -320,19 +320,19 @@ def freestyle_thickness_modifier_add(
|
|
|
320
320
|
"""
|
|
321
321
|
|
|
322
322
|
def gltf2_action_filter_refresh(
|
|
323
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
323
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
324
324
|
execution_context: int | str | None = None,
|
|
325
325
|
undo: bool | None = None,
|
|
326
326
|
):
|
|
327
327
|
"""Refresh list of actions
|
|
328
328
|
|
|
329
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
329
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
330
330
|
:type execution_context: int | str | None
|
|
331
331
|
:type undo: bool | None
|
|
332
332
|
"""
|
|
333
333
|
|
|
334
334
|
def gpencil_brush_preset_add(
|
|
335
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
335
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
336
336
|
execution_context: int | str | None = None,
|
|
337
337
|
undo: bool | None = None,
|
|
338
338
|
*,
|
|
@@ -342,7 +342,7 @@ def gpencil_brush_preset_add(
|
|
|
342
342
|
):
|
|
343
343
|
"""Add or remove grease pencil brush preset
|
|
344
344
|
|
|
345
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
345
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
346
346
|
:type execution_context: int | str | None
|
|
347
347
|
:type undo: bool | None
|
|
348
348
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -354,7 +354,7 @@ def gpencil_brush_preset_add(
|
|
|
354
354
|
"""
|
|
355
355
|
|
|
356
356
|
def gpencil_material_preset_add(
|
|
357
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
357
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
358
358
|
execution_context: int | str | None = None,
|
|
359
359
|
undo: bool | None = None,
|
|
360
360
|
*,
|
|
@@ -364,7 +364,7 @@ def gpencil_material_preset_add(
|
|
|
364
364
|
):
|
|
365
365
|
"""Add or remove grease pencil material preset
|
|
366
366
|
|
|
367
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
367
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
368
368
|
:type execution_context: int | str | None
|
|
369
369
|
:type undo: bool | None
|
|
370
370
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -376,7 +376,7 @@ def gpencil_material_preset_add(
|
|
|
376
376
|
"""
|
|
377
377
|
|
|
378
378
|
def new(
|
|
379
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
379
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
380
380
|
execution_context: int | str | None = None,
|
|
381
381
|
undo: bool | None = None,
|
|
382
382
|
*,
|
|
@@ -384,7 +384,7 @@ def new(
|
|
|
384
384
|
):
|
|
385
385
|
"""Add new scene by type
|
|
386
386
|
|
|
387
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
387
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
388
388
|
:type execution_context: int | str | None
|
|
389
389
|
:type undo: bool | None
|
|
390
390
|
:param type: Type
|
|
@@ -404,7 +404,7 @@ def new(
|
|
|
404
404
|
"""
|
|
405
405
|
|
|
406
406
|
def new_sequencer(
|
|
407
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
407
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
408
408
|
execution_context: int | str | None = None,
|
|
409
409
|
undo: bool | None = None,
|
|
410
410
|
*,
|
|
@@ -412,7 +412,7 @@ def new_sequencer(
|
|
|
412
412
|
):
|
|
413
413
|
"""Add new scene by type in the sequence editor and assign to active strip
|
|
414
414
|
|
|
415
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
415
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
416
416
|
:type execution_context: int | str | None
|
|
417
417
|
:type undo: bool | None
|
|
418
418
|
:param type: Type
|
|
@@ -432,31 +432,31 @@ def new_sequencer(
|
|
|
432
432
|
"""
|
|
433
433
|
|
|
434
434
|
def render_view_add(
|
|
435
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
435
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
436
436
|
execution_context: int | str | None = None,
|
|
437
437
|
undo: bool | None = None,
|
|
438
438
|
):
|
|
439
439
|
"""Add a render view
|
|
440
440
|
|
|
441
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
441
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
442
442
|
:type execution_context: int | str | None
|
|
443
443
|
:type undo: bool | None
|
|
444
444
|
"""
|
|
445
445
|
|
|
446
446
|
def render_view_remove(
|
|
447
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
447
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
448
448
|
execution_context: int | str | None = None,
|
|
449
449
|
undo: bool | None = None,
|
|
450
450
|
):
|
|
451
451
|
"""Remove the selected render view
|
|
452
452
|
|
|
453
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
453
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
454
454
|
:type execution_context: int | str | None
|
|
455
455
|
:type undo: bool | None
|
|
456
456
|
"""
|
|
457
457
|
|
|
458
458
|
def view_layer_add(
|
|
459
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
459
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
460
460
|
execution_context: int | str | None = None,
|
|
461
461
|
undo: bool | None = None,
|
|
462
462
|
*,
|
|
@@ -464,7 +464,7 @@ def view_layer_add(
|
|
|
464
464
|
):
|
|
465
465
|
"""Add a view layer
|
|
466
466
|
|
|
467
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
467
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
468
468
|
:type execution_context: int | str | None
|
|
469
469
|
:type undo: bool | None
|
|
470
470
|
:param type: Type
|
|
@@ -481,19 +481,19 @@ def view_layer_add(
|
|
|
481
481
|
"""
|
|
482
482
|
|
|
483
483
|
def view_layer_add_aov(
|
|
484
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
484
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
485
485
|
execution_context: int | str | None = None,
|
|
486
486
|
undo: bool | None = None,
|
|
487
487
|
):
|
|
488
488
|
"""Add a Shader AOV
|
|
489
489
|
|
|
490
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
490
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
491
491
|
:type execution_context: int | str | None
|
|
492
492
|
:type undo: bool | None
|
|
493
493
|
"""
|
|
494
494
|
|
|
495
495
|
def view_layer_add_lightgroup(
|
|
496
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
496
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
497
497
|
execution_context: int | str | None = None,
|
|
498
498
|
undo: bool | None = None,
|
|
499
499
|
*,
|
|
@@ -501,7 +501,7 @@ def view_layer_add_lightgroup(
|
|
|
501
501
|
):
|
|
502
502
|
"""Add a Light Group
|
|
503
503
|
|
|
504
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
504
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
505
505
|
:type execution_context: int | str | None
|
|
506
506
|
:type undo: bool | None
|
|
507
507
|
:param name: Name, Name of newly created lightgroup
|
|
@@ -509,61 +509,61 @@ def view_layer_add_lightgroup(
|
|
|
509
509
|
"""
|
|
510
510
|
|
|
511
511
|
def view_layer_add_used_lightgroups(
|
|
512
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
512
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
513
513
|
execution_context: int | str | None = None,
|
|
514
514
|
undo: bool | None = None,
|
|
515
515
|
):
|
|
516
516
|
"""Add all used Light Groups
|
|
517
517
|
|
|
518
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
518
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
519
519
|
:type execution_context: int | str | None
|
|
520
520
|
:type undo: bool | None
|
|
521
521
|
"""
|
|
522
522
|
|
|
523
523
|
def view_layer_remove(
|
|
524
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
524
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
525
525
|
execution_context: int | str | None = None,
|
|
526
526
|
undo: bool | None = None,
|
|
527
527
|
):
|
|
528
528
|
"""Remove the selected view layer
|
|
529
529
|
|
|
530
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
530
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
531
531
|
:type execution_context: int | str | None
|
|
532
532
|
:type undo: bool | None
|
|
533
533
|
"""
|
|
534
534
|
|
|
535
535
|
def view_layer_remove_aov(
|
|
536
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
536
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
537
537
|
execution_context: int | str | None = None,
|
|
538
538
|
undo: bool | None = None,
|
|
539
539
|
):
|
|
540
540
|
"""Remove Active AOV
|
|
541
541
|
|
|
542
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
542
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
543
543
|
:type execution_context: int | str | None
|
|
544
544
|
:type undo: bool | None
|
|
545
545
|
"""
|
|
546
546
|
|
|
547
547
|
def view_layer_remove_lightgroup(
|
|
548
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
548
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
549
549
|
execution_context: int | str | None = None,
|
|
550
550
|
undo: bool | None = None,
|
|
551
551
|
):
|
|
552
552
|
"""Remove Active Lightgroup
|
|
553
553
|
|
|
554
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
554
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
555
555
|
:type execution_context: int | str | None
|
|
556
556
|
:type undo: bool | None
|
|
557
557
|
"""
|
|
558
558
|
|
|
559
559
|
def view_layer_remove_unused_lightgroups(
|
|
560
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
560
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
561
561
|
execution_context: int | str | None = None,
|
|
562
562
|
undo: bool | None = None,
|
|
563
563
|
):
|
|
564
564
|
"""Remove all unused Light Groups
|
|
565
565
|
|
|
566
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
566
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
567
567
|
:type execution_context: int | str | None
|
|
568
568
|
:type undo: bool | None
|
|
569
569
|
"""
|