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