fake-bpy-module 20240812__py3-none-any.whl → 20240814__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 +52 -36
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/RECORD +83 -83
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/top_level.txt +0 -0
bpy/ops/asset/__init__.pyi
CHANGED
|
@@ -7,13 +7,13 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def assign_action(
|
|
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
|
"""Set this pose Action as active Action on the active Object
|
|
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,7 +21,7 @@ def assign_action(
|
|
|
21
21
|
...
|
|
22
22
|
|
|
23
23
|
def bundle_install(
|
|
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
|
*,
|
|
@@ -55,7 +55,7 @@ def bundle_install(
|
|
|
55
55
|
):
|
|
56
56
|
"""Copy the current .blend file into an Asset Library. Only works on standalone .blend files (i.e. when no other files are referenced)
|
|
57
57
|
|
|
58
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
58
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
59
59
|
:type execution_context: int | str | None
|
|
60
60
|
:type undo: bool | None
|
|
61
61
|
:param asset_library_reference: asset_library_reference
|
|
@@ -123,7 +123,7 @@ def bundle_install(
|
|
|
123
123
|
...
|
|
124
124
|
|
|
125
125
|
def catalog_delete(
|
|
126
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
126
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
127
127
|
execution_context: int | str | None = None,
|
|
128
128
|
undo: bool | None = None,
|
|
129
129
|
*,
|
|
@@ -131,7 +131,7 @@ def catalog_delete(
|
|
|
131
131
|
):
|
|
132
132
|
"""Remove an asset catalog from the asset library (contained assets will not be affected and show up as unassigned)
|
|
133
133
|
|
|
134
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
134
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
135
135
|
:type execution_context: int | str | None
|
|
136
136
|
:type undo: bool | None
|
|
137
137
|
:param catalog_id: Catalog ID, ID of the catalog to delete
|
|
@@ -141,7 +141,7 @@ def catalog_delete(
|
|
|
141
141
|
...
|
|
142
142
|
|
|
143
143
|
def catalog_new(
|
|
144
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
144
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
145
145
|
execution_context: int | str | None = None,
|
|
146
146
|
undo: bool | None = None,
|
|
147
147
|
*,
|
|
@@ -149,7 +149,7 @@ def catalog_new(
|
|
|
149
149
|
):
|
|
150
150
|
"""Create a new catalog to put assets in
|
|
151
151
|
|
|
152
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
152
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
153
153
|
:type execution_context: int | str | None
|
|
154
154
|
:type undo: bool | None
|
|
155
155
|
:param parent_path: Parent Path, Optional path defining the location to put the new catalog under
|
|
@@ -159,13 +159,13 @@ def catalog_new(
|
|
|
159
159
|
...
|
|
160
160
|
|
|
161
161
|
def catalog_redo(
|
|
162
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
162
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
163
163
|
execution_context: int | str | None = None,
|
|
164
164
|
undo: bool | None = None,
|
|
165
165
|
):
|
|
166
166
|
"""Redo the last undone edit to the asset catalogs
|
|
167
167
|
|
|
168
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
168
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
169
169
|
:type execution_context: int | str | None
|
|
170
170
|
:type undo: bool | None
|
|
171
171
|
"""
|
|
@@ -173,13 +173,13 @@ def catalog_redo(
|
|
|
173
173
|
...
|
|
174
174
|
|
|
175
175
|
def catalog_undo(
|
|
176
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
176
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
177
177
|
execution_context: int | str | None = None,
|
|
178
178
|
undo: bool | None = None,
|
|
179
179
|
):
|
|
180
180
|
"""Undo the last edit to the asset catalogs
|
|
181
181
|
|
|
182
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
182
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
183
183
|
:type execution_context: int | str | None
|
|
184
184
|
:type undo: bool | None
|
|
185
185
|
"""
|
|
@@ -187,13 +187,13 @@ def catalog_undo(
|
|
|
187
187
|
...
|
|
188
188
|
|
|
189
189
|
def catalog_undo_push(
|
|
190
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
190
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
191
191
|
execution_context: int | str | None = None,
|
|
192
192
|
undo: bool | None = None,
|
|
193
193
|
):
|
|
194
194
|
"""Store the current state of the asset catalogs in the undo buffer
|
|
195
195
|
|
|
196
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
196
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
197
197
|
:type execution_context: int | str | None
|
|
198
198
|
:type undo: bool | None
|
|
199
199
|
"""
|
|
@@ -201,13 +201,13 @@ def catalog_undo_push(
|
|
|
201
201
|
...
|
|
202
202
|
|
|
203
203
|
def catalogs_save(
|
|
204
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
204
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
205
205
|
execution_context: int | str | None = None,
|
|
206
206
|
undo: bool | None = None,
|
|
207
207
|
):
|
|
208
208
|
"""Make any edits to any catalogs permanent by writing the current set up to the asset library
|
|
209
209
|
|
|
210
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
210
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
211
211
|
:type execution_context: int | str | None
|
|
212
212
|
:type undo: bool | None
|
|
213
213
|
"""
|
|
@@ -215,7 +215,7 @@ def catalogs_save(
|
|
|
215
215
|
...
|
|
216
216
|
|
|
217
217
|
def clear(
|
|
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
|
*,
|
|
@@ -223,7 +223,7 @@ def clear(
|
|
|
223
223
|
):
|
|
224
224
|
"""Delete all asset metadata and turn the selected asset data-blocks back into normal data-blocks
|
|
225
225
|
|
|
226
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
226
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
227
227
|
:type execution_context: int | str | None
|
|
228
228
|
:type undo: bool | None
|
|
229
229
|
:param set_fake_user: Set Fake User, Ensure the data-block is saved, even when it is no longer marked as asset
|
|
@@ -233,7 +233,7 @@ def clear(
|
|
|
233
233
|
...
|
|
234
234
|
|
|
235
235
|
def clear_single(
|
|
236
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
236
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
237
237
|
execution_context: int | str | None = None,
|
|
238
238
|
undo: bool | None = None,
|
|
239
239
|
*,
|
|
@@ -241,7 +241,7 @@ def clear_single(
|
|
|
241
241
|
):
|
|
242
242
|
"""Delete all asset metadata and turn the asset data-block back into a normal data-block
|
|
243
243
|
|
|
244
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
244
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
245
245
|
:type execution_context: int | str | None
|
|
246
246
|
:type undo: bool | None
|
|
247
247
|
:param set_fake_user: Set Fake User, Ensure the data-block is saved, even when it is no longer marked as asset
|
|
@@ -251,13 +251,13 @@ def clear_single(
|
|
|
251
251
|
...
|
|
252
252
|
|
|
253
253
|
def library_refresh(
|
|
254
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
254
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
255
255
|
execution_context: int | str | None = None,
|
|
256
256
|
undo: bool | None = None,
|
|
257
257
|
):
|
|
258
258
|
"""Reread assets and asset catalogs from the asset library on disk
|
|
259
259
|
|
|
260
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
260
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
261
261
|
:type execution_context: int | str | None
|
|
262
262
|
:type undo: bool | None
|
|
263
263
|
"""
|
|
@@ -265,13 +265,13 @@ def library_refresh(
|
|
|
265
265
|
...
|
|
266
266
|
|
|
267
267
|
def mark(
|
|
268
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
268
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
269
269
|
execution_context: int | str | None = None,
|
|
270
270
|
undo: bool | None = None,
|
|
271
271
|
):
|
|
272
272
|
"""Enable easier reuse of selected data-blocks through the Asset Browser, with the help of customizable metadata (like previews, descriptions and tags)
|
|
273
273
|
|
|
274
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
274
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
275
275
|
:type execution_context: int | str | None
|
|
276
276
|
:type undo: bool | None
|
|
277
277
|
"""
|
|
@@ -279,13 +279,13 @@ def mark(
|
|
|
279
279
|
...
|
|
280
280
|
|
|
281
281
|
def mark_single(
|
|
282
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
282
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
283
283
|
execution_context: int | str | None = None,
|
|
284
284
|
undo: bool | None = None,
|
|
285
285
|
):
|
|
286
286
|
"""Enable easier reuse of a data-block through the Asset Browser, with the help of customizable metadata (like previews, descriptions and tags)
|
|
287
287
|
|
|
288
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
288
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
289
289
|
:type execution_context: int | str | None
|
|
290
290
|
:type undo: bool | None
|
|
291
291
|
"""
|
|
@@ -293,13 +293,13 @@ def mark_single(
|
|
|
293
293
|
...
|
|
294
294
|
|
|
295
295
|
def open_containing_blend_file(
|
|
296
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
296
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
297
297
|
execution_context: int | str | None = None,
|
|
298
298
|
undo: bool | None = None,
|
|
299
299
|
):
|
|
300
300
|
"""Open the blend file that contains the active asset
|
|
301
301
|
|
|
302
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
302
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
303
303
|
:type execution_context: int | str | None
|
|
304
304
|
:type undo: bool | None
|
|
305
305
|
"""
|
|
@@ -307,13 +307,13 @@ def open_containing_blend_file(
|
|
|
307
307
|
...
|
|
308
308
|
|
|
309
309
|
def tag_add(
|
|
310
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
310
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
311
311
|
execution_context: int | str | None = None,
|
|
312
312
|
undo: bool | None = None,
|
|
313
313
|
):
|
|
314
314
|
"""Add a new keyword tag to the active asset
|
|
315
315
|
|
|
316
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
316
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
317
317
|
:type execution_context: int | str | None
|
|
318
318
|
:type undo: bool | None
|
|
319
319
|
"""
|
|
@@ -321,13 +321,13 @@ def tag_add(
|
|
|
321
321
|
...
|
|
322
322
|
|
|
323
323
|
def tag_remove(
|
|
324
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
324
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
325
325
|
execution_context: int | str | None = None,
|
|
326
326
|
undo: bool | None = None,
|
|
327
327
|
):
|
|
328
328
|
"""Remove an existing keyword tag from the active asset
|
|
329
329
|
|
|
330
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
330
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
331
331
|
:type execution_context: int | str | None
|
|
332
332
|
:type undo: bool | None
|
|
333
333
|
"""
|
bpy/ops/boid/__init__.pyi
CHANGED
|
@@ -7,7 +7,7 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def rule_add(
|
|
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
|
*,
|
|
@@ -25,7 +25,7 @@ def rule_add(
|
|
|
25
25
|
):
|
|
26
26
|
"""Add a boid rule to the current boid state
|
|
27
27
|
|
|
28
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
28
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
29
29
|
:type execution_context: int | str | None
|
|
30
30
|
:type undo: bool | None
|
|
31
31
|
:param type: Type
|
|
@@ -35,13 +35,13 @@ def rule_add(
|
|
|
35
35
|
...
|
|
36
36
|
|
|
37
37
|
def rule_del(
|
|
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
|
"""Delete current boid rule
|
|
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,13 +49,13 @@ def rule_del(
|
|
|
49
49
|
...
|
|
50
50
|
|
|
51
51
|
def rule_move_down(
|
|
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
|
):
|
|
56
56
|
"""Move boid rule down in the list
|
|
57
57
|
|
|
58
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
58
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
59
59
|
:type execution_context: int | str | None
|
|
60
60
|
:type undo: bool | None
|
|
61
61
|
"""
|
|
@@ -63,13 +63,13 @@ def rule_move_down(
|
|
|
63
63
|
...
|
|
64
64
|
|
|
65
65
|
def rule_move_up(
|
|
66
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
66
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
67
67
|
execution_context: int | str | None = None,
|
|
68
68
|
undo: bool | None = None,
|
|
69
69
|
):
|
|
70
70
|
"""Move boid rule up in the list
|
|
71
71
|
|
|
72
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
72
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
73
73
|
:type execution_context: int | str | None
|
|
74
74
|
:type undo: bool | None
|
|
75
75
|
"""
|
|
@@ -77,13 +77,13 @@ def rule_move_up(
|
|
|
77
77
|
...
|
|
78
78
|
|
|
79
79
|
def state_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
|
):
|
|
84
84
|
"""Add a boid state to the particle system
|
|
85
85
|
|
|
86
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
86
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
87
87
|
:type execution_context: int | str | None
|
|
88
88
|
:type undo: bool | None
|
|
89
89
|
"""
|
|
@@ -91,13 +91,13 @@ def state_add(
|
|
|
91
91
|
...
|
|
92
92
|
|
|
93
93
|
def state_del(
|
|
94
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
94
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
95
95
|
execution_context: int | str | None = None,
|
|
96
96
|
undo: bool | None = None,
|
|
97
97
|
):
|
|
98
98
|
"""Delete current boid state
|
|
99
99
|
|
|
100
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
100
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
101
101
|
:type execution_context: int | str | None
|
|
102
102
|
:type undo: bool | None
|
|
103
103
|
"""
|
|
@@ -105,13 +105,13 @@ def state_del(
|
|
|
105
105
|
...
|
|
106
106
|
|
|
107
107
|
def state_move_down(
|
|
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
|
):
|
|
112
112
|
"""Move boid state down in the list
|
|
113
113
|
|
|
114
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
114
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
115
115
|
:type execution_context: int | str | None
|
|
116
116
|
:type undo: bool | None
|
|
117
117
|
"""
|
|
@@ -119,13 +119,13 @@ def state_move_down(
|
|
|
119
119
|
...
|
|
120
120
|
|
|
121
121
|
def state_move_up(
|
|
122
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
122
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
123
123
|
execution_context: int | str | None = None,
|
|
124
124
|
undo: bool | None = None,
|
|
125
125
|
):
|
|
126
126
|
"""Move boid state up in the list
|
|
127
127
|
|
|
128
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
128
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
129
129
|
:type execution_context: int | str | None
|
|
130
130
|
:type undo: bool | None
|
|
131
131
|
"""
|
bpy/ops/brush/__init__.pyi
CHANGED
|
@@ -7,7 +7,7 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def asset_activate(
|
|
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
|
*,
|
|
@@ -18,7 +18,7 @@ def asset_activate(
|
|
|
18
18
|
):
|
|
19
19
|
"""Activate a brush asset as current sculpt and paint tool
|
|
20
20
|
|
|
21
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
21
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
22
22
|
:type execution_context: int | str | None
|
|
23
23
|
:type undo: bool | None
|
|
24
24
|
:param asset_library_type: Asset Library Type
|
|
@@ -32,13 +32,13 @@ def asset_activate(
|
|
|
32
32
|
...
|
|
33
33
|
|
|
34
34
|
def asset_delete(
|
|
35
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
35
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
36
36
|
execution_context: int | str | None = None,
|
|
37
37
|
undo: bool | None = None,
|
|
38
38
|
):
|
|
39
39
|
"""Delete the active brush asset
|
|
40
40
|
|
|
41
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
41
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
42
42
|
:type execution_context: int | str | None
|
|
43
43
|
:type undo: bool | None
|
|
44
44
|
"""
|
|
@@ -46,7 +46,7 @@ def asset_delete(
|
|
|
46
46
|
...
|
|
47
47
|
|
|
48
48
|
def asset_edit_metadata(
|
|
49
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
49
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
50
50
|
execution_context: int | str | None = None,
|
|
51
51
|
undo: bool | None = None,
|
|
52
52
|
*,
|
|
@@ -56,7 +56,7 @@ def asset_edit_metadata(
|
|
|
56
56
|
):
|
|
57
57
|
"""Edit asset information like the catalog, preview image, tags, or author
|
|
58
58
|
|
|
59
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
59
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
60
60
|
:type execution_context: int | str | None
|
|
61
61
|
:type undo: bool | None
|
|
62
62
|
:param catalog_path: Catalog, The asset's catalog path
|
|
@@ -70,7 +70,7 @@ def asset_edit_metadata(
|
|
|
70
70
|
...
|
|
71
71
|
|
|
72
72
|
def asset_load_preview(
|
|
73
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
73
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
74
74
|
execution_context: int | str | None = None,
|
|
75
75
|
undo: bool | None = None,
|
|
76
76
|
*,
|
|
@@ -105,7 +105,7 @@ def asset_load_preview(
|
|
|
105
105
|
):
|
|
106
106
|
"""Choose a preview image for the brush
|
|
107
107
|
|
|
108
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
108
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
109
109
|
:type execution_context: int | str | None
|
|
110
110
|
:type undo: bool | None
|
|
111
111
|
:param filepath: File Path, Path to file
|
|
@@ -175,13 +175,13 @@ def asset_load_preview(
|
|
|
175
175
|
...
|
|
176
176
|
|
|
177
177
|
def asset_revert(
|
|
178
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
178
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
179
179
|
execution_context: int | str | None = None,
|
|
180
180
|
undo: bool | None = None,
|
|
181
181
|
):
|
|
182
182
|
"""Revert the active brush settings to the default values from the asset library
|
|
183
183
|
|
|
184
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
184
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
185
185
|
:type execution_context: int | str | None
|
|
186
186
|
:type undo: bool | None
|
|
187
187
|
"""
|
|
@@ -189,7 +189,7 @@ def asset_revert(
|
|
|
189
189
|
...
|
|
190
190
|
|
|
191
191
|
def asset_save_as(
|
|
192
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
192
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
193
193
|
execution_context: int | str | None = None,
|
|
194
194
|
undo: bool | None = None,
|
|
195
195
|
*,
|
|
@@ -199,7 +199,7 @@ def asset_save_as(
|
|
|
199
199
|
):
|
|
200
200
|
"""Save a copy of the active brush asset into the default asset library, and make it the active brush
|
|
201
201
|
|
|
202
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
202
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
203
203
|
:type execution_context: int | str | None
|
|
204
204
|
:type undo: bool | None
|
|
205
205
|
:param name: Name, Name for the new brush asset
|
|
@@ -213,13 +213,13 @@ def asset_save_as(
|
|
|
213
213
|
...
|
|
214
214
|
|
|
215
215
|
def asset_update(
|
|
216
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
216
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
217
217
|
execution_context: int | str | None = None,
|
|
218
218
|
undo: bool | None = None,
|
|
219
219
|
):
|
|
220
220
|
"""Update the active brush asset in the asset library with current settings
|
|
221
221
|
|
|
222
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
222
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
223
223
|
:type execution_context: int | str | None
|
|
224
224
|
:type undo: bool | None
|
|
225
225
|
"""
|
|
@@ -227,7 +227,7 @@ def asset_update(
|
|
|
227
227
|
...
|
|
228
228
|
|
|
229
229
|
def curve_preset(
|
|
230
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
230
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
231
231
|
execution_context: int | str | None = None,
|
|
232
232
|
undo: bool | None = None,
|
|
233
233
|
*,
|
|
@@ -236,7 +236,7 @@ def curve_preset(
|
|
|
236
236
|
):
|
|
237
237
|
"""Set brush shape
|
|
238
238
|
|
|
239
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
239
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
240
240
|
:type execution_context: int | str | None
|
|
241
241
|
:type undo: bool | None
|
|
242
242
|
:param shape: Mode
|
|
@@ -246,7 +246,7 @@ def curve_preset(
|
|
|
246
246
|
...
|
|
247
247
|
|
|
248
248
|
def scale_size(
|
|
249
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
249
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
250
250
|
execution_context: int | str | None = None,
|
|
251
251
|
undo: bool | None = None,
|
|
252
252
|
*,
|
|
@@ -254,7 +254,7 @@ def scale_size(
|
|
|
254
254
|
):
|
|
255
255
|
"""Change brush size by a scalar
|
|
256
256
|
|
|
257
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
257
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
258
258
|
:type execution_context: int | str | None
|
|
259
259
|
:type undo: bool | None
|
|
260
260
|
:param scalar: Scalar, Factor to scale brush size by
|
|
@@ -264,7 +264,7 @@ def scale_size(
|
|
|
264
264
|
...
|
|
265
265
|
|
|
266
266
|
def sculpt_curves_falloff_preset(
|
|
267
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
267
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
268
268
|
execution_context: int | str | None = None,
|
|
269
269
|
undo: bool | None = None,
|
|
270
270
|
*,
|
|
@@ -273,7 +273,7 @@ def sculpt_curves_falloff_preset(
|
|
|
273
273
|
):
|
|
274
274
|
"""Set Curve Falloff Preset
|
|
275
275
|
|
|
276
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
276
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
277
277
|
:type execution_context: int | str | None
|
|
278
278
|
:type undo: bool | None
|
|
279
279
|
:param shape: Mode
|
|
@@ -283,7 +283,7 @@ def sculpt_curves_falloff_preset(
|
|
|
283
283
|
...
|
|
284
284
|
|
|
285
285
|
def stencil_control(
|
|
286
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
286
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
287
287
|
execution_context: int | str | None = None,
|
|
288
288
|
undo: bool | None = None,
|
|
289
289
|
*,
|
|
@@ -292,7 +292,7 @@ def stencil_control(
|
|
|
292
292
|
):
|
|
293
293
|
"""Control the stencil brush
|
|
294
294
|
|
|
295
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
295
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
296
296
|
:type execution_context: int | str | None
|
|
297
297
|
:type undo: bool | None
|
|
298
298
|
:param mode: Tool
|
|
@@ -304,7 +304,7 @@ def stencil_control(
|
|
|
304
304
|
...
|
|
305
305
|
|
|
306
306
|
def stencil_fit_image_aspect(
|
|
307
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
307
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
308
308
|
execution_context: int | str | None = None,
|
|
309
309
|
undo: bool | None = None,
|
|
310
310
|
*,
|
|
@@ -314,7 +314,7 @@ def stencil_fit_image_aspect(
|
|
|
314
314
|
):
|
|
315
315
|
"""When using an image texture, adjust the stencil size to fit the image aspect ratio
|
|
316
316
|
|
|
317
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
317
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
318
318
|
:type execution_context: int | str | None
|
|
319
319
|
:type undo: bool | None
|
|
320
320
|
:param use_repeat: Use Repeat, Use repeat mapping values
|
|
@@ -328,7 +328,7 @@ def stencil_fit_image_aspect(
|
|
|
328
328
|
...
|
|
329
329
|
|
|
330
330
|
def stencil_reset_transform(
|
|
331
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
331
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
332
332
|
execution_context: int | str | None = None,
|
|
333
333
|
undo: bool | None = None,
|
|
334
334
|
*,
|
|
@@ -336,7 +336,7 @@ def stencil_reset_transform(
|
|
|
336
336
|
):
|
|
337
337
|
"""Reset the stencil transformation to the default
|
|
338
338
|
|
|
339
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
339
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
340
340
|
:type execution_context: int | str | None
|
|
341
341
|
:type undo: bool | None
|
|
342
342
|
:param mask: Modify Mask Stencil, Modify either the primary or mask stencil
|