fake-bpy-module 20240928__py3-none-any.whl → 20240930__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bmesh/types/__init__.pyi +2 -2
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +124 -124
- bpy/ops/armature/__init__.pyi +96 -96
- bpy/ops/asset/__init__.pyi +32 -32
- bpy/ops/boid/__init__.pyi +16 -16
- bpy/ops/brush/__init__.pyi +26 -26
- bpy/ops/buttons/__init__.pyi +12 -12
- bpy/ops/cachefile/__init__.pyi +10 -10
- bpy/ops/camera/__init__.pyi +4 -4
- bpy/ops/clip/__init__.pyi +184 -184
- bpy/ops/cloth/__init__.pyi +2 -2
- bpy/ops/collection/__init__.pyi +18 -18
- bpy/ops/console/__init__.pyi +42 -42
- bpy/ops/constraint/__init__.pyi +36 -36
- bpy/ops/curve/__init__.pyi +102 -102
- bpy/ops/curves/__init__.pyi +54 -54
- bpy/ops/cycles/__init__.pyi +6 -6
- bpy/ops/dpaint/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +24 -24
- bpy/ops/export_anim/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +4 -4
- bpy/ops/extensions/__init__.pyi +68 -68
- bpy/ops/file/__init__.pyi +80 -80
- bpy/ops/fluid/__init__.pyi +28 -28
- bpy/ops/font/__init__.pyi +46 -46
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +4 -4
- bpy/ops/gpencil/__init__.pyi +284 -284
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +202 -202
- bpy/ops/image/__init__.pyi +98 -98
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +4 -4
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +16 -16
- bpy/ops/marker/__init__.pyi +22 -22
- bpy/ops/mask/__init__.pyi +78 -78
- bpy/ops/material/__init__.pyi +6 -6
- bpy/ops/mball/__init__.pyi +16 -16
- bpy/ops/mesh/__init__.pyi +326 -326
- bpy/ops/nla/__init__.pyi +78 -78
- bpy/ops/node/__init__.pyi +230 -230
- bpy/ops/object/__init__.pyi +476 -476
- bpy/ops/outliner/__init__.pyi +142 -142
- bpy/ops/paint/__init__.pyi +108 -108
- bpy/ops/paintcurve/__init__.pyi +16 -16
- bpy/ops/palette/__init__.pyi +14 -14
- bpy/ops/particle/__init__.pyi +72 -72
- bpy/ops/pose/__init__.pyi +102 -102
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +70 -70
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +26 -26
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +74 -74
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +74 -74
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +178 -178
- bpy/ops/sound/__init__.pyi +14 -14
- bpy/ops/spreadsheet/__init__.pyi +8 -8
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +86 -86
- bpy/ops/text_editor/__init__.pyi +2 -2
- bpy/ops/texture/__init__.pyi +8 -8
- bpy/ops/transform/__init__.pyi +54 -54
- bpy/ops/ui/__init__.pyi +68 -68
- bpy/ops/uilist/__init__.pyi +6 -6
- bpy/ops/uv/__init__.pyi +98 -98
- bpy/ops/view2d/__init__.pyi +28 -28
- bpy/ops/view3d/__init__.pyi +134 -134
- bpy/ops/wm/__init__.pyi +232 -232
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +333 -298
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/RECORD +85 -85
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/top_level.txt +0 -0
bpy/ops/sound/__init__.pyi
CHANGED
|
@@ -5,19 +5,19 @@ import bpy.types
|
|
|
5
5
|
import bpy.typing
|
|
6
6
|
|
|
7
7
|
def bake_animation(
|
|
8
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
8
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
9
9
|
execution_context: int | str | None = None,
|
|
10
10
|
undo: bool | None = None,
|
|
11
11
|
):
|
|
12
12
|
"""Update the audio animation cache
|
|
13
13
|
|
|
14
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
14
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
15
15
|
:type execution_context: int | str | None
|
|
16
16
|
:type undo: bool | None
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
19
|
def mixdown(
|
|
20
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
20
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
21
21
|
execution_context: int | str | None = None,
|
|
22
22
|
undo: bool | None = None,
|
|
23
23
|
*,
|
|
@@ -70,7 +70,7 @@ def mixdown(
|
|
|
70
70
|
):
|
|
71
71
|
"""Mix the scene's audio to a sound file
|
|
72
72
|
|
|
73
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
73
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
74
74
|
:type execution_context: int | str | None
|
|
75
75
|
:type undo: bool | None
|
|
76
76
|
:param filepath: File Path, Path to file
|
|
@@ -234,7 +234,7 @@ def mixdown(
|
|
|
234
234
|
"""
|
|
235
235
|
|
|
236
236
|
def open(
|
|
237
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
237
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
238
238
|
execution_context: int | str | None = None,
|
|
239
239
|
undo: bool | None = None,
|
|
240
240
|
*,
|
|
@@ -272,7 +272,7 @@ def open(
|
|
|
272
272
|
):
|
|
273
273
|
"""Load a sound file
|
|
274
274
|
|
|
275
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
275
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
276
276
|
:type execution_context: int | str | None
|
|
277
277
|
:type undo: bool | None
|
|
278
278
|
:param filepath: File Path, Path to file
|
|
@@ -346,7 +346,7 @@ def open(
|
|
|
346
346
|
"""
|
|
347
347
|
|
|
348
348
|
def open_mono(
|
|
349
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
349
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
350
350
|
execution_context: int | str | None = None,
|
|
351
351
|
undo: bool | None = None,
|
|
352
352
|
*,
|
|
@@ -384,7 +384,7 @@ def open_mono(
|
|
|
384
384
|
):
|
|
385
385
|
"""Load a sound file as mono
|
|
386
386
|
|
|
387
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
387
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
388
388
|
:type execution_context: int | str | None
|
|
389
389
|
:type undo: bool | None
|
|
390
390
|
:param filepath: File Path, Path to file
|
|
@@ -458,19 +458,19 @@ def open_mono(
|
|
|
458
458
|
"""
|
|
459
459
|
|
|
460
460
|
def pack(
|
|
461
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
461
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
462
462
|
execution_context: int | str | None = None,
|
|
463
463
|
undo: bool | None = None,
|
|
464
464
|
):
|
|
465
465
|
"""Pack the sound into the current blend file
|
|
466
466
|
|
|
467
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
467
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
468
468
|
:type execution_context: int | str | None
|
|
469
469
|
:type undo: bool | None
|
|
470
470
|
"""
|
|
471
471
|
|
|
472
472
|
def unpack(
|
|
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
|
*,
|
|
@@ -479,7 +479,7 @@ def unpack(
|
|
|
479
479
|
):
|
|
480
480
|
"""Unpack the sound to the samples filename
|
|
481
481
|
|
|
482
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
482
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
483
483
|
:type execution_context: int | str | None
|
|
484
484
|
:type undo: bool | None
|
|
485
485
|
:param method: Method, How to unpack
|
|
@@ -489,13 +489,13 @@ def unpack(
|
|
|
489
489
|
"""
|
|
490
490
|
|
|
491
491
|
def update_animation_flags(
|
|
492
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
492
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
493
493
|
execution_context: int | str | None = None,
|
|
494
494
|
undo: bool | None = None,
|
|
495
495
|
):
|
|
496
496
|
"""Update animation flags
|
|
497
497
|
|
|
498
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
498
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
499
499
|
:type execution_context: int | str | None
|
|
500
500
|
:type undo: bool | None
|
|
501
501
|
"""
|
bpy/ops/spreadsheet/__init__.pyi
CHANGED
|
@@ -4,19 +4,19 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def add_row_filter_rule(
|
|
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 a filter to remove rows from the displayed data
|
|
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 change_spreadsheet_data_source(
|
|
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
|
*,
|
|
@@ -25,7 +25,7 @@ def change_spreadsheet_data_source(
|
|
|
25
25
|
):
|
|
26
26
|
"""Change visible data source in the spreadsheet
|
|
27
27
|
|
|
28
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
28
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
29
29
|
:type execution_context: int | str | None
|
|
30
30
|
:type undo: bool | None
|
|
31
31
|
:param component_type: Component Type
|
|
@@ -35,7 +35,7 @@ def change_spreadsheet_data_source(
|
|
|
35
35
|
"""
|
|
36
36
|
|
|
37
37
|
def remove_row_filter_rule(
|
|
38
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
38
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
39
39
|
execution_context: int | str | None = None,
|
|
40
40
|
undo: bool | None = None,
|
|
41
41
|
*,
|
|
@@ -43,7 +43,7 @@ def remove_row_filter_rule(
|
|
|
43
43
|
):
|
|
44
44
|
"""Remove a row filter from the rules
|
|
45
45
|
|
|
46
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
46
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
47
47
|
:type execution_context: int | str | None
|
|
48
48
|
:type undo: bool | None
|
|
49
49
|
:param index: Index
|
|
@@ -51,13 +51,13 @@ def remove_row_filter_rule(
|
|
|
51
51
|
"""
|
|
52
52
|
|
|
53
53
|
def toggle_pin(
|
|
54
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
54
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
55
55
|
execution_context: int | str | None = None,
|
|
56
56
|
undo: bool | None = None,
|
|
57
57
|
):
|
|
58
58
|
"""Turn on or off pinning
|
|
59
59
|
|
|
60
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
60
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
61
61
|
:type execution_context: int | str | None
|
|
62
62
|
:type undo: bool | None
|
|
63
63
|
"""
|
bpy/ops/surface/__init__.pyi
CHANGED
|
@@ -5,7 +5,7 @@ import bpy.types
|
|
|
5
5
|
import mathutils
|
|
6
6
|
|
|
7
7
|
def primitive_nurbs_surface_circle_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
|
*,
|
|
@@ -26,7 +26,7 @@ def primitive_nurbs_surface_circle_add(
|
|
|
26
26
|
):
|
|
27
27
|
"""Construct a Nurbs surface Circle
|
|
28
28
|
|
|
29
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
29
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
30
30
|
:type execution_context: int | str | None
|
|
31
31
|
:type undo: bool | None
|
|
32
32
|
:param radius: Radius
|
|
@@ -53,7 +53,7 @@ def primitive_nurbs_surface_circle_add(
|
|
|
53
53
|
"""
|
|
54
54
|
|
|
55
55
|
def primitive_nurbs_surface_curve_add(
|
|
56
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
56
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
57
57
|
execution_context: int | str | None = None,
|
|
58
58
|
undo: bool | None = None,
|
|
59
59
|
*,
|
|
@@ -74,7 +74,7 @@ def primitive_nurbs_surface_curve_add(
|
|
|
74
74
|
):
|
|
75
75
|
"""Construct a Nurbs surface Curve
|
|
76
76
|
|
|
77
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
77
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
78
78
|
:type execution_context: int | str | None
|
|
79
79
|
:type undo: bool | None
|
|
80
80
|
:param radius: Radius
|
|
@@ -101,7 +101,7 @@ def primitive_nurbs_surface_curve_add(
|
|
|
101
101
|
"""
|
|
102
102
|
|
|
103
103
|
def primitive_nurbs_surface_cylinder_add(
|
|
104
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
104
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
105
105
|
execution_context: int | str | None = None,
|
|
106
106
|
undo: bool | None = None,
|
|
107
107
|
*,
|
|
@@ -122,7 +122,7 @@ def primitive_nurbs_surface_cylinder_add(
|
|
|
122
122
|
):
|
|
123
123
|
"""Construct a Nurbs surface Cylinder
|
|
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 radius: Radius
|
|
@@ -149,7 +149,7 @@ def primitive_nurbs_surface_cylinder_add(
|
|
|
149
149
|
"""
|
|
150
150
|
|
|
151
151
|
def primitive_nurbs_surface_sphere_add(
|
|
152
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
152
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
153
153
|
execution_context: int | str | None = None,
|
|
154
154
|
undo: bool | None = None,
|
|
155
155
|
*,
|
|
@@ -170,7 +170,7 @@ def primitive_nurbs_surface_sphere_add(
|
|
|
170
170
|
):
|
|
171
171
|
"""Construct a Nurbs surface Sphere
|
|
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
|
:param radius: Radius
|
|
@@ -197,7 +197,7 @@ def primitive_nurbs_surface_sphere_add(
|
|
|
197
197
|
"""
|
|
198
198
|
|
|
199
199
|
def primitive_nurbs_surface_surface_add(
|
|
200
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
200
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
201
201
|
execution_context: int | str | None = None,
|
|
202
202
|
undo: bool | None = None,
|
|
203
203
|
*,
|
|
@@ -218,7 +218,7 @@ def primitive_nurbs_surface_surface_add(
|
|
|
218
218
|
):
|
|
219
219
|
"""Construct a Nurbs surface Patch
|
|
220
220
|
|
|
221
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
221
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
222
222
|
:type execution_context: int | str | None
|
|
223
223
|
:type undo: bool | None
|
|
224
224
|
:param radius: Radius
|
|
@@ -245,7 +245,7 @@ def primitive_nurbs_surface_surface_add(
|
|
|
245
245
|
"""
|
|
246
246
|
|
|
247
247
|
def primitive_nurbs_surface_torus_add(
|
|
248
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
248
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
249
249
|
execution_context: int | str | None = None,
|
|
250
250
|
undo: bool | None = None,
|
|
251
251
|
*,
|
|
@@ -266,7 +266,7 @@ def primitive_nurbs_surface_torus_add(
|
|
|
266
266
|
):
|
|
267
267
|
"""Construct a Nurbs surface Torus
|
|
268
268
|
|
|
269
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
269
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
270
270
|
:type execution_context: int | str | None
|
|
271
271
|
:type undo: bool | None
|
|
272
272
|
:param radius: Radius
|