fake-bpy-module 20240811__py3-none-any.whl → 20240813__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 +76 -64
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/RECORD +83 -83
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/top_level.txt +0 -0
bpy/ops/sound/__init__.pyi
CHANGED
|
@@ -7,13 +7,13 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def bake_animation(
|
|
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
|
"""Update the audio animation cache
|
|
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 bake_animation(
|
|
|
21
21
|
...
|
|
22
22
|
|
|
23
23
|
def mixdown(
|
|
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
|
*,
|
|
@@ -74,7 +74,7 @@ def mixdown(
|
|
|
74
74
|
):
|
|
75
75
|
"""Mix the scene's audio to a sound file
|
|
76
76
|
|
|
77
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
77
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
78
78
|
:type execution_context: int | str | None
|
|
79
79
|
:type undo: bool | None
|
|
80
80
|
:param filepath: File Path, Path to file
|
|
@@ -240,7 +240,7 @@ def mixdown(
|
|
|
240
240
|
...
|
|
241
241
|
|
|
242
242
|
def open(
|
|
243
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
243
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
244
244
|
execution_context: int | str | None = None,
|
|
245
245
|
undo: bool | None = None,
|
|
246
246
|
*,
|
|
@@ -278,7 +278,7 @@ def open(
|
|
|
278
278
|
):
|
|
279
279
|
"""Load a sound file
|
|
280
280
|
|
|
281
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
281
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
282
282
|
:type execution_context: int | str | None
|
|
283
283
|
:type undo: bool | None
|
|
284
284
|
:param filepath: File Path, Path to file
|
|
@@ -354,7 +354,7 @@ def open(
|
|
|
354
354
|
...
|
|
355
355
|
|
|
356
356
|
def open_mono(
|
|
357
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
357
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
358
358
|
execution_context: int | str | None = None,
|
|
359
359
|
undo: bool | None = None,
|
|
360
360
|
*,
|
|
@@ -392,7 +392,7 @@ def open_mono(
|
|
|
392
392
|
):
|
|
393
393
|
"""Load a sound file as mono
|
|
394
394
|
|
|
395
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
395
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
396
396
|
:type execution_context: int | str | None
|
|
397
397
|
:type undo: bool | None
|
|
398
398
|
:param filepath: File Path, Path to file
|
|
@@ -468,13 +468,13 @@ def open_mono(
|
|
|
468
468
|
...
|
|
469
469
|
|
|
470
470
|
def pack(
|
|
471
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
471
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
472
472
|
execution_context: int | str | None = None,
|
|
473
473
|
undo: bool | None = None,
|
|
474
474
|
):
|
|
475
475
|
"""Pack the sound into the current blend file
|
|
476
476
|
|
|
477
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
477
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
478
478
|
:type execution_context: int | str | None
|
|
479
479
|
:type undo: bool | None
|
|
480
480
|
"""
|
|
@@ -482,7 +482,7 @@ def pack(
|
|
|
482
482
|
...
|
|
483
483
|
|
|
484
484
|
def unpack(
|
|
485
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
485
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
486
486
|
execution_context: int | str | None = None,
|
|
487
487
|
undo: bool | None = None,
|
|
488
488
|
*,
|
|
@@ -494,7 +494,7 @@ def unpack(
|
|
|
494
494
|
):
|
|
495
495
|
"""Unpack the sound to the samples filename
|
|
496
496
|
|
|
497
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
497
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
498
498
|
:type execution_context: int | str | None
|
|
499
499
|
:type undo: bool | None
|
|
500
500
|
:param method: Method, How to unpack
|
|
@@ -506,13 +506,13 @@ def unpack(
|
|
|
506
506
|
...
|
|
507
507
|
|
|
508
508
|
def update_animation_flags(
|
|
509
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
509
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
510
510
|
execution_context: int | str | None = None,
|
|
511
511
|
undo: bool | None = None,
|
|
512
512
|
):
|
|
513
513
|
"""Update animation flags
|
|
514
514
|
|
|
515
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
515
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
516
516
|
:type execution_context: int | str | None
|
|
517
517
|
:type undo: bool | None
|
|
518
518
|
"""
|
bpy/ops/spreadsheet/__init__.pyi
CHANGED
|
@@ -7,13 +7,13 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def add_row_filter_rule(
|
|
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
|
"""Add a filter to remove rows from the displayed data
|
|
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 add_row_filter_rule(
|
|
|
21
21
|
...
|
|
22
22
|
|
|
23
23
|
def change_spreadsheet_data_source(
|
|
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
|
*,
|
|
@@ -30,7 +30,7 @@ def change_spreadsheet_data_source(
|
|
|
30
30
|
):
|
|
31
31
|
"""Change visible data source in the spreadsheet
|
|
32
32
|
|
|
33
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
33
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
34
34
|
:type execution_context: int | str | None
|
|
35
35
|
:type undo: bool | None
|
|
36
36
|
:param component_type: Component Type
|
|
@@ -42,7 +42,7 @@ def change_spreadsheet_data_source(
|
|
|
42
42
|
...
|
|
43
43
|
|
|
44
44
|
def remove_row_filter_rule(
|
|
45
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
45
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
46
46
|
execution_context: int | str | None = None,
|
|
47
47
|
undo: bool | None = None,
|
|
48
48
|
*,
|
|
@@ -50,7 +50,7 @@ def remove_row_filter_rule(
|
|
|
50
50
|
):
|
|
51
51
|
"""Remove a row filter from the rules
|
|
52
52
|
|
|
53
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
53
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
54
54
|
:type execution_context: int | str | None
|
|
55
55
|
:type undo: bool | None
|
|
56
56
|
:param index: Index
|
|
@@ -60,13 +60,13 @@ def remove_row_filter_rule(
|
|
|
60
60
|
...
|
|
61
61
|
|
|
62
62
|
def toggle_pin(
|
|
63
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
63
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
64
64
|
execution_context: int | str | None = None,
|
|
65
65
|
undo: bool | None = None,
|
|
66
66
|
):
|
|
67
67
|
"""Turn on or off pinning
|
|
68
68
|
|
|
69
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
69
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
70
70
|
:type execution_context: int | str | None
|
|
71
71
|
:type undo: bool | None
|
|
72
72
|
"""
|
bpy/ops/surface/__init__.pyi
CHANGED
|
@@ -8,7 +8,7 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
8
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
9
9
|
|
|
10
10
|
def primitive_nurbs_surface_circle_add(
|
|
11
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
11
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
12
12
|
execution_context: int | str | None = None,
|
|
13
13
|
undo: bool | None = None,
|
|
14
14
|
*,
|
|
@@ -29,7 +29,7 @@ def primitive_nurbs_surface_circle_add(
|
|
|
29
29
|
):
|
|
30
30
|
"""Construct a Nurbs surface Circle
|
|
31
31
|
|
|
32
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
32
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
33
33
|
:type execution_context: int | str | None
|
|
34
34
|
:type undo: bool | None
|
|
35
35
|
:param radius: Radius
|
|
@@ -58,7 +58,7 @@ def primitive_nurbs_surface_circle_add(
|
|
|
58
58
|
...
|
|
59
59
|
|
|
60
60
|
def primitive_nurbs_surface_curve_add(
|
|
61
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
61
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
62
62
|
execution_context: int | str | None = None,
|
|
63
63
|
undo: bool | None = None,
|
|
64
64
|
*,
|
|
@@ -79,7 +79,7 @@ def primitive_nurbs_surface_curve_add(
|
|
|
79
79
|
):
|
|
80
80
|
"""Construct a Nurbs surface Curve
|
|
81
81
|
|
|
82
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
82
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
83
83
|
:type execution_context: int | str | None
|
|
84
84
|
:type undo: bool | None
|
|
85
85
|
:param radius: Radius
|
|
@@ -108,7 +108,7 @@ def primitive_nurbs_surface_curve_add(
|
|
|
108
108
|
...
|
|
109
109
|
|
|
110
110
|
def primitive_nurbs_surface_cylinder_add(
|
|
111
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
111
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
112
112
|
execution_context: int | str | None = None,
|
|
113
113
|
undo: bool | None = None,
|
|
114
114
|
*,
|
|
@@ -129,7 +129,7 @@ def primitive_nurbs_surface_cylinder_add(
|
|
|
129
129
|
):
|
|
130
130
|
"""Construct a Nurbs surface Cylinder
|
|
131
131
|
|
|
132
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
132
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
133
133
|
:type execution_context: int | str | None
|
|
134
134
|
:type undo: bool | None
|
|
135
135
|
:param radius: Radius
|
|
@@ -158,7 +158,7 @@ def primitive_nurbs_surface_cylinder_add(
|
|
|
158
158
|
...
|
|
159
159
|
|
|
160
160
|
def primitive_nurbs_surface_sphere_add(
|
|
161
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
161
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
162
162
|
execution_context: int | str | None = None,
|
|
163
163
|
undo: bool | None = None,
|
|
164
164
|
*,
|
|
@@ -179,7 +179,7 @@ def primitive_nurbs_surface_sphere_add(
|
|
|
179
179
|
):
|
|
180
180
|
"""Construct a Nurbs surface Sphere
|
|
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
|
:param radius: Radius
|
|
@@ -208,7 +208,7 @@ def primitive_nurbs_surface_sphere_add(
|
|
|
208
208
|
...
|
|
209
209
|
|
|
210
210
|
def primitive_nurbs_surface_surface_add(
|
|
211
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
211
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
212
212
|
execution_context: int | str | None = None,
|
|
213
213
|
undo: bool | None = None,
|
|
214
214
|
*,
|
|
@@ -229,7 +229,7 @@ def primitive_nurbs_surface_surface_add(
|
|
|
229
229
|
):
|
|
230
230
|
"""Construct a Nurbs surface Patch
|
|
231
231
|
|
|
232
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
232
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
233
233
|
:type execution_context: int | str | None
|
|
234
234
|
:type undo: bool | None
|
|
235
235
|
:param radius: Radius
|
|
@@ -258,7 +258,7 @@ def primitive_nurbs_surface_surface_add(
|
|
|
258
258
|
...
|
|
259
259
|
|
|
260
260
|
def primitive_nurbs_surface_torus_add(
|
|
261
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
261
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
262
262
|
execution_context: int | str | None = None,
|
|
263
263
|
undo: bool | None = None,
|
|
264
264
|
*,
|
|
@@ -279,7 +279,7 @@ def primitive_nurbs_surface_torus_add(
|
|
|
279
279
|
):
|
|
280
280
|
"""Construct a Nurbs surface Torus
|
|
281
281
|
|
|
282
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
282
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
283
283
|
:type execution_context: int | str | None
|
|
284
284
|
:type undo: bool | None
|
|
285
285
|
:param radius: Radius
|