fake-bpy-module 20240927__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
- bl_ui/space_dopesheet/__init__.pyi +25 -0
- bl_ui/space_view3d/__init__.pyi +36 -0
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +144 -120
- 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 +220 -200
- 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 +449 -226
- bpy/typing/__init__.pyi +1 -0
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/RECORD +87 -87
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/top_level.txt +0 -0
bpy/ops/preferences/__init__.pyi
CHANGED
|
@@ -4,7 +4,7 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def addon_disable(
|
|
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
|
*,
|
|
@@ -12,7 +12,7 @@ def addon_disable(
|
|
|
12
12
|
):
|
|
13
13
|
"""Turn off this extension
|
|
14
14
|
|
|
15
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
15
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
16
16
|
:type execution_context: int | str | None
|
|
17
17
|
:type undo: bool | None
|
|
18
18
|
:param module: Module, Module name of the add-on to disable
|
|
@@ -20,7 +20,7 @@ def addon_disable(
|
|
|
20
20
|
"""
|
|
21
21
|
|
|
22
22
|
def addon_enable(
|
|
23
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
23
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
24
24
|
execution_context: int | str | None = None,
|
|
25
25
|
undo: bool | None = None,
|
|
26
26
|
*,
|
|
@@ -28,7 +28,7 @@ def addon_enable(
|
|
|
28
28
|
):
|
|
29
29
|
"""Turn on this extension
|
|
30
30
|
|
|
31
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
31
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
32
32
|
:type execution_context: int | str | None
|
|
33
33
|
:type undo: bool | None
|
|
34
34
|
:param module: Module, Module name of the add-on to enable
|
|
@@ -36,7 +36,7 @@ def addon_enable(
|
|
|
36
36
|
"""
|
|
37
37
|
|
|
38
38
|
def addon_expand(
|
|
39
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
39
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
40
40
|
execution_context: int | str | None = None,
|
|
41
41
|
undo: bool | None = None,
|
|
42
42
|
*,
|
|
@@ -44,7 +44,7 @@ def addon_expand(
|
|
|
44
44
|
):
|
|
45
45
|
"""Display information and preferences for this add-on
|
|
46
46
|
|
|
47
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
47
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
48
48
|
:type execution_context: int | str | None
|
|
49
49
|
:type undo: bool | None
|
|
50
50
|
:param module: Module, Module name of the add-on to expand
|
|
@@ -52,7 +52,7 @@ def addon_expand(
|
|
|
52
52
|
"""
|
|
53
53
|
|
|
54
54
|
def addon_install(
|
|
55
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
55
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
56
56
|
execution_context: int | str | None = None,
|
|
57
57
|
undo: bool | None = None,
|
|
58
58
|
*,
|
|
@@ -66,7 +66,7 @@ def addon_install(
|
|
|
66
66
|
):
|
|
67
67
|
"""Install an add-on
|
|
68
68
|
|
|
69
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
69
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
70
70
|
:type execution_context: int | str | None
|
|
71
71
|
:type undo: bool | None
|
|
72
72
|
:param overwrite: Overwrite, Remove existing add-ons with the same ID
|
|
@@ -86,19 +86,19 @@ def addon_install(
|
|
|
86
86
|
"""
|
|
87
87
|
|
|
88
88
|
def addon_refresh(
|
|
89
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
89
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
90
90
|
execution_context: int | str | None = None,
|
|
91
91
|
undo: bool | None = None,
|
|
92
92
|
):
|
|
93
93
|
"""Scan add-on directories for new modules
|
|
94
94
|
|
|
95
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
95
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
96
96
|
:type execution_context: int | str | None
|
|
97
97
|
:type undo: bool | None
|
|
98
98
|
"""
|
|
99
99
|
|
|
100
100
|
def addon_remove(
|
|
101
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
101
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
102
102
|
execution_context: int | str | None = None,
|
|
103
103
|
undo: bool | None = None,
|
|
104
104
|
*,
|
|
@@ -106,7 +106,7 @@ def addon_remove(
|
|
|
106
106
|
):
|
|
107
107
|
"""Delete the add-on from the file system
|
|
108
108
|
|
|
109
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
109
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
110
110
|
:type execution_context: int | str | None
|
|
111
111
|
:type undo: bool | None
|
|
112
112
|
:param module: Module, Module name of the add-on to remove
|
|
@@ -114,7 +114,7 @@ def addon_remove(
|
|
|
114
114
|
"""
|
|
115
115
|
|
|
116
116
|
def addon_show(
|
|
117
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
117
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
118
118
|
execution_context: int | str | None = None,
|
|
119
119
|
undo: bool | None = None,
|
|
120
120
|
*,
|
|
@@ -122,7 +122,7 @@ def addon_show(
|
|
|
122
122
|
):
|
|
123
123
|
"""Show add-on preferences
|
|
124
124
|
|
|
125
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
125
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
126
126
|
:type execution_context: int | str | None
|
|
127
127
|
:type undo: bool | None
|
|
128
128
|
:param module: Module, Module name of the add-on to expand
|
|
@@ -130,7 +130,7 @@ def addon_show(
|
|
|
130
130
|
"""
|
|
131
131
|
|
|
132
132
|
def app_template_install(
|
|
133
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
133
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
134
134
|
execution_context: int | str | None = None,
|
|
135
135
|
undo: bool | None = None,
|
|
136
136
|
*,
|
|
@@ -141,7 +141,7 @@ def app_template_install(
|
|
|
141
141
|
):
|
|
142
142
|
"""Install an application template
|
|
143
143
|
|
|
144
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
144
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
145
145
|
:type execution_context: int | str | None
|
|
146
146
|
:type undo: bool | None
|
|
147
147
|
:param overwrite: Overwrite, Remove existing template with the same ID
|
|
@@ -155,7 +155,7 @@ def app_template_install(
|
|
|
155
155
|
"""
|
|
156
156
|
|
|
157
157
|
def asset_library_add(
|
|
158
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
158
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
159
159
|
execution_context: int | str | None = None,
|
|
160
160
|
undo: bool | None = None,
|
|
161
161
|
*,
|
|
@@ -188,7 +188,7 @@ def asset_library_add(
|
|
|
188
188
|
):
|
|
189
189
|
"""Add a directory to be used by the Asset Browser as source of assets
|
|
190
190
|
|
|
191
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
191
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
192
192
|
:type execution_context: int | str | None
|
|
193
193
|
:type undo: bool | None
|
|
194
194
|
:param directory: Directory, Directory of the file
|
|
@@ -252,7 +252,7 @@ def asset_library_add(
|
|
|
252
252
|
"""
|
|
253
253
|
|
|
254
254
|
def asset_library_remove(
|
|
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
|
*,
|
|
@@ -260,7 +260,7 @@ def asset_library_remove(
|
|
|
260
260
|
):
|
|
261
261
|
"""Remove a path to a .blend file, so the Asset Browser will not attempt to show it anymore
|
|
262
262
|
|
|
263
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
263
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
264
264
|
:type execution_context: int | str | None
|
|
265
265
|
:type undo: bool | None
|
|
266
266
|
:param index: Index
|
|
@@ -268,31 +268,31 @@ def asset_library_remove(
|
|
|
268
268
|
"""
|
|
269
269
|
|
|
270
270
|
def associate_blend(
|
|
271
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
271
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
272
272
|
execution_context: int | str | None = None,
|
|
273
273
|
undo: bool | None = None,
|
|
274
274
|
):
|
|
275
275
|
"""Use this installation for .blend files and to display thumbnails
|
|
276
276
|
|
|
277
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
277
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
278
278
|
:type execution_context: int | str | None
|
|
279
279
|
:type undo: bool | None
|
|
280
280
|
"""
|
|
281
281
|
|
|
282
282
|
def autoexec_path_add(
|
|
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
|
"""Add path to exclude from auto-execution
|
|
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 autoexec_path_remove(
|
|
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
|
*,
|
|
@@ -300,7 +300,7 @@ def autoexec_path_remove(
|
|
|
300
300
|
):
|
|
301
301
|
"""Remove path to exclude from auto-execution
|
|
302
302
|
|
|
303
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
303
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
304
304
|
:type execution_context: int | str | None
|
|
305
305
|
:type undo: bool | None
|
|
306
306
|
:param index: Index
|
|
@@ -308,19 +308,19 @@ def autoexec_path_remove(
|
|
|
308
308
|
"""
|
|
309
309
|
|
|
310
310
|
def copy_prev(
|
|
311
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
311
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
312
312
|
execution_context: int | str | None = None,
|
|
313
313
|
undo: bool | None = None,
|
|
314
314
|
):
|
|
315
315
|
"""Copy settings from previous version
|
|
316
316
|
|
|
317
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
317
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
318
318
|
:type execution_context: int | str | None
|
|
319
319
|
:type undo: bool | None
|
|
320
320
|
"""
|
|
321
321
|
|
|
322
322
|
def extension_repo_add(
|
|
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
|
*,
|
|
@@ -335,7 +335,7 @@ def extension_repo_add(
|
|
|
335
335
|
):
|
|
336
336
|
"""Add a new repository used to store extensions
|
|
337
337
|
|
|
338
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
338
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
339
339
|
:type execution_context: int | str | None
|
|
340
340
|
:type undo: bool | None
|
|
341
341
|
:param name: Name, Unique repository name
|
|
@@ -363,7 +363,7 @@ def extension_repo_add(
|
|
|
363
363
|
"""
|
|
364
364
|
|
|
365
365
|
def extension_repo_remove(
|
|
366
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
366
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
367
367
|
execution_context: int | str | None = None,
|
|
368
368
|
undo: bool | None = None,
|
|
369
369
|
*,
|
|
@@ -372,7 +372,7 @@ def extension_repo_remove(
|
|
|
372
372
|
):
|
|
373
373
|
"""Remove an extension repository
|
|
374
374
|
|
|
375
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
375
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
376
376
|
:type execution_context: int | str | None
|
|
377
377
|
:type undo: bool | None
|
|
378
378
|
:param index: Index
|
|
@@ -382,7 +382,7 @@ def extension_repo_remove(
|
|
|
382
382
|
"""
|
|
383
383
|
|
|
384
384
|
def extension_url_drop(
|
|
385
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
385
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
386
386
|
execution_context: int | str | None = None,
|
|
387
387
|
undo: bool | None = None,
|
|
388
388
|
*,
|
|
@@ -390,7 +390,7 @@ def extension_url_drop(
|
|
|
390
390
|
):
|
|
391
391
|
"""Handle dropping an extension URL
|
|
392
392
|
|
|
393
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
393
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
394
394
|
:type execution_context: int | str | None
|
|
395
395
|
:type undo: bool | None
|
|
396
396
|
:param url: URL, Location of the extension to install
|
|
@@ -398,7 +398,7 @@ def extension_url_drop(
|
|
|
398
398
|
"""
|
|
399
399
|
|
|
400
400
|
def keyconfig_activate(
|
|
401
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
401
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
402
402
|
execution_context: int | str | None = None,
|
|
403
403
|
undo: bool | None = None,
|
|
404
404
|
*,
|
|
@@ -406,7 +406,7 @@ def keyconfig_activate(
|
|
|
406
406
|
):
|
|
407
407
|
"""Undocumented, consider contributing.
|
|
408
408
|
|
|
409
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
409
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
410
410
|
:type execution_context: int | str | None
|
|
411
411
|
:type undo: bool | None
|
|
412
412
|
:param filepath: filepath
|
|
@@ -414,7 +414,7 @@ def keyconfig_activate(
|
|
|
414
414
|
"""
|
|
415
415
|
|
|
416
416
|
def keyconfig_export(
|
|
417
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
417
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
418
418
|
execution_context: int | str | None = None,
|
|
419
419
|
undo: bool | None = None,
|
|
420
420
|
*,
|
|
@@ -426,7 +426,7 @@ def keyconfig_export(
|
|
|
426
426
|
):
|
|
427
427
|
"""Export key configuration to a Python script
|
|
428
428
|
|
|
429
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
429
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
430
430
|
:type execution_context: int | str | None
|
|
431
431
|
:type undo: bool | None
|
|
432
432
|
:param all: All Keymaps, Write all keymaps (not just user modified)
|
|
@@ -442,7 +442,7 @@ def keyconfig_export(
|
|
|
442
442
|
"""
|
|
443
443
|
|
|
444
444
|
def keyconfig_import(
|
|
445
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
445
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
446
446
|
execution_context: int | str | None = None,
|
|
447
447
|
undo: bool | None = None,
|
|
448
448
|
*,
|
|
@@ -454,7 +454,7 @@ def keyconfig_import(
|
|
|
454
454
|
):
|
|
455
455
|
"""Import key configuration from a Python script
|
|
456
456
|
|
|
457
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
457
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
458
458
|
:type execution_context: int | str | None
|
|
459
459
|
:type undo: bool | None
|
|
460
460
|
:param filepath: filepath
|
|
@@ -470,43 +470,43 @@ def keyconfig_import(
|
|
|
470
470
|
"""
|
|
471
471
|
|
|
472
472
|
def keyconfig_remove(
|
|
473
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
473
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
474
474
|
execution_context: int | str | None = None,
|
|
475
475
|
undo: bool | None = None,
|
|
476
476
|
):
|
|
477
477
|
"""Remove key config
|
|
478
478
|
|
|
479
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
479
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
480
480
|
:type execution_context: int | str | None
|
|
481
481
|
:type undo: bool | None
|
|
482
482
|
"""
|
|
483
483
|
|
|
484
484
|
def keyconfig_test(
|
|
485
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
485
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
486
486
|
execution_context: int | str | None = None,
|
|
487
487
|
undo: bool | None = None,
|
|
488
488
|
):
|
|
489
489
|
"""Test key configuration for conflicts
|
|
490
490
|
|
|
491
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
491
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
492
492
|
:type execution_context: int | str | None
|
|
493
493
|
:type undo: bool | None
|
|
494
494
|
"""
|
|
495
495
|
|
|
496
496
|
def keyitem_add(
|
|
497
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
497
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
498
498
|
execution_context: int | str | None = None,
|
|
499
499
|
undo: bool | None = None,
|
|
500
500
|
):
|
|
501
501
|
"""Add key map item
|
|
502
502
|
|
|
503
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
503
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
504
504
|
:type execution_context: int | str | None
|
|
505
505
|
:type undo: bool | None
|
|
506
506
|
"""
|
|
507
507
|
|
|
508
508
|
def keyitem_remove(
|
|
509
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
509
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
510
510
|
execution_context: int | str | None = None,
|
|
511
511
|
undo: bool | None = None,
|
|
512
512
|
*,
|
|
@@ -514,7 +514,7 @@ def keyitem_remove(
|
|
|
514
514
|
):
|
|
515
515
|
"""Remove key map item
|
|
516
516
|
|
|
517
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
517
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
518
518
|
:type execution_context: int | str | None
|
|
519
519
|
:type undo: bool | None
|
|
520
520
|
:param item_id: Item Identifier, Identifier of the item to remove
|
|
@@ -522,7 +522,7 @@ def keyitem_remove(
|
|
|
522
522
|
"""
|
|
523
523
|
|
|
524
524
|
def keyitem_restore(
|
|
525
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
525
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
526
526
|
execution_context: int | str | None = None,
|
|
527
527
|
undo: bool | None = None,
|
|
528
528
|
*,
|
|
@@ -530,7 +530,7 @@ def keyitem_restore(
|
|
|
530
530
|
):
|
|
531
531
|
"""Restore key map item
|
|
532
532
|
|
|
533
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
533
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
534
534
|
:type execution_context: int | str | None
|
|
535
535
|
:type undo: bool | None
|
|
536
536
|
:param item_id: Item Identifier, Identifier of the item to restore
|
|
@@ -538,7 +538,7 @@ def keyitem_restore(
|
|
|
538
538
|
"""
|
|
539
539
|
|
|
540
540
|
def keymap_restore(
|
|
541
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
541
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
542
542
|
execution_context: int | str | None = None,
|
|
543
543
|
undo: bool | None = None,
|
|
544
544
|
*,
|
|
@@ -546,7 +546,7 @@ def keymap_restore(
|
|
|
546
546
|
):
|
|
547
547
|
"""Restore key map(s)
|
|
548
548
|
|
|
549
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
549
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
550
550
|
:type execution_context: int | str | None
|
|
551
551
|
:type undo: bool | None
|
|
552
552
|
:param all: All Keymaps, Restore all keymaps to default
|
|
@@ -554,19 +554,19 @@ def keymap_restore(
|
|
|
554
554
|
"""
|
|
555
555
|
|
|
556
556
|
def reset_default_theme(
|
|
557
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
557
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
558
558
|
execution_context: int | str | None = None,
|
|
559
559
|
undo: bool | None = None,
|
|
560
560
|
):
|
|
561
561
|
"""Reset to the default theme colors
|
|
562
562
|
|
|
563
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
563
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
564
564
|
:type execution_context: int | str | None
|
|
565
565
|
:type undo: bool | None
|
|
566
566
|
"""
|
|
567
567
|
|
|
568
568
|
def script_directory_add(
|
|
569
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
569
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
570
570
|
execution_context: int | str | None = None,
|
|
571
571
|
undo: bool | None = None,
|
|
572
572
|
*,
|
|
@@ -575,7 +575,7 @@ def script_directory_add(
|
|
|
575
575
|
):
|
|
576
576
|
"""Undocumented, consider contributing.
|
|
577
577
|
|
|
578
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
578
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
579
579
|
:type execution_context: int | str | None
|
|
580
580
|
:type undo: bool | None
|
|
581
581
|
:param directory: directory
|
|
@@ -585,7 +585,7 @@ def script_directory_add(
|
|
|
585
585
|
"""
|
|
586
586
|
|
|
587
587
|
def script_directory_remove(
|
|
588
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
588
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
589
589
|
execution_context: int | str | None = None,
|
|
590
590
|
undo: bool | None = None,
|
|
591
591
|
*,
|
|
@@ -593,7 +593,7 @@ def script_directory_remove(
|
|
|
593
593
|
):
|
|
594
594
|
"""Undocumented, consider contributing.
|
|
595
595
|
|
|
596
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
596
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
597
597
|
:type execution_context: int | str | None
|
|
598
598
|
:type undo: bool | None
|
|
599
599
|
:param index: Index, Index of the script directory to remove
|
|
@@ -601,7 +601,7 @@ def script_directory_remove(
|
|
|
601
601
|
"""
|
|
602
602
|
|
|
603
603
|
def studiolight_copy_settings(
|
|
604
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
604
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
605
605
|
execution_context: int | str | None = None,
|
|
606
606
|
undo: bool | None = None,
|
|
607
607
|
*,
|
|
@@ -609,7 +609,7 @@ def studiolight_copy_settings(
|
|
|
609
609
|
):
|
|
610
610
|
"""Copy Studio Light settings to the Studio Light editor
|
|
611
611
|
|
|
612
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
612
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
613
613
|
:type execution_context: int | str | None
|
|
614
614
|
:type undo: bool | None
|
|
615
615
|
:param index: index
|
|
@@ -617,7 +617,7 @@ def studiolight_copy_settings(
|
|
|
617
617
|
"""
|
|
618
618
|
|
|
619
619
|
def studiolight_install(
|
|
620
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
620
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
621
621
|
execution_context: int | str | None = None,
|
|
622
622
|
undo: bool | None = None,
|
|
623
623
|
*,
|
|
@@ -630,7 +630,7 @@ def studiolight_install(
|
|
|
630
630
|
):
|
|
631
631
|
"""Install a user defined light
|
|
632
632
|
|
|
633
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
633
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
634
634
|
:type execution_context: int | str | None
|
|
635
635
|
:type undo: bool | None
|
|
636
636
|
:param files: File Path
|
|
@@ -655,7 +655,7 @@ def studiolight_install(
|
|
|
655
655
|
"""
|
|
656
656
|
|
|
657
657
|
def studiolight_new(
|
|
658
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
658
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
659
659
|
execution_context: int | str | None = None,
|
|
660
660
|
undo: bool | None = None,
|
|
661
661
|
*,
|
|
@@ -663,7 +663,7 @@ def studiolight_new(
|
|
|
663
663
|
):
|
|
664
664
|
"""Save custom studio light from the studio light editor settings
|
|
665
665
|
|
|
666
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
666
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
667
667
|
:type execution_context: int | str | None
|
|
668
668
|
:type undo: bool | None
|
|
669
669
|
:param filename: Name
|
|
@@ -671,7 +671,7 @@ def studiolight_new(
|
|
|
671
671
|
"""
|
|
672
672
|
|
|
673
673
|
def studiolight_uninstall(
|
|
674
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
674
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
675
675
|
execution_context: int | str | None = None,
|
|
676
676
|
undo: bool | None = None,
|
|
677
677
|
*,
|
|
@@ -679,7 +679,7 @@ def studiolight_uninstall(
|
|
|
679
679
|
):
|
|
680
680
|
"""Delete Studio Light
|
|
681
681
|
|
|
682
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
682
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
683
683
|
:type execution_context: int | str | None
|
|
684
684
|
:type undo: bool | None
|
|
685
685
|
:param index: index
|
|
@@ -687,7 +687,7 @@ def studiolight_uninstall(
|
|
|
687
687
|
"""
|
|
688
688
|
|
|
689
689
|
def theme_install(
|
|
690
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
690
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
691
691
|
execution_context: int | str | None = None,
|
|
692
692
|
undo: bool | None = None,
|
|
693
693
|
*,
|
|
@@ -698,7 +698,7 @@ def theme_install(
|
|
|
698
698
|
):
|
|
699
699
|
"""Load and apply a Blender XML theme file
|
|
700
700
|
|
|
701
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
701
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
702
702
|
:type execution_context: int | str | None
|
|
703
703
|
:type undo: bool | None
|
|
704
704
|
:param overwrite: Overwrite, Remove existing theme file if exists
|
|
@@ -712,13 +712,13 @@ def theme_install(
|
|
|
712
712
|
"""
|
|
713
713
|
|
|
714
714
|
def unassociate_blend(
|
|
715
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
715
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
716
716
|
execution_context: int | str | None = None,
|
|
717
717
|
undo: bool | None = None,
|
|
718
718
|
):
|
|
719
719
|
"""Remove this installation's associations with .blend files
|
|
720
720
|
|
|
721
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
721
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
722
722
|
:type execution_context: int | str | None
|
|
723
723
|
:type undo: bool | None
|
|
724
724
|
"""
|
bpy/ops/ptcache/__init__.pyi
CHANGED
|
@@ -4,19 +4,19 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def add(
|
|
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
|
"""Add new cache
|
|
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 bake(
|
|
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
|
*,
|
|
@@ -24,7 +24,7 @@ def bake(
|
|
|
24
24
|
):
|
|
25
25
|
"""Bake physics
|
|
26
26
|
|
|
27
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
27
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
28
28
|
:type execution_context: int | str | None
|
|
29
29
|
:type undo: bool | None
|
|
30
30
|
:param bake: Bake
|
|
@@ -32,7 +32,7 @@ def bake(
|
|
|
32
32
|
"""
|
|
33
33
|
|
|
34
34
|
def bake_all(
|
|
35
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
35
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
36
36
|
execution_context: int | str | None = None,
|
|
37
37
|
undo: bool | None = None,
|
|
38
38
|
*,
|
|
@@ -40,7 +40,7 @@ def bake_all(
|
|
|
40
40
|
):
|
|
41
41
|
"""Bake all physics
|
|
42
42
|
|
|
43
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
43
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
44
44
|
:type execution_context: int | str | None
|
|
45
45
|
:type undo: bool | None
|
|
46
46
|
:param bake: Bake
|
|
@@ -48,49 +48,49 @@ def bake_all(
|
|
|
48
48
|
"""
|
|
49
49
|
|
|
50
50
|
def bake_from_cache(
|
|
51
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
51
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
52
52
|
execution_context: int | str | None = None,
|
|
53
53
|
undo: bool | None = None,
|
|
54
54
|
):
|
|
55
55
|
"""Bake from cache
|
|
56
56
|
|
|
57
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
57
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
58
58
|
:type execution_context: int | str | None
|
|
59
59
|
:type undo: bool | None
|
|
60
60
|
"""
|
|
61
61
|
|
|
62
62
|
def free_bake(
|
|
63
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
63
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
64
64
|
execution_context: int | str | None = None,
|
|
65
65
|
undo: bool | None = None,
|
|
66
66
|
):
|
|
67
67
|
"""Delete physics bake
|
|
68
68
|
|
|
69
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
69
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
70
70
|
:type execution_context: int | str | None
|
|
71
71
|
:type undo: bool | None
|
|
72
72
|
"""
|
|
73
73
|
|
|
74
74
|
def free_bake_all(
|
|
75
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
75
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
76
76
|
execution_context: int | str | None = None,
|
|
77
77
|
undo: bool | None = None,
|
|
78
78
|
):
|
|
79
79
|
"""Delete all baked caches of all objects in the current scene
|
|
80
80
|
|
|
81
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
81
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
82
82
|
:type execution_context: int | str | None
|
|
83
83
|
:type undo: bool | None
|
|
84
84
|
"""
|
|
85
85
|
|
|
86
86
|
def remove(
|
|
87
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
87
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
88
88
|
execution_context: int | str | None = None,
|
|
89
89
|
undo: bool | None = None,
|
|
90
90
|
):
|
|
91
91
|
"""Delete current cache
|
|
92
92
|
|
|
93
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
93
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
94
94
|
:type execution_context: int | str | None
|
|
95
95
|
:type undo: bool | None
|
|
96
96
|
"""
|