fake-bpy-module 20240508__py3-none-any.whl → 20240509__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.
- bpy/ops/action/__init__.pyi +152 -76
- bpy/ops/anim/__init__.pyi +212 -106
- bpy/ops/armature/__init__.pyi +192 -96
- bpy/ops/asset/__init__.pyi +64 -32
- bpy/ops/boid/__init__.pyi +32 -16
- bpy/ops/brush/__init__.pyi +36 -18
- bpy/ops/buttons/__init__.pyi +24 -12
- bpy/ops/cachefile/__init__.pyi +20 -10
- bpy/ops/camera/__init__.pyi +8 -4
- bpy/ops/clip/__init__.pyi +368 -184
- bpy/ops/cloth/__init__.pyi +4 -2
- bpy/ops/collection/__init__.pyi +36 -18
- bpy/ops/console/__init__.pyi +84 -42
- bpy/ops/constraint/__init__.pyi +72 -36
- bpy/ops/curve/__init__.pyi +204 -102
- bpy/ops/curves/__init__.pyi +108 -54
- bpy/ops/cycles/__init__.pyi +12 -6
- bpy/ops/dpaint/__init__.pyi +20 -10
- bpy/ops/ed/__init__.pyi +48 -24
- bpy/ops/export_anim/__init__.pyi +4 -2
- bpy/ops/export_mesh/__init__.pyi +4 -2
- bpy/ops/export_scene/__init__.pyi +16 -10
- bpy/ops/file/__init__.pyi +160 -80
- bpy/ops/fluid/__init__.pyi +56 -28
- bpy/ops/font/__init__.pyi +92 -46
- bpy/ops/geometry/__init__.pyi +40 -20
- bpy/ops/gizmogroup/__init__.pyi +8 -4
- bpy/ops/gpencil/__init__.pyi +600 -300
- bpy/ops/graph/__init__.pyi +260 -130
- bpy/ops/grease_pencil/__init__.pyi +268 -134
- bpy/ops/image/__init__.pyi +188 -94
- bpy/ops/import_anim/__init__.pyi +4 -2
- bpy/ops/import_curve/__init__.pyi +4 -2
- bpy/ops/import_mesh/__init__.pyi +4 -2
- bpy/ops/import_scene/__init__.pyi +12 -6
- bpy/ops/info/__init__.pyi +28 -14
- bpy/ops/lattice/__init__.pyi +32 -16
- bpy/ops/marker/__init__.pyi +44 -22
- bpy/ops/mask/__init__.pyi +156 -78
- bpy/ops/material/__init__.pyi +12 -6
- bpy/ops/mball/__init__.pyi +32 -16
- bpy/ops/mesh/__init__.pyi +652 -326
- bpy/ops/nla/__init__.pyi +159 -81
- bpy/ops/node/__init__.pyi +404 -202
- bpy/ops/object/__init__.pyi +1002 -490
- bpy/ops/outliner/__init__.pyi +276 -138
- bpy/ops/paint/__init__.pyi +212 -106
- bpy/ops/paintcurve/__init__.pyi +32 -16
- bpy/ops/palette/__init__.pyi +28 -14
- bpy/ops/particle/__init__.pyi +144 -72
- bpy/ops/pose/__init__.pyi +156 -78
- bpy/ops/poselib/__init__.pyi +36 -18
- bpy/ops/preferences/__init__.pyi +152 -76
- bpy/ops/ptcache/__init__.pyi +28 -14
- bpy/ops/render/__init__.pyi +48 -24
- bpy/ops/rigidbody/__init__.pyi +52 -26
- bpy/ops/scene/__init__.pyi +156 -78
- bpy/ops/screen/__init__.pyi +156 -78
- bpy/ops/script/__init__.pyi +12 -6
- bpy/ops/sculpt/__init__.pyi +134 -68
- bpy/ops/sculpt_curves/__init__.pyi +16 -8
- bpy/ops/sequencer/__init__.pyi +340 -170
- bpy/ops/sound/__init__.pyi +28 -14
- bpy/ops/spreadsheet/__init__.pyi +16 -8
- bpy/ops/surface/__init__.pyi +24 -12
- bpy/ops/text/__init__.pyi +172 -86
- bpy/ops/text_editor/__init__.pyi +4 -2
- bpy/ops/texture/__init__.pyi +16 -8
- bpy/ops/transform/__init__.pyi +108 -54
- bpy/ops/ui/__init__.pyi +132 -66
- bpy/ops/uilist/__init__.pyi +12 -6
- bpy/ops/uv/__init__.pyi +196 -98
- bpy/ops/view2d/__init__.pyi +56 -28
- bpy/ops/view3d/__init__.pyi +268 -134
- bpy/ops/wm/__init__.pyi +493 -224
- bpy/ops/workspace/__init__.pyi +28 -14
- bpy/ops/world/__init__.pyi +4 -2
- bpy/types/__init__.pyi +396 -28
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/RECORD +83 -83
- mathutils/__init__.pyi +20 -0
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/top_level.txt +0 -0
bpy/ops/buttons/__init__.pyi
CHANGED
|
@@ -4,13 +4,15 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def clear_filter(
|
|
7
|
-
override_context: typing.Optional[
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
8
10
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
9
11
|
undo: typing.Optional[bool] = None,
|
|
10
12
|
):
|
|
11
13
|
"""Clear the search filter
|
|
12
14
|
|
|
13
|
-
:type override_context: typing.Optional[typing.Union[
|
|
15
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
14
16
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
15
17
|
:type undo: typing.Optional[bool]
|
|
16
18
|
"""
|
|
@@ -18,13 +20,15 @@ def clear_filter(
|
|
|
18
20
|
...
|
|
19
21
|
|
|
20
22
|
def context_menu(
|
|
21
|
-
override_context: typing.Optional[
|
|
23
|
+
override_context: typing.Optional[
|
|
24
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
25
|
+
] = None,
|
|
22
26
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
23
27
|
undo: typing.Optional[bool] = None,
|
|
24
28
|
):
|
|
25
29
|
"""Display properties editor context_menu
|
|
26
30
|
|
|
27
|
-
:type override_context: typing.Optional[typing.Union[
|
|
31
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
28
32
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
29
33
|
:type undo: typing.Optional[bool]
|
|
30
34
|
"""
|
|
@@ -32,7 +36,9 @@ def context_menu(
|
|
|
32
36
|
...
|
|
33
37
|
|
|
34
38
|
def directory_browse(
|
|
35
|
-
override_context: typing.Optional[
|
|
39
|
+
override_context: typing.Optional[
|
|
40
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
41
|
+
] = None,
|
|
36
42
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
37
43
|
undo: typing.Optional[bool] = None,
|
|
38
44
|
directory: typing.Union[str, typing.Any] = "",
|
|
@@ -62,7 +68,7 @@ def directory_browse(
|
|
|
62
68
|
):
|
|
63
69
|
"""Open a directory browser, hold Shift to open the file, Alt to browse containing directory
|
|
64
70
|
|
|
65
|
-
:type override_context: typing.Optional[typing.Union[
|
|
71
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
66
72
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
67
73
|
:type undo: typing.Optional[bool]
|
|
68
74
|
:param directory: Directory, Directory of the file
|
|
@@ -130,7 +136,9 @@ def directory_browse(
|
|
|
130
136
|
...
|
|
131
137
|
|
|
132
138
|
def file_browse(
|
|
133
|
-
override_context: typing.Optional[
|
|
139
|
+
override_context: typing.Optional[
|
|
140
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
141
|
+
] = None,
|
|
134
142
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
135
143
|
undo: typing.Optional[bool] = None,
|
|
136
144
|
filepath: typing.Union[str, typing.Any] = "",
|
|
@@ -160,7 +168,7 @@ def file_browse(
|
|
|
160
168
|
):
|
|
161
169
|
"""Open a file browser, hold Shift to open the file, Alt to browse containing directory
|
|
162
170
|
|
|
163
|
-
:type override_context: typing.Optional[typing.Union[
|
|
171
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
164
172
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
165
173
|
:type undo: typing.Optional[bool]
|
|
166
174
|
:param filepath: File Path, Path to file
|
|
@@ -228,13 +236,15 @@ def file_browse(
|
|
|
228
236
|
...
|
|
229
237
|
|
|
230
238
|
def start_filter(
|
|
231
|
-
override_context: typing.Optional[
|
|
239
|
+
override_context: typing.Optional[
|
|
240
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
241
|
+
] = None,
|
|
232
242
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
233
243
|
undo: typing.Optional[bool] = None,
|
|
234
244
|
):
|
|
235
245
|
"""Start entering filter text
|
|
236
246
|
|
|
237
|
-
:type override_context: typing.Optional[typing.Union[
|
|
247
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
238
248
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
239
249
|
:type undo: typing.Optional[bool]
|
|
240
250
|
"""
|
|
@@ -242,13 +252,15 @@ def start_filter(
|
|
|
242
252
|
...
|
|
243
253
|
|
|
244
254
|
def toggle_pin(
|
|
245
|
-
override_context: typing.Optional[
|
|
255
|
+
override_context: typing.Optional[
|
|
256
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
257
|
+
] = None,
|
|
246
258
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
247
259
|
undo: typing.Optional[bool] = None,
|
|
248
260
|
):
|
|
249
261
|
"""Keep the current data-block displayed
|
|
250
262
|
|
|
251
|
-
:type override_context: typing.Optional[typing.Union[
|
|
263
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
252
264
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
253
265
|
:type undo: typing.Optional[bool]
|
|
254
266
|
"""
|
bpy/ops/cachefile/__init__.pyi
CHANGED
|
@@ -4,7 +4,9 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def layer_add(
|
|
7
|
-
override_context: typing.Optional[
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
8
10
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
9
11
|
undo: typing.Optional[bool] = None,
|
|
10
12
|
filepath: typing.Union[str, typing.Any] = "",
|
|
@@ -34,7 +36,7 @@ def layer_add(
|
|
|
34
36
|
):
|
|
35
37
|
"""Add an override layer to the archive
|
|
36
38
|
|
|
37
|
-
:type override_context: typing.Optional[typing.Union[
|
|
39
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
38
40
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
39
41
|
:type undo: typing.Optional[bool]
|
|
40
42
|
:param filepath: File Path, Path to file
|
|
@@ -102,14 +104,16 @@ def layer_add(
|
|
|
102
104
|
...
|
|
103
105
|
|
|
104
106
|
def layer_move(
|
|
105
|
-
override_context: typing.Optional[
|
|
107
|
+
override_context: typing.Optional[
|
|
108
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
109
|
+
] = None,
|
|
106
110
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
107
111
|
undo: typing.Optional[bool] = None,
|
|
108
112
|
direction: typing.Optional[typing.Any] = "UP",
|
|
109
113
|
):
|
|
110
114
|
"""Move layer in the list, layers further down the list will overwrite data from the layers higher up
|
|
111
115
|
|
|
112
|
-
:type override_context: typing.Optional[typing.Union[
|
|
116
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
113
117
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
114
118
|
:type undo: typing.Optional[bool]
|
|
115
119
|
:param direction: Direction, Direction to move the active vertex group towards
|
|
@@ -119,13 +123,15 @@ def layer_move(
|
|
|
119
123
|
...
|
|
120
124
|
|
|
121
125
|
def layer_remove(
|
|
122
|
-
override_context: typing.Optional[
|
|
126
|
+
override_context: typing.Optional[
|
|
127
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
128
|
+
] = None,
|
|
123
129
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
124
130
|
undo: typing.Optional[bool] = None,
|
|
125
131
|
):
|
|
126
132
|
"""Remove an override layer from the archive
|
|
127
133
|
|
|
128
|
-
:type override_context: typing.Optional[typing.Union[
|
|
134
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
129
135
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
130
136
|
:type undo: typing.Optional[bool]
|
|
131
137
|
"""
|
|
@@ -133,7 +139,9 @@ def layer_remove(
|
|
|
133
139
|
...
|
|
134
140
|
|
|
135
141
|
def open(
|
|
136
|
-
override_context: typing.Optional[
|
|
142
|
+
override_context: typing.Optional[
|
|
143
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
144
|
+
] = None,
|
|
137
145
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
138
146
|
undo: typing.Optional[bool] = None,
|
|
139
147
|
filepath: typing.Union[str, typing.Any] = "",
|
|
@@ -163,7 +171,7 @@ def open(
|
|
|
163
171
|
):
|
|
164
172
|
"""Load a cache file
|
|
165
173
|
|
|
166
|
-
:type override_context: typing.Optional[typing.Union[
|
|
174
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
167
175
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
168
176
|
:type undo: typing.Optional[bool]
|
|
169
177
|
:param filepath: File Path, Path to file
|
|
@@ -231,13 +239,15 @@ def open(
|
|
|
231
239
|
...
|
|
232
240
|
|
|
233
241
|
def reload(
|
|
234
|
-
override_context: typing.Optional[
|
|
242
|
+
override_context: typing.Optional[
|
|
243
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
244
|
+
] = None,
|
|
235
245
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
236
246
|
undo: typing.Optional[bool] = None,
|
|
237
247
|
):
|
|
238
248
|
"""Update objects paths list with new data from the archive
|
|
239
249
|
|
|
240
|
-
:type override_context: typing.Optional[typing.Union[
|
|
250
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
241
251
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
242
252
|
:type undo: typing.Optional[bool]
|
|
243
253
|
"""
|
bpy/ops/camera/__init__.pyi
CHANGED
|
@@ -4,7 +4,9 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def preset_add(
|
|
7
|
-
override_context: typing.Optional[
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
8
10
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
9
11
|
undo: typing.Optional[bool] = None,
|
|
10
12
|
name: typing.Union[str, typing.Any] = "",
|
|
@@ -14,7 +16,7 @@ def preset_add(
|
|
|
14
16
|
):
|
|
15
17
|
"""Add or remove a Camera Preset
|
|
16
18
|
|
|
17
|
-
:type override_context: typing.Optional[typing.Union[
|
|
19
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
18
20
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
19
21
|
:type undo: typing.Optional[bool]
|
|
20
22
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -30,7 +32,9 @@ def preset_add(
|
|
|
30
32
|
...
|
|
31
33
|
|
|
32
34
|
def safe_areas_preset_add(
|
|
33
|
-
override_context: typing.Optional[
|
|
35
|
+
override_context: typing.Optional[
|
|
36
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
37
|
+
] = None,
|
|
34
38
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
35
39
|
undo: typing.Optional[bool] = None,
|
|
36
40
|
name: typing.Union[str, typing.Any] = "",
|
|
@@ -39,7 +43,7 @@ def safe_areas_preset_add(
|
|
|
39
43
|
):
|
|
40
44
|
"""Add or remove a Safe Areas Preset
|
|
41
45
|
|
|
42
|
-
:type override_context: typing.Optional[typing.Union[
|
|
46
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
43
47
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
44
48
|
:type undo: typing.Optional[bool]
|
|
45
49
|
:param name: Name, Name of the preset, used to make the path name
|