fake-bpy-module 20241208__py3-none-any.whl → 20241209__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 +38 -138
- bpy/ops/anim/__init__.pyi +61 -179
- bpy/ops/armature/__init__.pyi +48 -147
- bpy/ops/asset/__init__.pyi +16 -71
- bpy/ops/boid/__init__.pyi +8 -41
- bpy/ops/brush/__init__.pyi +13 -39
- bpy/ops/buttons/__init__.pyi +6 -29
- bpy/ops/cachefile/__init__.pyi +5 -19
- bpy/ops/camera/__init__.pyi +2 -5
- bpy/ops/clip/__init__.pyi +92 -290
- bpy/ops/cloth/__init__.pyi +1 -3
- bpy/ops/collection/__init__.pyi +9 -25
- bpy/ops/console/__init__.pyi +21 -79
- bpy/ops/constraint/__init__.pyi +18 -45
- bpy/ops/curve/__init__.pyi +51 -180
- bpy/ops/curves/__init__.pyi +28 -100
- bpy/ops/cycles/__init__.pyi +3 -9
- bpy/ops/dpaint/__init__.pyi +5 -19
- bpy/ops/ed/__init__.pyi +12 -53
- bpy/ops/export_anim/__init__.pyi +1 -3
- bpy/ops/export_scene/__init__.pyi +2 -5
- bpy/ops/extensions/__init__.pyi +34 -110
- bpy/ops/file/__init__.pyi +40 -167
- bpy/ops/fluid/__init__.pyi +14 -77
- bpy/ops/font/__init__.pyi +23 -85
- bpy/ops/geometry/__init__.pyi +10 -27
- bpy/ops/gizmogroup/__init__.pyi +2 -9
- bpy/ops/gpencil/__init__.pyi +8 -32
- bpy/ops/graph/__init__.pyi +65 -184
- bpy/ops/grease_pencil/__init__.pyi +108 -290
- bpy/ops/image/__init__.pyi +49 -154
- bpy/ops/import_anim/__init__.pyi +1 -3
- bpy/ops/import_curve/__init__.pyi +1 -3
- bpy/ops/import_scene/__init__.pyi +2 -4
- bpy/ops/info/__init__.pyi +7 -29
- bpy/ops/lattice/__init__.pyi +8 -29
- bpy/ops/marker/__init__.pyi +11 -31
- bpy/ops/mask/__init__.pyi +39 -132
- bpy/ops/material/__init__.pyi +3 -19
- bpy/ops/mball/__init__.pyi +8 -19
- bpy/ops/mesh/__init__.pyi +164 -401
- bpy/ops/nla/__init__.pyi +39 -147
- bpy/ops/node/__init__.pyi +115 -390
- bpy/ops/object/__init__.pyi +237 -630
- bpy/ops/outliner/__init__.pyi +71 -263
- bpy/ops/paint/__init__.pyi +54 -140
- bpy/ops/paintcurve/__init__.pyi +8 -33
- bpy/ops/palette/__init__.pyi +7 -27
- bpy/ops/particle/__init__.pyi +36 -134
- bpy/ops/pose/__init__.pyi +51 -169
- bpy/ops/poselib/__init__.pyi +9 -33
- bpy/ops/preferences/__init__.pyi +35 -94
- bpy/ops/ptcache/__init__.pyi +7 -33
- bpy/ops/render/__init__.pyi +13 -37
- bpy/ops/rigidbody/__init__.pyi +13 -45
- bpy/ops/scene/__init__.pyi +37 -121
- bpy/ops/screen/__init__.pyi +39 -137
- bpy/ops/script/__init__.pyi +3 -11
- bpy/ops/sculpt/__init__.pyi +37 -94
- bpy/ops/sculpt_curves/__init__.pyi +4 -10
- bpy/ops/sequencer/__init__.pyi +89 -284
- bpy/ops/sound/__init__.pyi +7 -23
- bpy/ops/spreadsheet/__init__.pyi +4 -15
- bpy/ops/surface/__init__.pyi +6 -13
- bpy/ops/text/__init__.pyi +43 -175
- bpy/ops/text_editor/__init__.pyi +1 -3
- bpy/ops/texture/__init__.pyi +4 -21
- bpy/ops/transform/__init__.pyi +27 -61
- bpy/ops/ui/__init__.pyi +34 -117
- bpy/ops/uilist/__init__.pyi +3 -7
- bpy/ops/uv/__init__.pyi +49 -134
- bpy/ops/view2d/__init__.pyi +14 -39
- bpy/ops/view3d/__init__.pyi +67 -232
- bpy/ops/wm/__init__.pyi +114 -298
- bpy/ops/workspace/__init__.pyi +7 -33
- bpy/ops/world/__init__.pyi +2 -11
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +80 -80
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
bpy/ops/ed/__init__.pyi
CHANGED
|
@@ -1,60 +1,45 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.types
|
|
5
4
|
|
|
6
|
-
def flush_edits(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
|
-
execution_context: int | str | None = None,
|
|
9
|
-
undo: bool | None = None,
|
|
10
|
-
):
|
|
5
|
+
def flush_edits(execution_context: int | str | None = None, undo: bool | None = None):
|
|
11
6
|
"""Flush edit data from active editing modes
|
|
12
7
|
|
|
13
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
14
8
|
:type execution_context: int | str | None
|
|
15
9
|
:type undo: bool | None
|
|
16
10
|
"""
|
|
17
11
|
|
|
18
12
|
def lib_id_fake_user_toggle(
|
|
19
|
-
|
|
20
|
-
execution_context: int | str | None = None,
|
|
21
|
-
undo: bool | None = None,
|
|
13
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
22
14
|
):
|
|
23
15
|
"""Save this data-block even if it has no users
|
|
24
16
|
|
|
25
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
26
17
|
:type execution_context: int | str | None
|
|
27
18
|
:type undo: bool | None
|
|
28
19
|
"""
|
|
29
20
|
|
|
30
21
|
def lib_id_generate_preview(
|
|
31
|
-
|
|
32
|
-
execution_context: int | str | None = None,
|
|
33
|
-
undo: bool | None = None,
|
|
22
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
34
23
|
):
|
|
35
24
|
"""Create an automatic preview for the selected data-block
|
|
36
25
|
|
|
37
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
38
26
|
:type execution_context: int | str | None
|
|
39
27
|
:type undo: bool | None
|
|
40
28
|
"""
|
|
41
29
|
|
|
42
30
|
def lib_id_generate_preview_from_object(
|
|
43
|
-
|
|
44
|
-
execution_context: int | str | None = None,
|
|
45
|
-
undo: bool | None = None,
|
|
31
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
46
32
|
):
|
|
47
33
|
"""Create a preview for this asset by rendering the active object
|
|
48
34
|
|
|
49
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
50
35
|
:type execution_context: int | str | None
|
|
51
36
|
:type undo: bool | None
|
|
52
37
|
"""
|
|
53
38
|
|
|
54
39
|
def lib_id_load_custom_preview(
|
|
55
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
56
40
|
execution_context: int | str | None = None,
|
|
57
41
|
undo: bool | None = None,
|
|
42
|
+
/,
|
|
58
43
|
*,
|
|
59
44
|
filepath: str = "",
|
|
60
45
|
hide_props_region: bool | None = True,
|
|
@@ -87,7 +72,6 @@ def lib_id_load_custom_preview(
|
|
|
87
72
|
):
|
|
88
73
|
"""Choose an image to help identify the data-block visually
|
|
89
74
|
|
|
90
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
91
75
|
:type execution_context: int | str | None
|
|
92
76
|
:type undo: bool | None
|
|
93
77
|
:param filepath: File Path, Path to file
|
|
@@ -155,63 +139,44 @@ def lib_id_load_custom_preview(
|
|
|
155
139
|
"""
|
|
156
140
|
|
|
157
141
|
def lib_id_override_editable_toggle(
|
|
158
|
-
|
|
159
|
-
execution_context: int | str | None = None,
|
|
160
|
-
undo: bool | None = None,
|
|
142
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
161
143
|
):
|
|
162
144
|
"""Set if this library override data-block can be edited
|
|
163
145
|
|
|
164
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
165
146
|
:type execution_context: int | str | None
|
|
166
147
|
:type undo: bool | None
|
|
167
148
|
"""
|
|
168
149
|
|
|
169
|
-
def lib_id_unlink(
|
|
170
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
171
|
-
execution_context: int | str | None = None,
|
|
172
|
-
undo: bool | None = None,
|
|
173
|
-
):
|
|
150
|
+
def lib_id_unlink(execution_context: int | str | None = None, undo: bool | None = None):
|
|
174
151
|
"""Remove a usage of a data-block, clearing the assignment
|
|
175
152
|
|
|
176
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
177
153
|
:type execution_context: int | str | None
|
|
178
154
|
:type undo: bool | None
|
|
179
155
|
"""
|
|
180
156
|
|
|
181
|
-
def redo(
|
|
182
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
183
|
-
execution_context: int | str | None = None,
|
|
184
|
-
undo: bool | None = None,
|
|
185
|
-
):
|
|
157
|
+
def redo(execution_context: int | str | None = None, undo: bool | None = None):
|
|
186
158
|
"""Redo previous action
|
|
187
159
|
|
|
188
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
189
160
|
:type execution_context: int | str | None
|
|
190
161
|
:type undo: bool | None
|
|
191
162
|
"""
|
|
192
163
|
|
|
193
|
-
def undo(
|
|
194
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
195
|
-
execution_context: int | str | None = None,
|
|
196
|
-
undo: bool | None = None,
|
|
197
|
-
):
|
|
164
|
+
def undo(execution_context: int | str | None = None, undo: bool | None = None):
|
|
198
165
|
"""Undo previous action
|
|
199
166
|
|
|
200
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
201
167
|
:type execution_context: int | str | None
|
|
202
168
|
:type undo: bool | None
|
|
203
169
|
"""
|
|
204
170
|
|
|
205
171
|
def undo_history(
|
|
206
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
207
172
|
execution_context: int | str | None = None,
|
|
208
173
|
undo: bool | None = None,
|
|
174
|
+
/,
|
|
209
175
|
*,
|
|
210
176
|
item: int | None = 0,
|
|
211
177
|
):
|
|
212
178
|
"""Redo specific action in history
|
|
213
179
|
|
|
214
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
215
180
|
:type execution_context: int | str | None
|
|
216
181
|
:type undo: bool | None
|
|
217
182
|
:param item: Item
|
|
@@ -219,29 +184,23 @@ def undo_history(
|
|
|
219
184
|
"""
|
|
220
185
|
|
|
221
186
|
def undo_push(
|
|
222
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
223
187
|
execution_context: int | str | None = None,
|
|
224
188
|
undo: bool | None = None,
|
|
189
|
+
/,
|
|
225
190
|
*,
|
|
226
191
|
message: str = "Add an undo step *function may be moved*",
|
|
227
192
|
):
|
|
228
193
|
"""Add an undo state (internal use only)
|
|
229
194
|
|
|
230
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
231
195
|
:type execution_context: int | str | None
|
|
232
196
|
:type undo: bool | None
|
|
233
197
|
:param message: Undo Message
|
|
234
198
|
:type message: str
|
|
235
199
|
"""
|
|
236
200
|
|
|
237
|
-
def undo_redo(
|
|
238
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
239
|
-
execution_context: int | str | None = None,
|
|
240
|
-
undo: bool | None = None,
|
|
241
|
-
):
|
|
201
|
+
def undo_redo(execution_context: int | str | None = None, undo: bool | None = None):
|
|
242
202
|
"""Undo and redo previous action
|
|
243
203
|
|
|
244
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
245
204
|
:type execution_context: int | str | None
|
|
246
205
|
:type undo: bool | None
|
|
247
206
|
"""
|
bpy/ops/export_anim/__init__.pyi
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.types
|
|
5
4
|
|
|
6
5
|
def bvh(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
6
|
execution_context: int | str | None = None,
|
|
9
7
|
undo: bool | None = None,
|
|
8
|
+
/,
|
|
10
9
|
*,
|
|
11
10
|
filepath: str = "",
|
|
12
11
|
check_existing: bool | None = True,
|
|
@@ -20,7 +19,6 @@ def bvh(
|
|
|
20
19
|
):
|
|
21
20
|
"""Save a BVH motion capture file from an armature
|
|
22
21
|
|
|
23
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
24
22
|
:type execution_context: int | str | None
|
|
25
23
|
:type undo: bool | None
|
|
26
24
|
:param filepath: File Path, Filepath used for exporting the file
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.types
|
|
5
4
|
|
|
6
5
|
def fbx(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
6
|
execution_context: int | str | None = None,
|
|
9
7
|
undo: bool | None = None,
|
|
8
|
+
/,
|
|
10
9
|
*,
|
|
11
10
|
filepath: str = "",
|
|
12
11
|
check_existing: bool | None = True,
|
|
@@ -63,7 +62,6 @@ def fbx(
|
|
|
63
62
|
):
|
|
64
63
|
"""Write a FBX file
|
|
65
64
|
|
|
66
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
67
65
|
:type execution_context: int | str | None
|
|
68
66
|
:type undo: bool | None
|
|
69
67
|
:param filepath: File Path, Filepath used for exporting the file
|
|
@@ -243,9 +241,9 @@ def fbx(
|
|
|
243
241
|
"""
|
|
244
242
|
|
|
245
243
|
def gltf(
|
|
246
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
247
244
|
execution_context: int | str | None = None,
|
|
248
245
|
undo: bool | None = None,
|
|
246
|
+
/,
|
|
249
247
|
*,
|
|
250
248
|
filepath: str = "",
|
|
251
249
|
check_existing: bool | None = True,
|
|
@@ -361,7 +359,6 @@ def gltf(
|
|
|
361
359
|
):
|
|
362
360
|
"""Export scene as glTF 2.0 file
|
|
363
361
|
|
|
364
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
365
362
|
:type execution_context: int | str | None
|
|
366
363
|
:type undo: bool | None
|
|
367
364
|
:param filepath: File Path, Filepath used for exporting the file
|